:root {
  --black: #101010;
  --muted: rgba(16, 16, 16, 0.58);
  --line: rgba(16, 16, 16, 0.07);
  --gold: #C8A97E;
  --gold2: #D9C3A3;
  --gold3: #B09166;
  --brown: #8E6F5B;
  --cream: #F5F3EF;
  --white: #FFFFFF;
  --max: 1220px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .08);
  --gshadow: 0 18px 42px rgba(200, 169, 126, .25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, sans-serif; color: var(--black); background: #fff; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
svg { display: block; width: 1em; height: 1em; }
button, input { font-family: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: auto; }
.serif { font-family: 'Playfair Display', Georgia, serif; }

.gold-text {
  background: linear-gradient(90deg, var(--gold3), var(--gold2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.progress { 
    position: fixed; 
    inset: 0 auto auto 0; 
    height: 4px; 
    width: 100%; 
    transform: scaleX(0); 
    transform-origin: left; 
    background: linear-gradient(90deg, var(--gold), #f3d875, var(--gold3)); 
    z-index: 1000; 
}

.section { position: relative; padding: 92px 0; }
.center { text-align: center; }

.eyebrow { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    border: 1px solid rgba(200, 169, 126, .28); 
    background: var(--cream); 
    color: var(--gold3); 
    padding: 8px 14px; 
    border-radius: 999px; 
    font-size: 12px; 
    font-weight: 900; 
}
.eyebrow svg { font-size: 15px; }

.section-title { 
    max-width: 760px; 
    margin: 18px auto 0; 
    font-family: 'Playfair Display', Georgia, serif; 
    font-size: clamp(34px, 5vw, 54px); 
    line-height: 1.05; 
    letter-spacing: -.035em; 
}

.section-copy { 
    max-width: 650px; 
    margin: 18px auto 0; 
    color: var(--muted); 
    line-height: 1.75; 
}

.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    min-height: 48px; 
    padding: 0 22px; 
    border-radius: 999px; 
    border: 0; 
    cursor: pointer; 
    font-size: 14px; 
    font-weight: 900; 
    transition: .25s; 
}
.btn svg { font-size: 18px; transition: .25s; }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold { 
    color: #fff; 
    background: linear-gradient(135deg, var(--gold), var(--gold2), var(--gold3)); 
    box-shadow: var(--gshadow); 
}

.btn-outline { 
    background: rgba(255, 255, 255, .82); 
    border: 1px solid rgba(200, 169, 126, .34); 
    color: var(--black); 
}
.btn-outline:hover { background: var(--cream); border-color: var(--gold); }

/* Header */
.header-wrap { position: fixed; top: 18px; left: 0; right: 0; z-index: 999; padding: 0 20px; pointer-events: none; }
.navbar { 
    pointer-events: auto; 
    width: min(var(--max), 100%); 
    height: 76px; 
    margin: auto; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 24px; 
    padding: 0 18px 0 20px; 
    border: 1px solid var(--line); 
    background: rgba(255, 255, 255, .86); 
    backdrop-filter: blur(18px); 
    border-radius: 24px; 
    box-shadow: 0 18px 60px rgba(0, 0, 0, .08); 
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {/* width: 45px; */height: 45px;object-fit: contain;}
.logo span {position: relative;z-index: 1;color: var(--black);font-family: 'Playfair Display', Georgia, serif;font-size: 32px;font-weight: 700;font-style: italic;display: none;}
.logo-title { display: block; font-size: 13px; line-height: 1; letter-spacing: .42em; font-weight: 900; }
.logo-sub { display: block; margin-top: 5px; font-size: 10px; line-height: 1; letter-spacing: .22em; color: var(--gold); font-weight: 800; font-style: normal; font-family: 'Inter', sans-serif;}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14px; font-weight: 800; color: rgba(16, 16, 16, .68); }
.nav-links a:hover { color: var(--gold); }

.mobile-toggle { 
    display: none; 
    width: 44px; 
    height: 44px; 
    border: 1px solid rgba(16, 16, 16, .1); 
    border-radius: 999px; 
    background: #fff; 
    color: var(--black); 
    cursor: pointer; 
}
.mobile-toggle svg { margin: auto; font-size: 22px; }

.mobile-menu { 
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: #fff;
    padding: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: 0.4s ease;
    display: flex; flex-direction: column;
}
.mobile-menu.is-open { right: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.close-menu { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--black); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 15px; }
.mobile-nav-links a { font-size: 18px; font-weight: 700; color: var(--black); padding: 10px 0; border-bottom: 1px solid var(--line); }
.mobile-btn { margin-top: auto; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; pointer-events: none; transition: 0.3s; }
.mobile-overlay.is-open { opacity: 1; pointer-events: auto; }

/* Hero */
.hero { position: relative; overflow: hidden; min-height: 900px; padding: 174px 0 54px; }
.hero-bg-one, .hero-bg-two { position: absolute; border-radius: 999px; filter: blur(70px); pointer-events: none; }
.hero-bg-one { width: 330px; height: 330px; left: -80px; top: 280px; background: rgba(200, 169, 126, .16); }
.hero-bg-two { width: 560px; height: 560px; right: -180px; top: 110px; background: rgba(176, 145, 102, .11); }

.hero-grid { 
    position: relative; 
    z-index: 1; 
    display: grid; 
    grid-template-columns: .92fr 1.08fr; 
    align-items: center; 
    gap: 72px; 
}

.hero-title { 
    margin: 24px 0 0; 
    max-width: 690px; 
    font-family: 'Playfair Display', Georgia, serif; 
    font-size: clamp(52px, 6vw, 84px); 
    line-height: 1.02; 
    letter-spacing: -.045em; 
}

.hero-copy { 
    max-width: 570px; 
    margin: 24px 0 0; 
    color: var(--muted); 
    font-size: 17px; 
    line-height: 1.85; 
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.rating-row { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.avatar-img { height: 42px; object-fit: contain; }
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars svg { fill: currentColor; stroke: currentColor; width: 16px; height: 16px; }
.rating-copy { margin: 3px 0 0; font-size: 13px; color: rgba(16, 16, 16, .55); }

/* Hero Visuals */
.hero-visual { position: relative; perspective: 1000px; }
.hero-image-wrapper { position: relative; width: 100%; border-radius: 20px; box-shadow: 0 40px 100px rgba(0,0,0,0.15); transform-style: preserve-3d; transform: rotateY(-5deg) rotateX(2deg); }
.hero-main-img { width: 100%; border-radius: 20px; display: block; object-fit: cover;}
.hero-mobile-img { position: absolute; left: -10%; bottom: -10%; width: 35%; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.2); z-index: 2; transform: translateZ(50px); }
.hero-badge { position: absolute; right: -5%; top: 15%; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 15px 20px; border-radius: 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.5); z-index: 3; transform: translateZ(70px); }
.hero-badge-icon { width: 40px; height: 40px; background: var(--gold); color: white; border-radius: 12px; display: grid; place-items: center; }
.hero-badge-text span { display: block; font-size: 12px; color: var(--muted); }
.hero-badge-text strong { display: block; font-size: 18px; color: var(--black); font-weight: 800; }

.floating-card { transition: transform 0.3s ease; }

/* Scroll Elements */
.scroll-down { margin-top: 78px; display: flex; flex-direction: column; align-items: center; gap: 9px; color: rgba(16, 16, 16, .4); font-size: 12px; }
.scroll-down span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 999px; border: 1px solid rgba(16, 16, 16, .12); }

/* Stats & Features */
.stats-panel { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
    padding: 18px; 
    border: 1px solid var(--line); 
    border-radius: 34px; 
    background: #fff; 
    box-shadow: var(--shadow); 
}
.stat-item { display: flex; gap: 15px; align-items: center; padding: 20px; border-radius: 24px; }
.stat-icon, .feature-icon, .module-icon, .benefit-icon { display: grid; place-items: center; flex-shrink: 0; }
.stat-icon { width: 54px; height: 54px; border-radius: 18px; color: #fff; background: linear-gradient(135deg, var(--gold2), var(--gold3)); }
.stat-value { display: flex; font-size: 26px; font-weight: 900; }
.stat-label { display: block; margin-top: 2px; color: rgba(16, 16, 16, .5); font-size: 13px; line-height: 1.4; }

.features-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { 
    min-height: 205px; 
    padding: 25px; 
    border: 1px solid var(--line); 
    border-radius: 26px; 
    background: #fff; 
    box-shadow: 0 12px 45px rgba(0, 0, 0, .04); 
    transition: .3s; 
}
.feature-card:hover { 
    transform: translateY(-8px); 
    border-color: rgba(200, 169, 126, .4); 
    box-shadow: 0 26px 70px rgba(200, 169, 126, .11); 
}
.feature-icon { width: 50px; height: 50px; border-radius: 18px; color: var(--gold); background: var(--cream); border: 1px solid rgba(200, 169, 126, .22); }
.feature-card h3 { margin: 20px 0 0; font-size: 16px; }
.feature-card p { margin: 10px 0 0; color: rgba(16, 16, 16, .52); font-size: 14px; line-height: 1.65; }

/* Showcase */
.showcase { overflow: visible; background: linear-gradient(180deg, #fff, #fafafa, #fff); }
.showcase-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.showcase-copy { position: sticky; top: 130px; min-height: 520px; }
.showcase-copy h2 { 
    margin: 20px 0 0; 
    max-width: 520px; 
    font-family: 'Playfair Display', Georgia, serif; 
    font-size: clamp(38px, 4.7vw, 58px); 
    line-height: 1.04; 
    letter-spacing: -.035em; 
}
.showcase-copy p { max-width: 470px; color: var(--muted); line-height: 1.75; }
.showcase-list { margin-top: 32px; display: grid; gap: 22px; }
.showcase-bullet { display: flex; gap: 15px; align-items: flex-start; }
.showcase-bullet-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 16px; background: #fff3cd; color: var(--gold); flex-shrink: 0; }
.showcase-bullet h4 { margin: 0; font-size: 15px; }
.showcase-bullet p { margin: 5px 0 0; font-size: 13px; line-height: 1.6; }

.showcase-visual { min-height: 900px; position: relative; }
.sticky-visual { position: sticky; top: 120px; }
.showcase-image-container { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.1); border: 1px solid var(--line); }
.showcase-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease; }
.showcase-img.active { opacity: 1; }

/* Modules layout */
.modules-container { margin-top: 60px; display: grid; grid-template-columns: 350px 1fr; gap: 40px; background: var(--cream); border-radius: 30px; padding: 20px; border: 1px solid var(--line); }
.modules-sidebar { display: flex; flex-direction: column; gap: 10px; }
.module-tab { padding: 15px 20px; border-radius: 20px; cursor: pointer; transition: 0.3s; background: transparent; border: 1px solid transparent; }
.module-tab.active { background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--line); }
.module-tab-header { display: flex; align-items: center; gap: 15px; }
.module-icon { width: 40px; height: 40px; border-radius: 12px; color: var(--gold); background: rgba(200, 169, 126, 0.1); display: grid; place-items: center; }
.module-title { font-weight: 700; font-size: 15px; flex: 1; }
.module-arrow { opacity: 0; transform: translateX(-10px); transition: 0.3s; color: var(--gold); }
.module-tab.active .module-arrow { opacity: 1; transform: translateX(0); }
.module-tab-content { max-height: 0; overflow: hidden; transition: 0.4s ease; padding-left: 55px; opacity: 0; }
.module-tab.active .module-tab-content { max-height: 100px; opacity: 1; margin-top: 10px; }
.module-tab-content p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }

.modules-display { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); background: #fff; }
.modules-image-wrapper { position: relative; width: 100%; height: 100%; aspect-ratio: 4/3; }
.module-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05); transition: 0.6s ease; }
.module-image.active { opacity: 1; transform: scale(1); }

