/* Booz Agency — gedeelde stijl. Pure CSS. Geen build. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: #fff; background: #0A0A0A; line-height: 1.6; }

:root {
  --gold:           #C9A84C;
  --gold-dark:      #9A7B2F;
  --gold-light:     #D4B85C;
  --gold-glow:      rgba(201, 168, 76, 0.12);

  --dark:           #0A0A0A;
  --dark-2:         #111111;
  --dark-3:         #181818;
  --anthracite:     #222222;

  --white:          #FFFFFF;
  --off-white:      #F8F7F2;
  --gray-light:     #E8E4DC;
  --gray-mid:       #8A8A8A;
  --gray:           #6B6B6B;

  --border:         rgba(255,255,255,0.08);
  --border-gold:    rgba(201,168,76,0.2);

  --font-display:   'Barlow Condensed', sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;

  --section-pad:    96px;
  --shadow-card:    0 2px 12px rgba(0,0,0,0.2), 0 8px 32px rgba(0,0,0,0.15);
  --shadow-card-hover: 0 4px 20px rgba(0,0,0,0.25), 0 16px 48px rgba(0,0,0,0.2);
  --shadow-widget:  0 24px 80px rgba(0,0,0,0.28);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; letter-spacing: 0.03em; cursor: pointer; text-decoration: none; transition: all 0.2s; border: 2px solid transparent; font-family: inherit; }
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); box-shadow: 0 2px 12px rgba(201,168,76,0.25); position: relative; overflow: hidden; }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: 0 4px 20px rgba(201,168,76,0.4); transform: translateY(-1px); color: var(--white); }
.btn-gold::after { content: ''; position: absolute; top: -50%; left: -50%; width: 50%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transform: translateX(-100%) skewX(-15deg); }
.btn-gold:hover::after { animation: shine 0.6s ease forwards; }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.2); }
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }

.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 16px; color: var(--white); }
.section-sub { color: rgba(255,255,255,0.5); font-size: 16px; max-width: 640px; line-height: 1.7; }

/* NAV */
nav.site-nav { position: sticky; top: 0; z-index: 1000; background: rgba(10,10,10,0.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: 0.02em; text-decoration: none; }
.nav-logo::before { content: ''; display: block; width: 8px; height: 8px; background: var(--gold); border-radius: 2px; transform: rotate(45deg); flex-shrink: 0; }
.nav-logo-main { color: var(--white); }
.nav-logo-sub { color: var(--gold); font-weight: 700; }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; display: inline-flex; align-items: center; gap: 4px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-cta { background: var(--gold) !important; color: var(--dark) !important; padding: 9px 18px; border-radius: var(--radius-sm); font-weight: 700 !important; font-size: 13px; letter-spacing: 0.04em; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

/* DROPDOWN */
.has-dd > a::after { content: ''; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: 4px; opacity: 0.6; }
.dd-panel { position: absolute; top: calc(100% + 14px); left: -16px; min-width: 280px; background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px; box-shadow: var(--shadow-widget); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 1001; }
.has-dd:hover .dd-panel, .has-dd:focus-within .dd-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-panel a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 13px; color: rgba(255,255,255,0.7); }
.dd-panel a:hover { background: rgba(201,168,76,0.08); color: var(--white); }
.dd-panel .dd-head { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); padding: 8px 12px 4px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* SUB-PAGE HERO */
.page-hero { background: var(--dark); padding: 88px 0 64px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-hero::before { content:''; position:absolute; inset: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse 600px 400px at 60% 50%, rgba(201,168,76,0.07) 0%, transparent 60%), radial-gradient(ellipse 500px 350px at 30% 40%, rgba(180,140,60,0.05) 0%, transparent 55%); pointer-events:none; }
.page-hero::after { content:''; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px); background-size: 60px 60px; pointer-events:none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(38px, 5.4vw, 64px); font-weight: 800; color: var(--white); line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 16px; max-width: 880px; }
.page-hero .accent { background: linear-gradient(110deg, var(--gold) 0%, #F5D88A 40%, var(--gold-light) 50%, #E8C547 60%, var(--gold) 100%); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 4s ease-in-out infinite; }
.page-hero .lede { color: rgba(255,255,255,0.5); font-size: 18px; max-width: 720px; line-height: 1.7; margin-bottom: 28px; }
.page-hero .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.page-hero .badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.22); color: rgba(201,168,76,0.9); padding: 7px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 22px; }

