* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scrolling Banner */
.scrolling-banner {
    background: linear-gradient(90deg, #059669 0%, #047857 100%);
    color: white;
    padding: 12px 0;
    overflow: hidden;
}

.banner-content {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.banner-content span {
    font-weight: 600;
    font-size: 14px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #d1fae5 100%);
    padding: 60px 0;
    position: relative;
}

.top-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.countdown-timer {
    background: #fbbf24;
    color: #111827;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timer-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timer-boxes {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
}

.timer-box {
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
}

.timer-sep {
    font-weight: 700;
}

.stock-badge {
    background: #dc2626;
    color: white;
    padding: 16px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stock-text {
    font-size: 18px;
    font-weight: 700;
}

.stock-subtext {
    font-size: 14px;
    margin-top: 4px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: #047857;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-green {
    color: #047857;
}

.hero-subtitle {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.trust-badge {
    background: #d1fae5;
    border: 2px solid #6ee7b7;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #047857;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-call {
    background: #16a34a;
    color: white;
}

.btn-call:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
}

.btn-order {
    background: #047857;
    color: white;
}

.btn-order:hover {
    background: #065f46;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(4, 120, 87, 0.3);
}

.product-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.product-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Quick Form Card */
.quick-form-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 2px solid #6ee7b7;
    position: sticky;
    top: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-badge {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: #111827;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
}

.form-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #047857;
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1);
}

.btn-submit {
    background: linear-gradient(90deg, #047857, #065f46);
    color: white;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(4, 120, 87, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #047857;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: white;
}

.trust-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #f0fdf4, #d1fae5);
    padding: 60px;
    border-radius: 24px;
}

.trust-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 30px;
}

.trust-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-call-white {
    background: white;
    color: #047857;
    border: 2px solid #047857;
}

.btn-call-white:hover {
    background: #f0fdf4;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #047857;
}

.original-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: white;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.philosophy-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.philosophy-cta {
    background: linear-gradient(90deg, #047857, #065f46);
    color: white;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
}

.philosophy-cta h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.philosophy-cta p {
    font-size: 18px;
    color: #d1fae5;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    background: #fbbf24;
    color: #111827;
}

.btn-cta:hover {
    background: #f59e0b;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #f9fafb;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #047857;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.faq-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
}

/* Order Form Section */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #d1fae5, #ffffff);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(90deg, #047857, #065f46);
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.main-form-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.btn-large {
    padding: 20px;
    font-size: 20px;
}

.required {
    color: #dc2626;
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: #059669;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #10b981;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    color: white;
}

.whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #dc2626;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 10px 50px rgba(37, 211, 102, 0.6);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 60px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #9ca3af;
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.modal-content p {
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.8;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .trust-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quick-form-card {
        position: relative;
        top: 0;
    }
    
    .main-form-card {
        padding: 30px;
    }
    
    .video-wrapper iframe {
        height: 300px;
    }
}