/* Benefits */
.benefit-panel { 
    display: grid; 
    grid-template-columns: 1.15fr .85fr; 
    gap: 50px; 
    align-items: center; 
    padding: 48px; 
    border: 1px solid var(--line); 
    border-radius: 34px; 
    background: #fffdf7; 
}
.benefit-title { 
    margin: 20px 0 0; 
    font-family: 'Playfair Display', Georgia, serif; 
    font-size: clamp(36px, 5vw, 52px); 
    line-height: 1.08; 
    letter-spacing: -.035em; 
}
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px;}
.benefit-card { padding: 24px; border-radius: 24px; background: #fff; box-shadow: 0 12px 40px rgba(0, 0, 0, .04); }
.benefit-icon { width: 46px; height: 46px; border-radius: 16px; color: var(--gold); background: #fff4d4; }
.benefit-card h3 { margin: 18px 0 0; font-size: 16px; }
.benefit-card p { margin: 8px 0 0; color: rgba(16, 16, 16, .52); font-size: 14px; line-height: 1.6; }
.benefit-visual { position: relative; width: 100%; height: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.benefit-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Testimonials */
.testimonials-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { padding: 28px; text-align: left; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 12px 45px rgba(0, 0, 0, .05); }
.quote-mark { color: #ead397; font-family: 'Playfair Display', Georgia, serif; font-size: 58px; line-height: .6; }
.testimonial-card p { min-height: 112px; color: rgba(16, 16, 16, .6); line-height: 1.75; }

.person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.person-face { width: 48px; height: 48px; border-radius: 999px; background: linear-gradient(135deg, var(--gold2), var(--gold), #111); }
.person h4 { margin: 0; }
.person span span { display: block; margin-top: 3px; color: rgba(16, 16, 16, .45); font-size: 13px; }

/* Pricing */
.pricing-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { position: relative; padding: 40px 32px; border: 1px solid var(--line); border-radius: 32px; background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.04); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease; text-align: left; }
.price-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.08); z-index: 1; }

.price-card.popular { 
    border-color: rgba(200, 169, 126, 0.4); 
    background: linear-gradient(145deg, #181818 0%, #0a0a0a 100%); 
    color: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.1); 
    transform: scale(1.05); 
    z-index: 2;
}
.price-card.popular:hover { transform: scale(1.05) translateY(-8px); box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35); }

.popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); padding: 8px 22px; border-radius: 999px; background: linear-gradient(135deg, var(--gold2), var(--gold3)); color: #fff; font-size: 11px; font-weight: 900; letter-spacing: 1.5px; white-space: nowrap; box-shadow: 0 8px 24px rgba(200, 169, 126, 0.4); text-transform: uppercase; }

.price-card-header h3 { margin: 0; font-size: 26px; font-weight: 800; font-family: 'Playfair Display', Georgia, serif; }
.price-desc { margin: 12px 0 0; color: rgba(16, 16, 16, 0.5); font-size: 14px; line-height: 1.6; min-height: 66px; }
.price-card.popular .price-desc { color: rgba(255,255,255,0.65); }

.price-highlight { margin: 28px 0; padding: 24px; background: rgba(0,0,0,0.03); border-radius: 20px; }
.price-card.popular .price-highlight { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }

.monthly-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.monthly-price .currency { font-size: 14px; font-weight: 700; color: rgba(16, 16, 16, 0.45); }
.monthly-price .amount { font-size: 42px; font-weight: 900; color: #101010; letter-spacing: -1px; }
.monthly-price .unit { font-size: 14px; color: rgba(16, 16, 16, 0.45); }
.price-extra { margin-top: 8px; font-size: 13px; color: rgba(16, 16, 16, 0.45); }
.price-type { margin-top: 10px; font-size: 11px; font-weight: 900; color: rgba(16, 16, 16, 0.35); text-transform: uppercase; letter-spacing: 1.5px; }

.price-card.popular .monthly-price .currency, 
.price-card.popular .monthly-price .unit, 
.price-card.popular .price-extra { color: rgba(255,255,255,0.5); }
.price-card.popular .monthly-price .amount { color: #fff; }
.price-card.popular .price-type { color: rgba(200, 169, 126, 0.8); }

.install-fee { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: rgba(0, 0, 0, 0.03); border-radius: 16px; margin-bottom: 28px; gap: 10px; flex-wrap: wrap; }
.price-card.popular .install-fee { background: rgba(255,255,255,0.04); }
.install-fee .label { font-size: 13px; color: rgba(16, 16, 16, 0.5); font-weight: 700; }
.price-card.popular .install-fee .label { color: rgba(255,255,255,0.6); }
.install-fee .value { font-size: 15px; font-weight: 900; }

.price-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.price-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.5; }
.price-card.popular .price-list li { color: rgba(255,255,255,0.85); }
.price-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; width: 18px; height: 18px; }

.price-card-footer { margin-top: 36px; }
.price-card-footer .btn { width: 100%; height: 54px; font-size: 15px; }
.pricing-note { margin-top: 32px; color: rgba(16, 16, 16, 0.4); font-size: 13px; font-weight: 500; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: center; }
.salon-illustration { border-radius: 34px; overflow: hidden; }
.faq-img { width: 100%; height: auto; display: block; border-radius: 34px;}

.faq-list { margin-top: 30px; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.03); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border: 0; background: transparent; text-align: left; font-size: 15px; font-weight: 900; cursor: pointer; }
.faq-q svg { transition: .2s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--gold); }
.faq-a { height: 0; overflow: hidden; color: rgba(16, 16, 16, .55); font-size: 14px; line-height: 1.7; transition: height .25s ease; }
.faq-a-inner { padding: 0 20px 20px; }

