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

:root {
    --primary: #FDB913;
    --primary-dark: #E5A811;
    --primary-light: #FFF8E7;
    --dark: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --white: #ffffff;
    --green: #059669;
    --green-light: #D1FAE5;
    --border: #e5e5e5;
    --bg-main: #ffffff;
    --bg-section: #f8f9fa;
    --gradient-1: #FDB913;
    --gradient-2: #F97316;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Animated Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    top: -300px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    bottom: -100px;
    left: -100px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
    margin-left: -2.5rem;
    margin-top: -20px;
    margin-bottom: -20px;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a.active {
    color: var(--primary);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--dark);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 185, 19, 0.4);
}

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 2rem 60px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-main) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: pulse-badge 2s infinite;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 30px rgba(220, 38, 38, 0.6); }
}

/* Savings Highlight */
.savings-highlight {
    background: linear-gradient(135deg, var(--green-light) 0%, #bbf7d0 100%);
    color: var(--green);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
    border: 2px solid var(--green);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 2rem 120px;
    position: relative;
}

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

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.pricing-toggle span {
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.pricing-toggle span.active {
    color: var(--dark);
}

.toggle-switch {
    width: 60px;
    height: 32px;
    background: var(--border);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: var(--white);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.toggle-switch.active::after {
    transform: translateX(28px);
}

.save-badge {
    background: var(--green-light);
    color: var(--green);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.08),
        0 40px 80px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 30%);
}

.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow:
        0 20px 40px rgba(253, 185, 19, 0.15),
        0 40px 80px rgba(253, 185, 19, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(253, 185, 19, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-old {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.price-setup {
    font-size: 0.95rem;
    color: var(--text-light);
}

.price-setup .old {
    text-decoration: line-through;
    color: var(--text-muted);
}

.price-setup .new {
    color: var(--green);
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    font-size: 1rem;
    color: var(--text);
    border-bottom: 1px solid var(--bg-section);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li .icon {
    width: 24px;
    height: 24px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.25rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: var(--dark);
}

.pricing-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 185, 19, 0.4);
}

.pricing-cta.secondary {
    background: var(--bg-section);
    color: var(--dark);
    border: 2px solid var(--border);
}

.pricing-cta.secondary:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 2rem;
    background: var(--bg-section);
}

.guarantee-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--green-light) 0%, var(--white) 100%);
    border: 3px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.guarantee-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 120px 2rem;
    background: var(--bg-main);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
}

.section-header h2 .highlight {
    color: var(--primary-dark);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(253, 185, 19, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(253, 185, 19, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--bg-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: var(--dark);
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 120px 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.btn-dark {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    padding: 4rem 2rem;
    background: var(--bg-section);
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    color: var(--text-light);
    font-size: 0.9rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

/* ========================================
   MOBILE HAMBURGER MENU
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle span:nth-child(1) { margin-bottom: 6px; }
.mobile-menu-toggle span:nth-child(3) { margin-top: 6px; }

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 100px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.mobile-nav.active {
    right: 0;
    pointer-events: auto;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li { margin-bottom: 0.5rem; }

.mobile-nav-menu li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li a.active {
    color: var(--primary);
    padding-left: 0.5rem;
}

.mobile-nav-cta {
    display: block;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    header {
        padding: 0.5rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
    }

    nav {
        padding: 0 1rem;
        height: 60px;
    }

    .logo { display: flex; align-items: center; }
    .logo img { height: 50px; margin: 0; margin-left: -0.5rem; }

    .nav-menu { display: none !important; }
    .nav-cta { display: none !important; }

    .mobile-menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        background: rgba(253, 185, 19, 0.1);
        border-radius: 12px;
    }

    .mobile-nav, .mobile-menu-overlay { display: block; }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .guarantee-card {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 100px 1.5rem 60px;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .cta-section {
        padding: 80px 1.5rem;
    }

    .cta-section h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .faq-section {
        padding: 80px 1.5rem;
    }
}

@media (max-width: 768px) {
    nav { height: 56px; padding: 0 0.75rem; }
    .logo img { height: 45px; margin-left: 0; }
    .mobile-menu-toggle { width: 44px; height: 44px; border-radius: 10px; }

    .hero {
        padding: 80px 1rem 50px;
    }

    .pricing-card {
        padding: 1.75rem;
    }

    .price-new {
        font-size: 3rem;
    }

    .guarantee-card {
        padding: 2rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    nav { height: 52px; padding: 0 0.5rem; }
    .logo img { height: 40px; }
    .mobile-menu-toggle { width: 40px; height: 40px; border-radius: 8px; }

    .mobile-nav {
        width: 100%;
        max-width: 100%;
    }

    .hero {
        padding: 75px 1rem 40px;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price-new {
        font-size: 2.5rem;
    }
}

/* Animations - Only hide when JS is loaded */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(40px);
}

.js-loaded .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.js-loaded .reveal-right {
    opacity: 0;
    transform: translateX(40px);
}
