/* ===========================================================
   NumerusPro — Design tokens
   Navy  : #0B2A4A (deep), #123457 (base), #1C4570 (light)
   Gold  : #C9A24B (base), #E4C878 (light), #8C7233 (deep)
   Cream : #F6F3EC (bg), #FFFEFB (card)
   Ink   : #10151C
   Display: Fraunces (serif, characterful) / Body: Manrope / Data: IBM Plex Mono
   =========================================================== */

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

:root{
  --navy-deep: #081C31;
  --navy: #0F2C4E;
  --navy-light: #1E4571;
  --gold: #C9A24B;
  --gold-light: #E7CC85;
  --gold-deep: #8C7233;
  --cream: #F6F3EA;
  --cream-2: #EFEADD;
  --card: #FFFEFC;
  --ink: #0E1218;
  --ink-soft: rgba(14,18,24,0.62);
  --line: rgba(15,44,78,0.12);
  --shadow: 0 20px 60px -20px rgba(8,28,49,0.35);
  --radius: 20px;
  --ease: cubic-bezier(.22,1,.36,1);
}

html{ scroll-behavior:smooth; }

body{
  font-family:'Manrope', sans-serif;
  background:var(--cream);
  color:var(--ink);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

::selection{ background:var(--gold); color:var(--navy-deep); }

.gold{ color:var(--gold-deep); }

h1,h2,h3{ font-family:'Fraunces', serif; font-weight:500; letter-spacing:-0.01em; line-height:1.05; color:var(--navy-deep); }

a{ color:inherit; text-decoration:none; }

.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:12.5px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold-deep);
  margin-bottom:14px;
  display:inline-block;
}