/* BREADCRUMB */
.crumb { padding: 14px 0 0; font-size: 12px; color: rgba(255,255,255,0.4); background: var(--dark); }
.crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.crumb li { display: inline-flex; align-items: center; gap: 8px; }
.crumb li + li::before { content: '/'; color: rgba(255,255,255,0.2); }
.crumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.crumb a:hover { color: var(--gold); }
.crumb [aria-current="page"] { color: var(--white); }

/* CONTENT BLOCKS */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--dark-2); }
.section-deep { background: var(--dark-3); }
.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 38px); font-weight: 800; color: var(--white); margin: 40px 0 14px; line-height: 1.15; letter-spacing: -0.005em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; font-weight: 700; color: var(--white); margin: 28px 0 10px; }
.prose p { color: rgba(255,255,255,0.62); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }
.prose ul, .prose ol { color: rgba(255,255,255,0.62); margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; line-height: 1.7; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-light); }
.prose strong { color: var(--white); font-weight: 700; }

/* SUMMARY BOX (AEO) */
.tldr { background: rgba(201,168,76,0.06); border: 1px solid var(--border-gold); border-left: 3px solid var(--gold); border-radius: var(--radius-md); padding: 22px 26px; margin: 0 0 32px; }
.tldr h2 { font-size: 12px !important; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold) !important; margin: 0 0 8px !important; font-family: var(--font-body) !important; font-weight: 700; }
.tldr p { color: rgba(255,255,255,0.78); font-size: 15px; margin: 0; }

/* FEATURE / VOOR-WIE / WAT-REGELEN GRID */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.feat-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 26px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.feat-card:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.feat-card .feat-icon { width: 44px; height: 44px; background: var(--gold-glow); border: 1px solid rgba(201,168,76,0.18); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 16px; }
.feat-card .feat-icon svg { width: 20px; height: 20px; }
.feat-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feat-card p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }
.feat-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feat-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* CHECKLIST */
.checks { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; margin-top: 24px; }
.checks li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; }
.checks li::before { content: ''; flex-shrink: 0; width: 18px; height: 18px; background: var(--gold-glow); border: 1px solid rgba(201,168,76,0.3); border-radius: 6px; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 12px; }

/* COMPARE TABLE */
.compare { width: 100%; border-collapse: collapse; margin-top: 28px; background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.compare th, .compare td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.compare th { background: var(--dark-3); color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.compare td { color: rgba(255,255,255,0.7); }
.compare tr:last-child td { border-bottom: none; }
.compare td:first-child { font-weight: 600; color: var(--white); width: 30%; }

/* WERKWIJZE STEPS */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 44px; position: relative; }
.steps::before { content: ''; position: absolute; top: 26px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,0.15) 100%); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--dark); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--gold); }
.step h3 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.step p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 200px; margin: 0 auto; }

/* PRIJSKAART (compact, voor sub-pagina's) */
.price-mini { background: var(--dark-2); border: 1px solid var(--border-gold); border-radius: var(--radius-lg); padding: 32px 28px; max-width: 720px; margin: 32px 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.price-mini h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.price-mini p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; }
.price-mini .price-val { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--gold); line-height: 1; }
.price-mini .price-val small { display: block; font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; font-weight: 500; }

/* FAQ */
.faq-list { max-width: 820px; margin: 36px auto 0; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 8px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--border-gold); }
.faq-q { width: 100%; background: none; border: none; padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 15px; font-weight: 600; text-align: left; font-family: inherit; color: rgba(255,255,255,0.78); gap: 16px; }
.faq-q:hover { color: var(--white); }
.faq-arrow { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s; color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.8; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 28px 22px; }