/* CTA */
.cta-section { padding: 70px 0 38px; }
.cta-banner { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 44px; border-radius: 34px; color: #fff; background: radial-gradient(circle at 18% 20%, rgba(200, 169, 126, .35), transparent 26%), linear-gradient(135deg, #101010, #1e1607 55%, #080808); }
.cta-banner:after { content: ''; position: absolute; right: -70px; top: -70px; width: 240px; height: 240px; border-radius: 999px; border: 1px solid rgba(200, 169, 126, .28); }
.cta-left { position: relative; z-index: 1; display: flex; align-items: center; gap: 20px; }
.cta-icon { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 24px; background: var(--gold); }
.cta-banner h2 { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; }
.cta-banner p { margin: 9px 0 0; color: rgba(255, 255, 255, .65); }
.cta-banner .btn { position: relative; z-index: 1; white-space: nowrap; }

/* Footer */
.footer { padding: 0 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr .8fr 1.25fr; gap: 34px; padding: 36px; border: 1px solid var(--line); border-radius: 34px; background: #fff; }
.footer-desc { max-width: 300px; margin: 18px 0 0; color: rgba(16, 16, 16, .52); font-size: 14px; line-height: 1.65; }
.socials { display: flex; gap: 12px; margin-top: 18px; color: rgba(16, 16, 16, .45); }
.socials svg { width: 18px; height: 18px; }
.footer h4 { margin: 0; }
.footer-links { margin-top: 16px; display: grid; gap: 11px; }
.footer-links a { color: rgba(16, 16, 16, .5); font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.newsletter-title { color: var(--gold); }
.newsletter p { color: rgba(16, 16, 16, .52); font-size: 14px; line-height: 1.65; }
.email-box { display: flex; gap: 8px; margin-top: 16px; padding: 5px; border: 1px solid rgba(16, 16, 16, .1); border-radius: 999px; }
.email-box input { min-width: 0; width: 100%; border: 0; outline: 0; padding: 0 14px; background: transparent; }
.email-box button { width: 40px; height: 40px; border: 0; border-radius: 999px; color: #fff; background: var(--gold); cursor: pointer; }
.copyright { margin-top: 22px; text-align: center; color: rgba(16, 16, 16, .35); font-size: 12px; }

/* Animations */
.reveal, .reveal-card { opacity: 0; transform: translateY(34px); }

/* Responsive */
@media(max-width:1120px) {
  .nav-links, .navbar>.btn { display: none; }
  .mobile-toggle { display: grid; }
  .hero-grid, .showcase-grid, .benefit-panel, .faq-grid { grid-template-columns: 1fr; }
  .showcase-copy, .sticky-visual { position: relative; top: auto; min-height: auto; }
  .showcase-visual { min-height: auto; margin-top: 40px; }
  .stats-panel, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-container { grid-template-columns: 1fr; }
  .module-tab-content { padding-left: 0; }
}

@media(max-width:760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-wrap { top: 10px; padding: 0 14px; }
  .navbar { height: 68px; border-radius: 20px; }
  .logo-title { letter-spacing: .28em; }
  .hero { padding-top: 126px; min-height: auto; }
  .hero-grid { gap: 44px; }
  .hero-title { font-size: 46px; }
  .hero-actions, .rating-row { align-items: stretch; flex-direction: column; }
  .rating-row { align-items: flex-start; }
  .section { padding: 70px 0; }
  .stats-panel, .features-grid, .benefit-grid, .testimonials-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .benefit-panel, .cta-banner { padding: 28px; }
  .cta-banner, .cta-left { align-items: flex-start; flex-direction: column; }
  .footer-grid { padding: 28px; }
  .hero-mobile-img { width: 45%; }
  .hero-badge { right: -2%; top: 5%; }
}