/* grain overlay */
.grain-overlay{
  position:fixed; inset:0; pointer-events:none; z-index:9999; opacity:0.035; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== NAV ===== */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:20px 0; transition:all .35s var(--ease);
}
.nav.scrolled{
  background:rgba(246,243,234,0.85); backdrop-filter:blur(14px);
  padding:12px 0; box-shadow:0 1px 0 var(--line);
}
.nav-inner{
  max-width:1240px; margin:0 auto; padding:0 32px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.nav-logo-img{ height:118px; width:auto; display:block; transition:height .3s var(--ease); }
.nav.scrolled .nav-logo-img{ height:68px; }
.footer-logo-img{ width:170px; height:auto; display:block; margin-bottom:8px; }
.logo-mark{
  font-family:'Fraunces', serif; font-size:22px; font-weight:600; color:var(--navy-deep);
  border:1.5px solid var(--navy-deep); width:38px; height:38px; border-radius:10px;
  display:flex; align-items:center; justify-content:center; line-height:1;
}
.logo-mark-gold{ color:var(--gold-deep); }
.nav-logo-text{ font-family:'Fraunces', serif; font-size:19px; color:var(--navy-deep); letter-spacing:-0.01em; }
.nav-links{ display:flex; gap:34px; align-items:center; }
.nav-links a{
  font-size:14.5px; font-weight:600; color:var(--navy); position:relative; padding:4px 0;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1.5px; background:var(--gold-deep);
  transition:width .3s var(--ease);
}
.nav-links a:hover::after{ width:100%; }

/* ===== NAV DROPDOWN (Szolgáltatások) =====
   A .nav-dropdown -16px margóval + 16px paddinggel "meghosszabbítja" a saját hover-dobozát
   a gomb és a panel közötti résre, hogy lassú, átlós egérmozgásnál se essen ki a hoverből. */
.nav-dropdown{ position:relative; padding-bottom:16px; margin-bottom:-16px; }
.nav-dropdown-toggle{
  background:none; border:none; cursor:pointer; font-family:'Manrope', sans-serif;
  font-size:14.5px; font-weight:600; color:var(--navy); display:flex; align-items:center; gap:6px; padding:4px 0;
}
.nav-dropdown-toggle .chevron{ transition:transform .25s var(--ease); color:var(--gold-deep); }
.nav-dropdown.open .nav-dropdown-toggle .chevron{ transform:rotate(180deg); }
.nav-dropdown-menu{
  position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(-6px);
  background:var(--card); border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow);
  padding:10px; min-width:250px; display:flex; flex-direction:column; gap:2px; z-index:1100;
  opacity:0; pointer-events:none; transition:opacity .2s var(--ease), transform .2s var(--ease);
}
.nav-dropdown-menu a{
  padding:10px 14px; border-radius:10px; font-size:14px; font-weight:600; color:var(--navy);
  white-space:nowrap; position:static;
}
.nav-dropdown-menu a::after{ display:none; content:none; }
.nav-dropdown-menu a:hover{ background:var(--cream-2); color:var(--gold-deep); }
.nav-dropdown-menu .nav-dropdown-all{
  margin-top:4px; border-top:1px solid var(--line); padding-top:12px; color:var(--gold-deep);
  display:flex; align-items:center; gap:6px;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu{ opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }

.nav-mobile-extra{ display:none; }

.nav-burger{
  display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer;
  width:44px; height:44px; align-items:center; justify-content:center;
}
.nav-burger span{ width:22px; height:2px; background:var(--navy-deep); transition:transform .25s var(--ease), opacity .25s var(--ease); }
.nav-burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity:0; }
.nav-burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.btn{
  display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:14.5px;
  padding:13px 26px; border-radius:100px; cursor:pointer; border:none; white-space:nowrap;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn-primary{ background:var(--navy-deep); color:var(--cream); box-shadow:0 8px 24px -8px rgba(8,28,49,0.5); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 32px -10px rgba(8,28,49,0.55); background:var(--navy); }
.btn-ghost{ background:transparent; color:var(--navy-deep); border:1.5px solid var(--line); }
.btn-ghost:hover{ border-color:var(--navy-deep); transform:translateY(-2px); }
.btn-nav{ padding:10px 22px; font-size:13.5px; }
.arrow{ transition:transform .3s var(--ease); }
.btn:hover .arrow{ transform:translateX(4px); }

/* ===== HERO ===== */
.hero{
  position:relative; min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:158px 32px 80px; overflow:hidden;
  background:radial-gradient(ellipse 80% 60% at 50% -10%, #fff 0%, var(--cream) 55%);
}
.hero-bg{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.hero-bars{ position:absolute; right:-40px; bottom:-20px; width:46%; max-width:560px; opacity:0.9; }
.bar{ fill:var(--navy-deep); opacity:0.08; }
.bar-2{ fill:var(--navy); }
.bar-4{ fill:var(--gold); opacity:0.16;}
.bar-5{ fill:var(--gold-deep); opacity:0.14; }
.bar{ animation:growBar 1.4s var(--ease) forwards; }
.bar-1{ animation-delay:.15s; } .bar-2{ animation-delay:.28s; } .bar-3{ animation-delay:.41s; }
.bar-4{ animation-delay:.54s; } .bar-5{ animation-delay:.67s; }
@keyframes growBar{ to{ height:var(--h); transform:translateY(calc(300px - var(--h))); } }
.bar-1{ --h:80px; } .bar-2{ --h:120px; } .bar-3{ --h:170px; } .bar-4{ --h:220px; } .bar-5{ --h:260px; }

.ledger-rain{ position:absolute; inset:0; overflow:hidden; opacity:0.55; }
.ledger-num{
  position:absolute; top:-40px; font-family:'IBM Plex Mono', monospace; color:var(--navy);
  opacity:0.06; font-size:14px; animation:fall linear infinite;
}
@keyframes fall{ to{ transform:translateY(120vh); } }

.hero-inner{ position:relative; z-index:2; width:100%; max-width:820px; text-align:center; }
.hero-title{ font-size:clamp(42px, 7vw, 84px); margin-bottom:24px; }
.hero-title .line{ display:block; }
.line-gold{ color:var(--gold-deep); font-style:italic; }
.hero-sub{
  font-size:18px; line-height:1.6; color:var(--ink-soft); max-width:600px; margin:0 auto 40px;
}
.hero-cta{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:64px; }

.hero-stats{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; max-width:520px; margin:0 auto; }
.glass{
  background:rgba(255,254,252,0.6); backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.6); box-shadow:var(--shadow);
}
.stat-card{
  padding:26px 18px; border-radius:18px; text-align:left; position:relative;
  transition:transform .25s var(--ease);
}
.stat-num{ font-family:'Fraunces', serif; font-size:38px; color:var(--navy-deep); font-weight:600; }
.stat-suffix{ font-family:'Fraunces', serif; font-size:38px; color:var(--gold-deep); font-weight:600; }
.stat-label{ display:block; font-size:12.5px; color:var(--ink-soft); margin-top:6px; font-weight:600; }
.stat-word{ font-family:'Fraunces', serif; font-size:27px; font-weight:600; color:var(--gold-deep); display:block; line-height:1.1; }

.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--ink-soft); display:flex; flex-direction:column; align-items:center; gap:8px;
}
.scroll-cue span{ width:1px; height:34px; background:linear-gradient(var(--gold-deep), transparent); animation:scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine{ 0%,100%{ opacity:0.3; } 50%{ opacity:1; } }

/* ===== MARQUEE ===== */
.marquee{
  background:var(--navy-deep); overflow:hidden; padding:16px 0; white-space:nowrap;
}
.marquee-track{ display:inline-block; animation:marquee 28s linear infinite; }
.marquee-track span{
  font-family:'Fraunces', serif; font-style:italic; font-size:20px; color:var(--cream); margin-right:14px;
}
.marquee-track .dot{ color:var(--gold); font-style:normal; margin-right:14px; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ===== SECTION GENERIC ===== */
section{ padding:120px 32px; position:relative; }
.section-head{ max-width:680px; margin:0 auto 64px; text-align:center; }
.section-head h2{ font-size:clamp(30px,4vw,46px); }

/* ===== SERVICES GRID (egyenletes 3x2) ===== */
.services{ background:var(--cream); }
.services-grid{
  max-width:1160px; margin:0 auto; display:grid;
  grid-template-columns:repeat(3, 1fr); gap:20px;
}
.service-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:36px 32px; position:relative; overflow:hidden;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:transparent; }
.service-icon{
  width:52px; height:52px; border-radius:14px; background:linear-gradient(135deg, var(--navy-deep), var(--navy));
  color:var(--gold-light); display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.service-icon svg{ width:26px; height:26px; }
.service-num{
  position:absolute; top:30px; right:28px; font-family:'IBM Plex Mono', monospace; font-size:12px;
  color:rgba(15,44,78,0.25); letter-spacing:0.05em;
}
.service-card h3{ font-size:20px; margin-bottom:10px; padding-right:20px; text-align:center;}
.service-card p{ font-size:14.5px; line-height:1.65; color:var(--ink-soft); text-align:justify;}
.service-sub{ font-weight:700; color:var(--navy); margin-top:14px; }
.service-card .service-list + .service-sub{ margin-top:10px; }
.service-list{ list-style:none; margin-top:14px; display:flex; flex-direction:column; gap:6px; }
.service-list li{
  font-size:13.5px; line-height:1.5; color:var(--ink-soft); padding-left:16px; position:relative;
}
.service-list li::before{
  content:''; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%;
  background:var(--gold-deep);
}
.service-link{
  display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-size:13.5px; font-weight:700;
  color:var(--gold-deep);
}
.service-link .arrow{ transition:transform .3s var(--ease); }
.service-link:hover .arrow{ transform:translateX(4px); }

/* ===== TICKER ===== */
.ticker-section{ background:var(--navy-deep); padding:80px 32px; }
.ticker-inner{
  max-width:1000px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:32px;
}
.ticker-item{ text-align:center; flex:1; min-width:180px; }
.ticker-num, .ticker-suffix{ font-family:'Fraunces', serif; font-size:46px; color:var(--gold-light); font-weight:500; }
.ticker-label{ display:block; font-size:12.5px; color:rgba(246,243,234,0.6); margin-top:10px; letter-spacing:0.02em; }
.ticker-sep{ width:1px; height:50px; background:rgba(246,243,234,0.15); }
@media(max-width:700px){ .ticker-sep{ display:none; } }

/* ===== PROCESS ===== */
.process{ background:var(--cream-2); }
.process-list{ max-width:760px; margin:0 auto; }
.process-item{
  display:flex; gap:28px; padding:32px 0; border-top:1px solid var(--line); align-items:flex-start;
}
.process-item:last-child{ border-bottom:1px solid var(--line); }
.process-num{
  font-family:'Fraunces', serif; font-size:34px; color:var(--gold-deep); font-style:italic; min-width:60px;
}
.process-content h3{ font-size:21px; margin-bottom:8px; }
.process-content p{ font-size:14.5px; color:var(--ink-soft); line-height:1.6; max-width:520px; }

/* ===== WHY ===== */
.why{ background:var(--cream); }
.why-inner{
  max-width:1160px; margin:0 auto; display:grid; grid-template-columns:1.1fr 0.9fr; gap:64px; align-items:center;
}
.why-text h2{ font-size:clamp(28px,3.6vw,42px); margin-bottom:22px; }
.why-lead{ font-size:16px; line-height:1.7; color:var(--ink-soft); margin-bottom:26px; max-width:520px; }
.why-list{ list-style:none; margin-bottom:32px; display:flex; flex-direction:column; gap:12px; }
.why-list li{ font-size:15px; font-weight:600; color:var(--navy); display:flex; gap:10px; align-items:center; }
.check{ color:var(--gold-deep); font-weight:700; }

/* Sötét (navy) változat — erősebb márkajelenlét egy-egy kiemelt szekcióban */
.why-dark{ background:var(--navy-deep); }
.why-dark .eyebrow{ color:var(--gold-light); }
.why-dark .why-text h2{ color:#fff; }
.why-dark .why-text h2 .gold{ color:var(--gold-light); }
.why-dark .why-lead{ color:rgba(246,243,234,0.72); }
.why-dark .why-list li{ color:#fff; }
.why-dark .check{ color:var(--gold-light); }
.why-dark .btn-primary{ background:var(--gold); color:var(--navy-deep); box-shadow:0 8px 24px -8px rgba(0,0,0,0.4); }
.why-dark .btn-primary:hover{ background:var(--gold-light); }
/* Az idézet-kártya sötét háttéren átlátszóan "besötétült" — most kifejezetten
   világos, kontrasztos overlay-kártyaként ül a navy háttéren. */
.why-dark .orbit-card{
  background:rgba(255,254,252,0.97); border-color:rgba(255,255,255,0.9);
  box-shadow:0 24px 60px -16px rgba(0,0,0,0.5);
}

/* ===== KIEMELT PARTNEREINK ===== */
.partners{ background:var(--cream); }
.partners-grid{
  max-width:700px; margin:0 auto; display:flex; justify-content:center; align-items:flex-start;
  gap:64px; flex-wrap:wrap;
}
.partner-item{ display:flex; flex-direction:column; align-items:center; gap:14px; }
.partner-logo-box{
  background:var(--card); border:1px solid var(--line); border-radius:18px;
  padding:22px 32px; min-width:180px; min-height:96px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow); transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.partner-logo-box:hover{ transform:translateY(-4px); box-shadow:0 24px 50px -18px rgba(8,28,49,0.3); }
.partner-logo{ height:56px; width:auto; max-width:170px; object-fit:contain; }
.partner-name{
  font-family:'IBM Plex Mono', monospace; font-size:12.5px; letter-spacing:0.05em;
  color:var(--ink-soft); text-transform:uppercase; text-align:center;
}
@media(max-width:600px){
  .partners-grid{ gap:32px; }
  .partner-logo-box{ min-width:150px; padding:18px 24px; }
}

.why-visual{ display:flex; justify-content:center; }
.orbit-card{
  width:100%; max-width:340px; border-radius:28px; padding:44px 32px; text-align:center;
  transition:transform .4s var(--ease);
}
.orbit-logo{
  font-family:'Fraunces', serif; font-size:52px; color:var(--navy-deep); font-weight:600;
  width:100px; height:100px; margin:0 auto 24px; border:1.5px solid var(--navy-deep); border-radius:24px;
  display:flex; align-items:center; justify-content:center;
}
.orbit-quote{ font-family:'Fraunces', serif; font-style:italic; font-size:18px; color:var(--navy); line-height:1.5; margin-bottom:26px; }
.orbit-bars{ display:flex; gap:6px; justify-content:center; align-items:flex-end; height:34px; }
.orbit-bars span{ width:6px; background:var(--gold-deep); border-radius:3px; animation:barPulse 1.6s ease-in-out infinite; }
.orbit-bars span:nth-child(1){ height:12px; animation-delay:0s; }
.orbit-bars span:nth-child(2){ height:22px; animation-delay:.15s; }
.orbit-bars span:nth-child(3){ height:34px; animation-delay:.3s; }
.orbit-bars span:nth-child(4){ height:18px; animation-delay:.45s; }
.orbit-bars span:nth-child(5){ height:26px; animation-delay:.6s; }
@keyframes barPulse{ 0%,100%{ transform:scaleY(0.7); } 50%{ transform:scaleY(1); } }

/* ===== RÓLAM / ABOUT ===== */
.about{ background:var(--card); }
.about-inner{
  max-width:1160px; margin:0 auto; display:grid; grid-template-columns:0.8fr 1.2fr; gap:64px; align-items:center;
}
.about-visual{ display:flex; justify-content:center; }
.about-avatar{
  width:220px; height:220px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces', serif; font-size:64px; font-weight:600; color:var(--navy-deep);
  background:linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%);
  border:1.5px solid var(--line); box-shadow:var(--shadow);
}
.about-text h2{ font-size:clamp(28px,3.6vw,42px); margin-bottom:22px; }
.about-lead{ font-size:16px; line-height:1.7; color:var(--ink-soft); margin-bottom:20px; max-width:560px; }
.about-points{ list-style:none; margin:12px 0 32px; display:flex; flex-direction:column; gap:12px; }
.about-points li{ font-size:15px; font-weight:600; color:var(--navy); display:flex; gap:10px; align-items:center; }

@media(max-width:960px){
  .about-inner{ grid-template-columns:1fr; text-align:center; }
  .about-lead{ margin-left:auto; margin-right:auto; }
  .about-points{ align-items:center; }
}

/* ===== QUOTE / FORM ===== */
.quote{
  background:linear-gradient(180deg, var(--navy-deep), var(--navy) 60%, var(--navy-deep));
  position:relative;
}
.quote::before{
  content:''; position:absolute; inset:0; opacity:0.5;
  background:radial-gradient(circle at 20% 20%, rgba(201,162,75,0.12), transparent 45%);
}
.quote-inner{ max-width:920px; margin:0 auto; position:relative; z-index:1; }
.quote-head{ text-align:center; margin-bottom:48px; }
.quote-head .eyebrow{ color:var(--gold-light); }
.quote-head h2{ color:#fff; font-size:clamp(28px,3.8vw,44px); }
.quote-sub{ color:rgba(246,243,234,0.7); margin-top:16px; font-size:15.5px; }

.quote-form{ border-radius:28px; padding:44px; background:rgba(255,254,252,0.06); border:1px solid rgba(255,255,255,0.12); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.field{ position:relative; }
.field-full{ margin-bottom:26px; }
.field input, .field select, .field textarea{
  width:100%; padding:16px 16px 8px; background:rgba(246,243,234,0.05); border:1px solid rgba(255,255,255,0.16);
  border-radius:12px; color:#fff; font-family:'Manrope', sans-serif; font-size:15px; outline:none;
  transition:border-color .25s, background .25s; resize:vertical;
}
.field select{ padding-top:16px; color:#fff; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A24B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; cursor:pointer; }
.field select option{ background:var(--navy); color:#fff; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--gold); background:rgba(246,243,234,0.09); }
.field label{
  position:absolute; left:16px; right:16px; top:16px; font-size:15px; color:rgba(246,243,234,0.45);
  pointer-events:none; transition:all .2s var(--ease);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label{
  top:7px; font-size:11px; letter-spacing:0.04em; color:var(--gold-light);
}
/* select mezők: a címke a doboz TETEJÉN belül lebeg (mint egy kitöltött input),
   így a doboz teteje pontosan egybeesik a szöveges mezőkével */
.field-select label{
  position:absolute; left:16px; right:16px; top:7px; font-size:11px; letter-spacing:0.04em; text-transform:uppercase;
  color:var(--gold-light); font-weight:600; margin:0; pointer-events:none;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.field-select select{ padding:24px 16px 8px; }
.honeypot{ position:absolute; left:-9999px; opacity:0; height:0; }

/* ---- Elfogadó jelölőnégyzet ---- */
.consent{
  display:flex; align-items:flex-start; gap:12px; cursor:pointer; margin:22px 0 4px; user-select:none;
}
.consent input{ position:absolute; opacity:0; width:0; height:0; }
.consent-box{
  flex:none; width:20px; height:20px; border:1.5px solid rgba(255,255,255,0.35); border-radius:6px;
  margin-top:1px; position:relative; transition:all .2s var(--ease);
}
.consent-box::after{
  content:''; position:absolute; left:6px; top:2px; width:5px; height:10px;
  border:solid var(--navy-deep); border-width:0 2px 2px 0; transform:rotate(45deg); opacity:0;
  transition:opacity .15s var(--ease);
}
.consent input:checked ~ .consent-box{ background:var(--gold); border-color:var(--gold); }
.consent input:checked ~ .consent-box::after{ opacity:1; }
.consent input:focus-visible ~ .consent-box{ outline:2px solid var(--gold-light); outline-offset:2px; }
.consent-text{ font-size:13.5px; color:rgba(246,243,234,0.75); line-height:1.5; }
.consent-text a{ color:var(--gold-light); text-decoration:underline; }
.consent.invalid .consent-box{ border-color:#E88A8A; }

/* ---- Mezőszintű hibavisszajelzés ---- */
.field.invalid input, .field.invalid select, .field.invalid textarea{ border-color:#E88A8A !important; }
.field-error{
  display:none; color:#F0A6A6; font-size:12px; font-weight:600; margin-top:6px; line-height:1.4;
}
.field.invalid .field-error{ display:block; }
.consent .field-error{ flex-basis:100%; margin-left:32px; margin-top:-4px; }
.consent.invalid .field-error{ display:block; }

/* ---- Többlépéses form: progress + navigáció ---- */
.form-progress{ display:flex; align-items:center; gap:14px; margin-bottom:26px; }
.form-progress-label{
  font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.05em; text-transform:uppercase;
  color:rgba(246,243,234,0.55); white-space:nowrap; flex:none;
}
.form-progress-track{ flex:1; height:4px; background:rgba(255,255,255,0.12); border-radius:2px; overflow:hidden; }
.form-progress-fill{ display:block; height:100%; width:50%; background:var(--gold); border-radius:2px; transition:width .35s var(--ease); }
.form-step[hidden]{ display:none; }
.form-step .form-next{ width:100%; justify-content:center; margin-top:6px; }
.form-step-nav{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:22px; }
.form-step-nav .btn-submit{ width:auto; flex:1; margin-top:0; }
.form-back{
  background:none; border:none; cursor:pointer; font-size:13.5px; font-weight:700;
  color:rgba(246,243,234,0.55); flex:none; padding:8px 4px; transition:color .2s;
}
.form-back:hover{ color:#fff; }
.form-trust-line{
  display:flex; align-items:center; justify-content:center; gap:8px; margin-top:16px;
  font-size:12.5px; color:rgba(246,243,234,0.55);
}
.form-trust-line svg{ flex:none; color:var(--gold-light); }
.field-standalone{ margin-bottom:20px; }

/* ---- Exit-intent popup ---- */
.exit-modal{
  position:fixed; inset:0; z-index:3000; display:none; align-items:center; justify-content:center;
  padding:20px; background:rgba(8,28,49,0.6); backdrop-filter:blur(4px);
}
.exit-modal.show{ display:flex; }
.exit-modal-card{
  background:var(--card); border-radius:24px; max-width:440px; width:100%; padding:44px 32px 36px;
  text-align:center; position:relative; box-shadow:var(--shadow); animation:popIn .35s var(--ease);
}
@keyframes popIn{ from{ opacity:0; transform:scale(.94); } to{ opacity:1; transform:scale(1); } }
.exit-modal-close{
  position:absolute; top:14px; right:14px; width:32px; height:32px; border-radius:50%; border:none;
  background:var(--cream-2); cursor:pointer; font-size:15px; color:var(--navy); line-height:1;
}
.exit-modal-close:hover{ background:var(--cream); }
.exit-modal-card h3{ font-size:23px; margin:6px 0 14px; }
.exit-modal-card p{ font-size:14.5px; color:var(--ink-soft); line-height:1.6; margin-bottom:22px; }

.btn-submit{ width:100%; justify-content:center; padding:17px; font-size:15.5px; position:relative; margin-top:6px; }
.btn-loader{
  display:none; width:16px; height:16px; border:2px solid rgba(255,255,255,0.3); border-top-color:#fff;
  border-radius:50%; animation:spin .7s linear infinite;
}
.btn-submit.loading .btn-text{ opacity:0.5; }
.btn-submit.loading .btn-loader{ display:inline-block; }
@keyframes spin{ to{ transform:rotate(360deg); } }
.form-note{ text-align:center; font-size:12px; color:rgba(246,243,234,0.4); margin-top:16px; }
.field-hint{ display:block; font-size:11.5px; color:rgba(246,243,234,0.4); margin-top:6px; }
.field.invalid .field-hint{ display:none; }
.form-status{ text-align:center; font-size:14px; font-weight:700; margin-top:10px; min-height:20px; }
.form-status.ok{ color:#8FD19E; }
.form-status.err{ color:#E88A8A; }

/* ===== FOOTER ===== */
.footer{ background:var(--navy-deep); padding:80px 32px 0; color:var(--cream); }
.footer-inner{
  max-width:1160px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:48px;
  padding-bottom:56px; border-bottom:1px solid rgba(246,243,234,0.1);
}
.footer-brand .logo-mark{ border-color:var(--gold-light); color:var(--gold-light); }
.footer-brand .nav-logo-text{ color:#fff; }
.footer-tag{ margin-top:16px; font-size:13.5px; color:rgba(246,243,234,0.5); max-width:260px; }
.footer-col h4{ font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-light); margin-bottom:16px; font-weight:500; }
.footer-col{ display:flex; flex-direction:column; gap:10px; font-size:14.5px; }
.footer-col a{ color:rgba(246,243,234,0.75); transition:color .2s; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-bottom{
  max-width:1160px; margin:0 auto; padding:26px 0; display:flex; justify-content:space-between;
  font-size:12.5px; color:rgba(246,243,234,0.4); flex-wrap:wrap; gap:8px;
}

/* ===== REVEAL / SCROLL ANIM ===== */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media(max-width:960px){
  .why-inner{ grid-template-columns:1fr; }
  .bento{ grid-template-columns:1fr 1fr; }
  .bento-lg{ grid-column:span 2; }
  .services-grid{ grid-template-columns:repeat(2, 1fr); }
  .nav-logo-img{ height:84px; }
  .nav.scrolled .nav-logo-img{ height:56px; }
}
@media(max-width:600px){
  .services-grid{ grid-template-columns:1fr; }
}
@media(max-width:720px){
  /* Teljes képernyős mobilmenü. Szándékosan NINCS transform/csúsztatás — kizárólag
     opacity + visibility + pointer-events vezérli a nyitást/zárást, semmi más mozgó
     alkatrész, ami hibalehetőséget rejtene. A panel a teljes fixed viewportot lefedi,
     így nincs "másik szélen nyílik ki" típusú pozicionálási hiba sem. */
  .nav-links{
    display:flex; position:fixed; top:0; left:0; right:0; bottom:0; z-index:10000;
    width:100vw; height:100vh; width:100%; height:100%;
    flex-direction:column; align-items:stretch; background:#F6F3EA; background:var(--cream);
    padding:100px 24px 40px; gap:20px;
    overflow-y:auto; -webkit-overflow-scrolling:touch; overscroll-behavior:contain;
    opacity:0; visibility:hidden; pointer-events:none;
    transition:opacity .2s var(--ease), visibility .2s var(--ease);
  }
  @supports (height: 100dvh) {
    .nav-links{ height:100dvh; }
  }
  .nav-links.open{ opacity:1; visibility:visible; pointer-events:auto; }
  .nav-links a{ font-size:17px; padding:8px 0; text-align:center; }
  .nav-links a.nav-mobile-cta{ color:var(--cream); }
  .nav-dropdown{ width:100%; padding-bottom:0; margin-bottom:0; }
  .nav-dropdown-toggle{ width:100%; justify-content:space-between; font-size:17px; padding:8px 0; }
  .nav-dropdown-menu{
    position:static; transform:none; opacity:1; pointer-events:auto; box-shadow:none; border:none;
    background:transparent; padding:0; min-width:0; max-height:0; overflow:hidden;
    align-items:stretch; width:100%;
    transition:max-height .3s var(--ease);
  }
  /* A globális (nem media-query-s) .nav-dropdown.open .nav-dropdown-menu szabály nagyobb
     specificitású, mint a fenti mobil reset — itt, ugyanazzal a szelektorral, explicit
     vissza kell állítani transform:none-ra, különben az asztali translateX(-50%) "kilövi"
     a almenüt a képernyő széléről mobilon. */
  .nav-dropdown.open .nav-dropdown-menu{ max-height:400px; padding:4px 0 10px 12px; transform:none; left:auto; }
  .nav-dropdown-menu a{ padding:9px 0; font-size:15.5px; color:var(--ink-soft); width:100%; white-space:normal; box-sizing:border-box; }
  .nav-dropdown-menu .nav-dropdown-all{ color:var(--gold-deep); border-top-color:var(--line); }
  .nav-burger{ display:flex; z-index:10001; }
  .btn-nav{ display:none; }
  .nav-logo-img{ height:80px; }
  .nav.scrolled .nav-logo-img{ height:52px; }
  .hero-title{ font-size:clamp(28px, 8vw, 38px); }

  .nav-mobile-extra{
    display:flex; flex-direction:column; align-items:center; gap:16px; width:100%;
    margin-top:auto; padding-top:28px; border-top:1px solid var(--line);
  }
  .nav-mobile-call{
    display:flex; align-items:center; gap:8px; font-weight:700; font-size:15px; color:var(--navy-deep);
  }
  .nav-mobile-cta{ width:100%; justify-content:center; }
  .nav-mobile-logo{ height:34px; width:auto; opacity:0.65; margin-top:6px; }
  body.menu-open{ overflow:hidden; overscroll-behavior:none; }
  html:has(body.menu-open){ overflow:hidden; overscroll-behavior:none; }
  .hero{ padding-top:120px; padding-bottom:120px; }
  .hero-stats{ grid-template-columns:1fr; }
  .bento{ grid-template-columns:1fr; }
  .bento-lg{ grid-column:span 1; }
  .form-row{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr; text-align:center; justify-items:center; }
  .footer-brand{ display:flex; flex-direction:column; align-items:center; }
  .footer-logo-img{ width:140px; margin-left:auto; margin-right:auto; }
  .footer-tag{ max-width:280px; }
  .footer-col{ align-items:center; }
  .footer-bottom{ justify-content:center; text-align:center; }
  /* Hely a lábrész alján, hogy a sticky CTA-sáv ne takarja el az utolsó sort */
  .footer{ padding-bottom:calc(84px + env(safe-area-inset-bottom)); }
  section{ padding:80px 20px; }
  .ticker-inner{ flex-direction:column; }
  .btn{ font-size:15px; padding:15px 26px; }
  .hero-cta{ flex-direction:column; width:100%; }
  .hero-cta .btn{ width:100%; justify-content:center; }

  /* Ajánlatkérő űrlap — mobilon ne csússzon szét */
  .quote-form{ padding:28px 20px; }
  .form-step-nav{ flex-direction:column-reverse; align-items:stretch; gap:14px; }
  .form-step-nav .btn-submit{ width:100%; flex:none; }
  .form-back{ text-align:center; width:100%; }
  .lp-hero-cta, .lp-trust-bar{ width:100%; }
}

/* ===== STICKY / KÖVETŐ CTA — mobilon teljes szélességű sáv (hívás + ajánlatkérés),
   asztalon egyetlen letisztult, lebegő gomb. Bármikor bezárható a sarokra "kitűzött"
   X jelvénnyel (munkamenet végéig nem jön vissza — script.js). ===== */
.sticky-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:2050; display:flex;
  background:rgba(11,42,74,0.97); backdrop-filter:blur(10px);
  padding:10px 14px; padding-bottom:max(10px, env(safe-area-inset-bottom));
  box-shadow:0 -8px 24px rgba(0,0,0,0.18);
  transform:translateY(120%);
  transition:transform .3s var(--ease), opacity .3s var(--ease);
  gap:10px; align-items:center;
}
.sticky-cta.show{ transform:translateY(0); }
.sticky-cta.dismissed{ display:none; }
.sticky-cta a{
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  height:48px; border-radius:12px; font-weight:700; font-size:14.5px; white-space:nowrap;
}
.sticky-cta .cta-call{ background:rgba(246,243,234,0.1); color:var(--cream); flex:0 0 52px; }
.sticky-cta .cta-quote{ background:var(--gold); color:var(--navy-deep); flex:1; }

/* A bezáró X — mobilon a sáv TETEJE fölött lebeg (nem takarja a hívás/ajánlat gombokat,
   és nem lóg túl a képernyő szélén). */
.sticky-cta-close{
  position:absolute; top:-14px; right:14px; width:26px; height:26px; border-radius:50%;
  border:2px solid var(--cream); cursor:pointer; background:var(--navy-deep); color:var(--cream);
  font-size:11px; line-height:1; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 10px rgba(0,0,0,0.25); transition:transform .2s var(--ease), background .2s var(--ease);
}
.sticky-cta-close:hover{ background:var(--navy); transform:scale(1.08); }

/* Asztalon nem teljes szélességű sáv, hanem egyetlen kompakt, lebegő gomb jobb alul —
   a hívás-ikon itt elmarad, hogy ne legyen zsúfolt a doboz. */
@media(min-width:721px){
  .sticky-cta{
    left:auto; right:28px; bottom:28px; width:auto;
    background:none; backdrop-filter:none; padding:0; box-shadow:none;
    transform:translateY(16px); opacity:0; pointer-events:none;
  }
  .sticky-cta.show{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .sticky-cta .cta-call{ display:none; }
  .sticky-cta a{
    height:auto; padding:15px 26px; border-radius:100px; font-size:14.5px;
    box-shadow:0 12px 30px -10px rgba(8,28,49,0.5);
  }
  .sticky-cta-close{ top:-10px; right:-10px; }
}

/* ============================================================
   LANDING OLDALAK — közös komponensek (szolgáltatás-specifikus
   konverziós oldalakhoz: berszamfejtes.html, munkaugy.html, stb.)
   ============================================================ */

/* Letisztult, disztrakció-mentes fejléc a landingekhez */
.lp-nav, .lp-nav.scrolled{ padding:0; }
.lp-nav .nav-inner{ justify-content:space-between; padding-top:16px; padding-bottom:16px; }
.lp-nav.scrolled .nav-inner{ padding-top:10px; padding-bottom:10px; }
.lp-nav .nav-phone{
  display:flex; align-items:center; gap:8px; font-weight:700; font-size:14.5px; color:var(--navy-deep);
}
.lp-nav .nav-phone svg{ flex:none; }

/* Sürgetés-sáv a fejléc RÉSZEKÉNT (fixed blokkon belül, nem csúszik rá semmire) */
.lp-nav-urgency{
  background:var(--navy-deep); color:var(--cream); text-align:center; padding:9px 20px;
  font-size:12.5px; font-weight:600; letter-spacing:0.01em; line-height:1.4;
}
.lp-nav-urgency strong{ color:var(--gold-light); }

/* HERO */
.lp-hero{
  position:relative; padding:190px 32px 90px; overflow:hidden;
  background:radial-gradient(ellipse 80% 60% at 50% -10%, #fff 0%, var(--cream) 55%);
}
.lp-hero-inner{
  max-width:1200px; margin:0 auto; position:relative; z-index:2;
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center;
}
.lp-hero-copy h1{ font-size:clamp(34px,5vw,58px); margin-bottom:20px; }
.lp-hero-copy .hero-sub{ margin:0 0 32px; text-align:left; max-width:520px; }
.lp-hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:32px; }
.lp-trust-bar{ display:flex; gap:22px; flex-wrap:wrap; }
.lp-trust-item{ display:flex; align-items:center; gap:8px; font-size:13px; font-weight:700; color:var(--navy); }
.lp-trust-item svg{ flex:none; color:var(--gold-deep); }
.lp-hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
.lp-hero-visual svg{ width:100%; max-width:420px; height:auto; }

/* PAIN POINTS */
.lp-pain{ background:var(--cream); }
.lp-pain-grid{ max-width:1000px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.lp-pain-item{
  background:var(--card); border:1px solid var(--line); border-radius:18px; padding:28px 24px;
  text-align:left;
}
.lp-pain-item .pain-icon{ color:#C97C4B; margin-bottom:14px; }
.lp-pain-item h3{ font-size:18px; margin-bottom:8px; }
.lp-pain-item p{ font-size:14px; line-height:1.6; color:var(--ink-soft); }

/* BENEFITS / MEGOLDÁS (kép + szöveg, .why-inner mintájára) */
.lp-benefits-inner{
  max-width:1180px; margin:0 auto; display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:center;
}
.lp-benefits-visual svg{ width:100%; height:auto; }
.lp-benefits-list{ display:flex; flex-direction:column; gap:22px; margin-top:28px; }
.lp-benefit{ display:flex; gap:16px; align-items:flex-start; }
.lp-benefit .check-badge{
  flex:none; width:32px; height:32px; border-radius:10px; background:var(--navy-deep); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center;
}
.lp-benefit h4{ font-family:'Fraunces', serif; font-size:17px; color:var(--navy-deep); margin-bottom:4px; }
.lp-benefit p{ font-size:14px; color:var(--ink-soft); line-height:1.6; }

/* CHECKLIST — mit tartalmaz a szolgáltatás */
.lp-checklist{ background:var(--navy-deep); }
.lp-checklist .section-head h2{ color:#fff; }
.lp-checklist .section-head .eyebrow{ color:var(--gold-light); }
.lp-checklist-grid{
  max-width:980px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:18px 40px;
}
.lp-checklist-item{
  display:flex; gap:12px; align-items:flex-start; padding:14px 0; border-bottom:1px solid rgba(246,243,234,0.1);
}
.lp-checklist-item svg{ flex:none; color:var(--gold-light); margin-top:2px; }
.lp-checklist-item span{ font-size:14.5px; color:rgba(246,243,234,0.88); line-height:1.5; }

/* GARANCIA / KOCKÁZATMENTESSÉG */
.lp-guarantee{
  max-width:880px; margin:0 auto; text-align:center; background:var(--card); border:1.5px dashed var(--gold-deep);
  border-radius:24px; padding:48px 36px;
}
.lp-guarantee .g-icon{ margin:0 auto 18px; width:56px; height:56px; }
.lp-guarantee h2{ font-size:clamp(24px,3vw,32px); margin-bottom:14px; }
.lp-guarantee p{ font-size:15.5px; color:var(--ink-soft); line-height:1.7; max-width:620px; margin:0 auto; }

/* FAQ ACCORDION */
.lp-faq{ background:var(--cream); }
.lp-faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.lp-faq-item{
  background:var(--card); border:1px solid var(--line); border-radius:16px; padding:4px 24px; overflow:hidden;
}
.lp-faq-item summary{
  cursor:pointer; list-style:none; padding:20px 0; font-family:'Fraunces', serif; font-size:17px;
  color:var(--navy-deep); display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.lp-faq-item summary::-webkit-details-marker{ display:none; }
.lp-faq-item summary::after{
  content:'+'; flex:none; font-size:22px; color:var(--gold-deep); font-family:'Manrope',sans-serif; transition:transform .25s var(--ease);
}
.lp-faq-item[open] summary::after{ transform:rotate(45deg); }
.lp-faq-item p{ padding:0 0 22px; font-size:14.5px; color:var(--ink-soft); line-height:1.7; }

/* TESZTIMONIÁL PLACEHOLDER */
.lp-testimonial{ background:var(--cream); }
.lp-testimonial-note{
  max-width:680px; margin:0 auto 36px; background:var(--cream-2); border:1px dashed var(--gold-deep);
  border-radius:14px; padding:16px 20px; font-size:13px; color:var(--navy); text-align:left;
}
.lp-testimonial-card{
  max-width:680px; margin:0 auto; text-align:center; padding:40px 36px;
}
.lp-testimonial-card p.quote-text{
  font-family:'Fraunces', serif; font-style:italic; font-size:20px; color:var(--navy-deep); line-height:1.6; margin-bottom:20px;
}
.lp-testimonial-card .quote-author{ font-size:13.5px; font-weight:700; color:var(--gold-deep); }

/* KÖZBENSŐ CTA CSÍK — ismétlődő ajánlatkérés-terelés a görgetés közben */
.lp-cta-strip{
  max-width:720px; margin:56px auto 0; text-align:center; padding:32px 28px;
  background:var(--card); border:1px solid var(--line); border-radius:20px;
}
.lp-cta-strip p{ font-family:'Fraunces', serif; font-size:19px; color:var(--navy-deep); margin-bottom:18px; }
.lp-cta-strip.on-dark{ background:rgba(255,254,252,0.06); border-color:rgba(255,255,255,0.12); }
.lp-cta-strip.on-dark p{ color:#fff; }

/* KAPCSOLÓDÓ SZOLGÁLTATÁSOK — belső linkelés a landingek között */
.lp-related{ background:var(--cream); }
.lp-related-grid{
  max-width:1000px; margin:0 auto; display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
}
.lp-related-card{
  display:block; background:var(--card); border:1px solid var(--line); border-radius:18px;
  padding:26px 24px; transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lp-related-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow); }
.lp-related-num{ font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--gold-deep); letter-spacing:0.05em; }
.lp-related-card h3{ font-size:18px; margin:8px 0 6px; }
.lp-related-card p{ font-size:14px; color:var(--ink-soft); line-height:1.6; margin-bottom:14px; }
.lp-related-card .arrow-link{
  font-size:13.5px; font-weight:700; color:var(--navy-deep); display:inline-flex; align-items:center; gap:6px;
}
@media(max-width:720px){ .lp-related-grid{ grid-template-columns:1fr; } }

/* VÉGSŐ CTA — sürgetés + forma ismétlés */
.lp-final{
  background:linear-gradient(180deg, var(--navy-deep), var(--navy) 60%, var(--navy-deep)); position:relative;
}
.lp-final::before{
  content:''; position:absolute; inset:0; opacity:0.5;
  background:radial-gradient(circle at 80% 20%, rgba(201,162,75,0.12), transparent 45%);
}

@media(max-width:960px){
  .lp-hero-inner{ grid-template-columns:1fr; text-align:center; }
  .lp-hero-copy .hero-sub{ margin:0 auto 32px; }
  .lp-hero-cta{ justify-content:center; }
  .lp-trust-bar{ justify-content:center; }
  .lp-hero-visual{ order:-1; max-width:280px; margin:0 auto; }
  .lp-benefits-inner{ grid-template-columns:1fr; gap:40px; }
  .lp-benefits-visual{ max-width:320px; margin:0 auto; }
  .lp-pain-grid{ grid-template-columns:1fr; }
  .lp-checklist-grid{ grid-template-columns:1fr; }
}
@media(max-width:720px){
  .lp-hero{ padding:175px 20px 60px; }
  .lp-nav-urgency{ font-size:11.5px; padding:8px 16px; }
  .lp-hero-cta{ flex-direction:column; width:100%; }
  .lp-hero-cta .btn{ width:100%; justify-content:center; }
  .lp-guarantee{ padding:36px 22px; }
  .lp-faq-item{ padding:4px 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice{
  position:fixed; left:20px; right:20px; bottom:20px; z-index:2000; max-width:640px; margin:0 auto;
  background:rgba(255,254,252,0.92); backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.7); box-shadow:var(--shadow); border-radius:18px;
  padding:20px 24px; display:flex; align-items:center; gap:18px; flex-wrap:wrap;
  transform:translateY(140%); opacity:0; transition:transform .5s var(--ease), opacity .5s var(--ease);
  pointer-events:none;
}
.cookie-notice.show{ transform:translateY(0); opacity:1; pointer-events:auto; }
.cookie-notice p{ flex:1 1 320px; font-size:13.5px; line-height:1.6; color:var(--ink-soft); margin:0; }
.cookie-notice p a{ color:var(--navy-deep); font-weight:700; text-decoration:underline; text-underline-offset:2px; }
.btn-cookie{ padding:11px 22px; font-size:13.5px; flex:0 0 auto; }
@media(max-width:720px){
  .cookie-notice{ bottom:calc(94px + env(safe-area-inset-bottom)); }
}
@media(max-width:480px){
  .cookie-notice{ left:12px; right:12px; padding:16px 18px; }
}
