@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --navy:    #1B3557;
  --navy-dk: #122440;
  --navy-lt: #243d68;
  --gold:    #C9A84C;
  --gold-lt: #E8C96A;
  --gold-dk: #A88A34;
  --teal:    #2A9D8F;
  --white:   #FFFFFF;
  --off:     #F8F9FB;
  --gray-lt: #F0F2F5;
  --gray-md: #D0D5DD;
  --gray-dk: #6B7280;
  --text:    #1A1F2E;
  --radius:  4px;
  --shadow:  0 4px 24px rgba(27,53,87,0.10);
  --shadow-lg: 0 16px 48px rgba(27,53,87,0.16);
  --max-w:   1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 88px; background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,53,87,0.07);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}
.nav-logo img { height: 72px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); opacity: 0.65; transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; opacity: 1 !important; padding: 10px 22px; border-radius: var(--radius); font-weight: 700 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold-lt) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; border: none; border-radius: var(--radius); padding: 15px 30px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dk); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.07); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-full { display: block; width: 100%; text-align: center; justify-content: center; }

/* ── SECTIONS ── */
.section { padding: 96px 48px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.section-label::after { content: ''; height: 1px; width: 36px; background: var(--teal); opacity: 0.35; }
.section-label.gold { color: var(--gold); }
.section-label.gold::after { background: var(--gold); }
.section-label.white { color: rgba(255,255,255,0.6); }
.section-label.white::after { background: rgba(255,255,255,0.3); }
.section-headline { font-family: 'DM Serif Display', serif; font-size: clamp(30px, 4vw, 52px); color: var(--navy); line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 16px; }
.section-headline em { color: var(--gold); font-style: italic; }
.section-headline.white { color: var(--white); }
.section-sub { font-size: 16px; font-weight: 300; color: var(--gray-dk); line-height: 1.75; max-width: 560px; }
.section-sub.white { color: rgba(255,255,255,0.65); }
.bg-off { background: var(--off); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }
.centered { text-align: center; }
.centered .section-label { justify-content: center; }
.centered .section-label::after { display: none; }
.centered .section-sub { margin: 0 auto; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(3,1fr); max-width: var(--max-w); margin: 0 auto; }
.trust-item { display: flex; align-items: center; gap: 16px; padding: 26px 36px; border-right: 1px solid rgba(255,255,255,0.07); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 42px; height: 42px; background: rgba(201,168,76,0.14); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.trust-text span { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── PRODUCT CARDS ── */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.product-card { background: var(--white); border-radius: 6px; border: 1px solid rgba(27,53,87,0.07); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-badge { position: absolute; top: 16px; right: 16px; z-index: 2; background: var(--gold); color: var(--navy); font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.product-img { height: 280px; overflow: hidden; flex-shrink: 0; }
.product-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform 0.4s; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.product-tier { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.product-name { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 6px; line-height: 1.1; }
.product-tagline { font-size: 13px; color: var(--gray-dk); margin-bottom: 16px; line-height: 1.5; flex: 1; }
.product-price { font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 16px; }
.product-divider { height: 1px; background: var(--gray-lt); margin-bottom: 16px; }
.product-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.product-features li { font-size: 13px; color: var(--gray-dk); display: flex; align-items: flex-start; gap: 9px; line-height: 1.45; }
.product-features li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.how-number { width: 68px; height: 68px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--white); margin-bottom: 24px; }
.n1 { background: var(--navy); } .n2 { background: var(--teal); } .n3 { background: var(--gold); color: var(--navy); }
.how-title { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.how-desc { font-size: 14px; color: var(--gray-dk); line-height: 1.75; }

/* ── COMPAT ── */
.compat-section { background: var(--navy); padding: 64px 48px; }
.compat-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.compat-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.compat-tag { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 500; padding: 8px 16px; border-radius: 3px; }

/* ── BEFORE/AFTER ── */
.before-after { display: grid; grid-template-columns: 1fr 1fr; }
.ba-panel { position: relative; height: 480px; overflow: hidden; }
.ba-panel img { width: 100%; height: 100%; object-fit: cover; }
.ba-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; }
.ba-before .ba-overlay { background: linear-gradient(to top, rgba(180,50,50,0.85) 0%, transparent 60%); }
.ba-after .ba-overlay { background: linear-gradient(to top, rgba(27,53,87,0.88) 0%, transparent 60%); }
.ba-label { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; }
.ba-before .ba-label { color: #ffaaaa; }
.ba-after .ba-label { color: var(--gold); }
.ba-headline { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--white); line-height: 1.1; margin-bottom: 10px; }
.ba-desc { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--navy); padding: 96px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 65%); pointer-events: none; }
.cta-banner::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(42,157,143,0.10) 0%, transparent 65%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-headline { font-family: 'DM Serif Display', serif; font-size: clamp(34px,5vw,58px); color: var(--white); line-height: 1.05; margin-bottom: 18px; }
.cta-headline em { color: var(--gold); font-style: italic; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT STRIP ── */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; }
.about-strip-img { height: 480px; overflow: hidden; }
.about-strip-img img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-text { background: var(--navy); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.about-strip-body { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 28px; }

/* ── TESTIMONIAL ── */
.testimonial { text-align: center; padding: 80px 48px; }
.testimonial-inner { max-width: 700px; margin: 0 auto; }
.stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 28px; }
.stars svg { width: 18px; height: 18px; fill: var(--gold); }
.testimonial-quote { font-family: 'DM Serif Display', serif; font-size: clamp(20px,3vw,30px); color: var(--navy); line-height: 1.45; margin-bottom: 24px; font-style: italic; }
.testimonial-attr { font-size: 12px; font-weight: 700; color: var(--gray-dk); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 130px 48px 80px; margin-top: 88px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%); pointer-events: none; }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.page-hero-headline { font-family: 'DM Serif Display', serif; font-size: clamp(36px,5vw,62px); color: var(--white); line-height: 1.05; margin-bottom: 18px; }
.page-hero-headline em { color: var(--gold); font-style: italic; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 560px; }

/* ── SHOP PRODUCT FULL ── */
.product-full { padding: 80px 48px; }
.product-full.bg-navy-full { background: var(--navy); }
.product-full-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.product-full.flip .product-full-inner { direction: rtl; }
.product-full.flip .product-full-content { direction: ltr; }
.product-full-img { border-radius: 6px; overflow: hidden; height: 520px; box-shadow: var(--shadow-lg); }
.product-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-full-img:hover img { transform: scale(1.03); }
.product-full-tier { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.bg-navy-full .product-full-tier { color: var(--gold); }
.product-full-name { font-family: 'DM Serif Display', serif; font-size: clamp(28px,3.5vw,42px); color: var(--navy); line-height: 1.05; margin-bottom: 8px; }
.bg-navy-full .product-full-name { color: var(--white); }
.product-full-tagline { font-size: 16px; color: var(--gray-dk); margin-bottom: 20px; }
.bg-navy-full .product-full-tagline { color: rgba(255,255,255,0.65); }
.product-full-price { font-size: 42px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 24px; }
.bg-navy-full .product-full-price { color: var(--gold); }
.product-full-desc { font-size: 15px; color: var(--gray-dk); line-height: 1.8; margin-bottom: 24px; }
.bg-navy-full .product-full-desc { color: rgba(255,255,255,0.7); }
.product-full-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.product-full-features li { font-size: 14px; color: var(--gray-dk); display: flex; align-items: flex-start; gap: 10px; }
.bg-navy-full .product-full-features li { color: rgba(255,255,255,0.75); }
.product-full-features li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.product-full-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.badge-popular { display: inline-flex; align-items: center; gap: 6px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; margin-bottom: 12px; }

/* ── COMPARE TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.compare-table th { padding: 16px 20px; text-align: center; background: var(--navy); color: var(--white); font-size: 13px; font-weight: 700; }
.compare-table th:first-child { text-align: left; background: var(--navy-dk); }
.compare-table th.featured-col { background: var(--gold); color: var(--navy); }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-lt); font-size: 13px; color: var(--gray-dk); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); background: var(--off); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--teal); font-size: 16px; }
.compare-table .dash { color: var(--gray-md); }
.compare-table .featured-col { background: rgba(201,168,76,0.08); }

/* ── FAQ ── */
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-sticky { position: sticky; top: 90px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(27,53,87,0.08); }
.faq-q { font-size: 15px; font-weight: 600; color: var(--navy); padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; }
.faq-q::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--gray-dk); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* ── FORM ── */
.form-wrap { background: var(--white); border: 1px solid rgba(27,53,87,0.08); border-radius: 8px; padding: 40px; box-shadow: var(--shadow); }
.form-wrap h3 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.form-wrap p { font-size: 14px; color: var(--gray-dk); margin-bottom: 28px; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { padding: 13px 16px; border: 1.5px solid var(--gray-md); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,53,87,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--gray-dk); margin-top: 14px; line-height: 1.6; font-style: italic; }
.form-success { display: none; background: #E8F8EF; border: 1.5px solid var(--teal); border-radius: var(--radius); padding: 20px 24px; font-size: 15px; color: #1A7A4A; font-weight: 600; margin-top: 20px; }
.process-steps { display: flex; gap: 0; margin-bottom: 32px; }
.process-step { flex: 1; text-align: center; padding: 16px 12px; background: var(--off); border-right: 1px solid var(--gray-md); }
.process-step:last-child { border-right: none; }
.process-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.process-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.process-num { font-size: 20px; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.process-label { font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: 6px; overflow: hidden; height: 500px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-body { font-size: 15px; color: var(--gray-dk); line-height: 1.85; margin-bottom: 20px; }
.about-sig { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--navy); font-style: italic; margin-bottom: 4px; }
.about-sig-role { font-size: 12px; color: var(--gray-dk); letter-spacing: 0.04em; margin-bottom: 24px; }
.about-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--off); border: 1px solid rgba(27,53,87,0.1); padding: 12px 20px; border-radius: var(--radius); }
.about-badge-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
.about-badge-text { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }
.made-strip { background: var(--off); padding: 64px 48px; }
.made-strip-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.made-item { text-align: center; }
.made-icon { width: 56px; height: 56px; background: rgba(27,53,87,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.made-icon svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.8; stroke-linecap: round; }
.made-item h3 { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.made-item p { font-size: 13px; color: var(--gray-dk); line-height: 1.75; }

/* ── FOOTER ── */
footer { background: var(--navy-dk); padding: 56px 48px 32px; }
.footer-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
.footer-logo img { height: 36px; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); font-style: italic; margin-bottom: 10px; line-height: 1.6; }
.footer-made { font-size: 11px; color: rgba(255,255,255,0.22); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 88px; left: 0; right: 0; background: var(--white); padding: 24px; border-bottom: 1px solid var(--gray-lt); gap: 20px; z-index: 199; box-shadow: var(--shadow); }
  .section { padding: 64px 24px; }
  .product-grid, .how-grid, .about-grid, .footer-grid, .made-strip-inner, .faq-layout { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item:last-child { border-bottom: none; }
  .compat-inner { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 24px 64px; }
  .cta-banner { padding: 64px 24px; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-img { height: 280px; }
  .about-strip-text { padding: 40px 24px; }
  .before-after { grid-template-columns: 1fr; }
  .ba-panel { height: 320px; }
  .product-full { padding: 56px 24px; }
  .product-full-inner { grid-template-columns: 1fr; direction: ltr !important; }
  .product-full-img { height: 300px; }
  .form-wrap { padding: 24px 20px; }
  .process-steps { flex-direction: column; }
  .process-step { border-right: none; border-bottom: 1px solid var(--gray-md); border-radius: 0 !important; }
  .compare-table { font-size: 11px; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
}