/* CTA STRIP */
.cta-strip { background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02)); border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); padding: 64px 0; text-align: center; }
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.15; }
.cta-strip p { color: rgba(255,255,255,0.55); font-size: 16px; max-width: 580px; margin: 0 auto 24px; }
.cta-strip .hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* RELATED */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.related-card { display: block; background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 24px; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
.related-card:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.related-card .tag { color: var(--gold); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.related-card h3 { font-size: 16px; color: var(--white); margin: 6px 0; font-weight: 700; }
.related-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* CONTACT FORM (gedeeld) */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-widget); }
.contact-form h2, .contact-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; letter-spacing: -0.01em; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #333; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 13px 16px; border: 1px solid #E4E2DE; border-radius: var(--radius-sm); font-size: 16px; font-family: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s; background: #fff; color: #333; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-submit { width: 100%; padding: 14px; background: var(--gold); color: var(--dark); font-size: 15px; font-weight: 700; font-family: inherit; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em; }
.form-submit:hover { background: var(--gold-dark); color: var(--white); }
.form-helper { font-size: 13px; color: var(--gray); margin-top: 14px; line-height: 1.55; }
.contact-success { display:none; padding:14px; background:rgba(39,174,96,0.1); border:1px solid rgba(39,174,96,0.3); border-radius:10px; margin-bottom:1rem; color:#27AE60; text-align:center; font-weight:600; }

/* FOOTER */
footer.site-footer { background: var(--dark); border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 10px; text-decoration: none; }
.footer-logo::before { content:''; display:block; width:7px; height:7px; background: var(--gold); border-radius:2px; transform:rotate(45deg); flex-shrink:0; }
.footer-logo-main { color: var(--white); }
.footer-logo-sub { color: var(--gold); font-weight: 700; }
.footer-tagline { color: rgba(255,255,255,0.32); font-size: 14px; margin-bottom: 20px; line-height: 1.6; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); transition: all 0.2s; }
.footer-socials a:hover { border-color: var(--border-gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-col h4 { color: var(--white); font-size: 11px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.12em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.fc-item { display: flex; gap: 10px; color: rgba(255,255,255,0.4); font-size: 14px; margin-bottom: 10px; align-items: flex-start; }
.fc-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.fc-item a { color: rgba(255,255,255,0.4); text-decoration: none; }
.fc-item a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; margin-top: 56px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { color: rgba(255,255,255,0.28); font-size: 13px; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* COOKIE BANNER */
.cookie-banner { position:fixed; bottom:0; left:0; right:0; z-index:10000; background:var(--dark-2); border-top:1px solid var(--border); padding:16px 24px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; transform:translateY(100%); transition:transform 0.4s ease; }
.cookie-banner.show { transform:translateY(0); }
.cookie-text { font-size:13px; color:rgba(255,255,255,0.5); flex:1; min-width:240px; }
.cookie-text a { color:var(--gold); text-decoration:none; }
.cookie-text a:hover { text-decoration:underline; }
.cookie-btn { padding:8px 20px; background:var(--gold); color:var(--dark); font-size:13px; font-weight:700; border:none; border-radius:6px; cursor:pointer; font-family:inherit; white-space:nowrap; transition:background 0.2s; }
.cookie-btn:hover { background:var(--gold-dark); color:#fff; }

/* WHATSAPP FLOAT */
.wa-float { position:fixed; bottom:24px; right:24px; z-index:9999; background:#25D366; color:#fff; width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 24px rgba(37,211,102,0.35); transition:transform 0.2s,box-shadow 0.2s; text-decoration:none; }
.wa-float:hover { transform:scale(1.08) translateY(-2px); box-shadow:0 12px 32px rgba(37,211,102,0.45); }

/* ANIMATIONS + SCROLL */
@keyframes shimmer { 0% { background-position: 200% center; } 100% { background-position: 0% center; } }
@keyframes shine { 0% { transform: translateX(-100%) skewX(-15deg); } 100% { transform: translateX(200%) skewX(-15deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes glow-pulse { 0%, 100% { box-shadow: 0 8px 40px rgba(201,168,76,0.12); } 50% { box-shadow: 0 8px 48px rgba(201,168,76,0.25), 0 0 80px rgba(201,168,76,0.06); } }
.fade-up { opacity: 0; transform: translateY(28px) scale(0.97); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-up.visible { opacity: 1; transform: none; }

/* Grain overlay */
body::after { content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 256px 256px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .feat-grid, .feat-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
  .steps::before { display: none; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .checks { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.97); backdrop-filter: blur(16px); padding: 20px 24px; gap: 14px; border-top: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .dd-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 6px 0 6px 12px; min-width: 0; border: none; background: transparent; display: none; }
  .has-dd.open .dd-panel { display: block; }
  .hamburger { display: flex; }
  .feat-grid, .feat-grid.cols-2, .feat-grid.cols-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .price-mini { grid-template-columns: 1fr; text-align: left; }
  .compare th, .compare td { padding: 10px 12px; font-size: 13px; }
  --section-pad: 64px;
}
@media (max-width: 640px) {
  .wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; border-radius: 12px; }
  .page-hero { padding: 64px 0 44px; }
  .section { padding: 64px 0; }
}
