/* ============================================================
   OTISAK.BN — DTF Štampa
   Brand stylesheet
   ============================================================ */

:root{
  /* Brand */
  --ink:        #050508;
  --ink-2:      #0b0c11;
  --ink-3:      #121319;
  --line:       rgba(255,255,255,.10);
  --line-soft:  rgba(255,255,255,.06);

  --white:      #ffffff;
  --text:       #e8e9ee;
  --muted:      #9aa0b0;

  --cyan:       #00b6ff;
  --blue:       #2f6bff;
  --magenta:    #ff2fa0;
  --pink:       #ff5cc8;
  --yellow:     #ffd400;

  --grad:       linear-gradient(90deg, var(--cyan) 0%, var(--magenta) 52%, var(--blue) 100%);
  --grad-soft:  linear-gradient(120deg, rgba(0,182,255,.18), rgba(255,47,160,.18) 55%, rgba(47,107,255,.18));

  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  26px;

  --shadow:     0 20px 60px rgba(0,0,0,.55);
  --shadow-sm:  0 8px 28px rgba(0,0,0,.4);

  --container:  1180px;
  --nav-h:      72px;

  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --ff-head:    'Barlow Condensed', 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ink);
  color:var(--text);
  font-family:var(--ff-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; }
ul{ margin:0; padding:0; list-style:none; }

h1,h2,h3,h4{
  font-family:var(--ff-head);
  font-weight:700;
  line-height:1.03;
  letter-spacing:.005em;
  margin:0 0 .5em;
  color:var(--white);
  text-transform:uppercase;
}
h1{ font-size:clamp(2.6rem, 8.5vw, 5rem); }
h2{ font-size:clamp(2rem, 6vw, 3.2rem); }
h3{ font-size:clamp(1.25rem, 3.4vw, 1.6rem); }
p{ margin:0 0 1.1em; }
p:last-child{ margin-bottom:0; }

::selection{ background:var(--magenta); color:#fff; }

:focus-visible{
  outline:2px solid var(--cyan);
  outline-offset:3px;
  border-radius:6px;
}

/* ---------- Layout ---------- */
.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:20px;
}
[id]{ scroll-margin-top:calc(var(--nav-h) + 18px); }
.section{ padding:clamp(64px, 10vw, 112px) 0; position:relative; }
.section--tight{ padding:clamp(48px, 7vw, 80px) 0; }
.section--alt{ background:var(--ink-2); border-block:1px solid var(--line-soft); }

.grid{ display:grid; gap:18px; }
@media (min-width:640px){ .grid--2{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:900px){
  .grid--3{ grid-template-columns:repeat(3,1fr); }
  .grid--4{ grid-template-columns:repeat(4,1fr); }
}
@media (min-width:640px) and (max-width:899px){
  .grid--3,.grid--4{ grid-template-columns:repeat(2,1fr); }
}

/* ---------- Type helpers ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--ff-body);
  font-size:.72rem; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted);
  margin:0 0 18px;
}
.eyebrow::before{
  content:""; width:26px; height:2px; border-radius:2px;
  background:var(--grad);
}
.grad-text{
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.lead{
  font-size:clamp(1rem, 2.4vw, 1.15rem);
  color:var(--muted);
  max-width:62ch;
}
.section-head{ max-width:720px; margin-bottom:clamp(32px,5vw,52px); }
.section-head--center{ margin-inline:auto; text-align:center; }
.section-head--center .eyebrow{ justify-content:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:14px 26px;
  border-radius:999px;
  border:1px solid transparent;
  font-family:var(--ff-body);
  font-weight:600; font-size:.95rem;
  line-height:1;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex:none; }
.btn--primary{
  background:var(--grad);
  background-size:180% 100%;
  color:#fff;
  box-shadow:0 10px 30px rgba(255,47,160,.28);
}
.btn--primary:hover{ transform:translateY(-2px); background-position:100% 0; box-shadow:0 14px 36px rgba(0,182,255,.32); }
.btn--ghost{
  background:rgba(255,255,255,.04);
  border-color:var(--line);
  color:var(--white);
}
.btn--ghost:hover{ background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.25); transform:translateY(-2px); }
.btn--lg{ padding:17px 34px; font-size:1rem; }
.btn--block{ width:100%; }

.btn-row{ display:flex; flex-wrap:wrap; gap:12px; }

/* ---------- Header ---------- */
.header{
  position:sticky; top:0; z-index:100;
  background:rgba(5,5,8,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line-soft);
  transition:background .25s ease, border-color .25s ease;
}
.header.is-scrolled{ background:rgba(5,5,8,.94); border-color:var(--line); }
.nav{
  height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.brand{ display:flex; align-items:center; gap:11px; min-width:0; }
.brand img{ width:40px; height:40px; border-radius:50%; flex:none; }
.brand-name{
  font-family:var(--ff-head); font-weight:700; text-transform:uppercase;
  font-size:1.15rem; line-height:1; color:var(--white); letter-spacing:.02em;
}
.brand-sub{
  display:block;
  font-family:var(--ff-body); font-size:.6rem; font-weight:600;
  letter-spacing:.22em; color:var(--muted); text-transform:uppercase; margin-top:3px;
}

.nav-links{ display:none; align-items:center; gap:6px; }
.nav-links a{
  padding:9px 14px; border-radius:999px;
  font-size:.92rem; font-weight:500; color:var(--muted);
  transition:color .18s ease, background .18s ease;
}
.nav-links a:hover{ color:var(--white); background:rgba(255,255,255,.06); }
.nav-links a.is-active{ color:var(--white); }
.nav-links a.is-active::after{
  content:""; display:block; height:2px; width:22px; margin:5px auto -4px;
  border-radius:2px; background:var(--grad);
}
.nav-cta{ display:none; }

.burger{
  display:inline-flex; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; padding:0 11px;
  background:rgba(255,255,255,.05); border:1px solid var(--line);
  border-radius:12px; cursor:pointer;
}
.burger span{
  display:block; height:2px; width:100%; border-radius:2px; background:var(--white);
  transition:transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  display:block;
  max-height:0; overflow:hidden;
  border-top:0 solid var(--line);
  transition:max-height .35s cubic-bezier(.4,0,.2,1), border-width .35s;
  background:var(--ink-2);
}
.mobile-menu.is-open{ max-height:520px; border-top-width:1px; }
.mobile-menu ul{ padding:10px 20px 22px; }
.mobile-menu li + li{ border-top:1px solid var(--line-soft); }
.mobile-menu a{
  display:flex; align-items:center; justify-content:space-between;
  padding:15px 2px; font-size:1.05rem; font-weight:500; color:var(--text);
}
.mobile-menu a.is-active{ color:var(--cyan); }
.mobile-menu a.btn{
  display:inline-flex; justify-content:center;
  padding:15px 26px; margin-top:16px; font-size:.98rem; color:#fff;
}

@media (min-width:960px){
  .nav-links{ display:flex; }
  .nav-cta{ display:inline-flex; }
  .burger{ display:none; }
  .mobile-menu{ display:none; }
}

/* ---------- Decorative backgrounds ---------- */
.glow{
  position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0;
}
.glow::before,.glow::after{
  content:""; position:absolute; border-radius:50%;
  filter:blur(90px); opacity:.4;
}
.glow::before{
  width:min(60vw,540px); aspect-ratio:1; top:-16%; left:-14%;
  background:radial-gradient(circle, rgba(0,182,255,.55), transparent 68%);
}
.glow::after{
  width:min(62vw,560px); aspect-ratio:1; bottom:-22%; right:-16%;
  background:radial-gradient(circle, rgba(255,47,160,.5), transparent 68%);
}
.halftone{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size:16px 16px;
  -webkit-mask-image:linear-gradient(180deg, transparent, #000 35%, transparent);
  mask-image:linear-gradient(180deg, transparent, #000 35%, transparent);
  opacity:.5;
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:clamp(56px, 11vw, 118px) 0 clamp(56px, 9vw, 96px);
  overflow:hidden;
  border-bottom:1px solid var(--line-soft);
}
.hero .container{ position:relative; z-index:2; }
.hero-inner{ display:grid; gap:clamp(38px,6vw,56px); align-items:center; }
@media (min-width:980px){
  .hero-inner{ grid-template-columns:1.08fr .92fr; }
}
.hero h1{ margin-bottom:22px; }
.hero h1 .line{ display:block; }
.hero .lead{ font-size:clamp(1.02rem, 2.6vw, 1.2rem); margin-bottom:30px; }

.badge{
  display:inline-flex; align-items:center; gap:9px;
  padding:7px 15px 7px 9px;
  border:1px solid var(--line); border-radius:999px;
  background:rgba(255,255,255,.04);
  font-size:.78rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  color:var(--text); margin-bottom:26px;
}
.badge .dot{
  width:8px; height:8px; border-radius:50%; background:#25d366;
  box-shadow:0 0 0 4px rgba(37,211,102,.18);
}

.hero-visual{ position:relative; display:grid; place-items:center; }
.hero-disc{
  position:relative;
  width:min(78vw, 400px); aspect-ratio:1;
  display:grid; place-items:center;
  border-radius:50%;
  background:radial-gradient(circle at 50% 45%, rgba(255,255,255,.09), rgba(255,255,255,0) 62%);
}
.hero-disc::before{
  content:""; position:absolute; inset:-6%;
  border-radius:50%;
  background:conic-gradient(from 200deg, var(--cyan), var(--magenta), var(--yellow), var(--blue), var(--cyan));
  filter:blur(26px); opacity:.45;
  animation:spin 22s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion:reduce){ .hero-disc::before{ animation:none; } }
.hero-disc img{
  position:relative; z-index:2;
  width:88%; border-radius:50%;
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}

.hero-stats{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:10px; margin-top:36px; padding-top:28px;
  border-top:1px solid var(--line-soft);
}
.hero-stats .num{
  font-family:var(--ff-head); font-size:clamp(1.6rem,5vw,2.1rem);
  font-weight:700; line-height:1; color:var(--white);
}
.hero-stats .lbl{
  font-size:.74rem; color:var(--muted); letter-spacing:.06em;
  text-transform:uppercase; margin-top:6px; display:block; line-height:1.35;
}

/* ---------- Marquee / trust bar ---------- */
.ticker{
  border-block:1px solid var(--line-soft);
  background:var(--ink-2);
  overflow:hidden;
  padding:14px 0;
}
.ticker-track{
  display:flex; gap:44px; width:max-content;
  animation:slide 28s linear infinite;
}
.ticker-track span{
  display:inline-flex; align-items:center; gap:11px;
  font-family:var(--ff-head); text-transform:uppercase;
  font-size:1.05rem; font-weight:600; letter-spacing:.06em;
  color:var(--muted); white-space:nowrap;
}
.ticker-track span::before{
  content:""; width:7px; height:7px; border-radius:50%; background:var(--magenta); flex:none;
}
@keyframes slide{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
@media (prefers-reduced-motion:reduce){ .ticker-track{ animation:none; } }

/* ---------- Cards ---------- */
.card{
  position:relative;
  background:var(--ink-2);
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  padding:26px 24px 28px;
  transition:transform .22s ease, border-color .22s ease, background .22s ease;
  overflow:hidden;
}
.card::after{
  content:""; position:absolute; inset:0 0 auto 0; height:2px;
  background:var(--grad); transform:scaleX(0); transform-origin:left;
  transition:transform .35s ease;
}
.card:hover{ transform:translateY(-4px); border-color:rgba(255,255,255,.16); background:var(--ink-3); }
.card:hover::after{ transform:scaleX(1); }
.card h3{ margin-bottom:10px; }
.card p{ color:var(--muted); font-size:.95rem; margin:0; }

.card-icon{
  position:relative;
  width:54px; height:54px; border-radius:17px;
  display:grid; place-items:center; margin-bottom:20px;
  color:var(--ic, var(--cyan));
  background:
    linear-gradient(var(--ink-3), var(--ink-3)) padding-box,
    linear-gradient(145deg, var(--ic, var(--cyan)), rgba(255,255,255,.06) 62%) border-box;
  border:1.5px solid transparent;
  box-shadow:0 10px 26px -14px var(--ic, var(--cyan));
  transition:transform .28s cubic-bezier(.34,1.4,.64,1), box-shadow .28s ease;
}
.card-icon::before{
  content:""; position:absolute; inset:1px; border-radius:15px;
  background:radial-gradient(circle at 32% 24%, currentColor, transparent 72%);
  opacity:.16; pointer-events:none;
}
.card-icon svg{
  position:relative; width:26px; height:26px;
  stroke-width:1.6; overflow:visible;
}
.card:hover .card-icon{
  transform:translateY(-2px) rotate(-3deg) scale(1.05);
  box-shadow:0 16px 34px -14px var(--ic, var(--cyan));
}

/* Akcentna boja po redoslijedu kartice — prati palete iz logotipa */
.grid > .card:nth-child(6n+1) .card-icon{ --ic:#00b6ff; }
.grid > .card:nth-child(6n+2) .card-icon{ --ic:#ff2fa0; }
.grid > .card:nth-child(6n+3) .card-icon{ --ic:#2f6bff; }
.grid > .card:nth-child(6n+4) .card-icon{ --ic:#ffd400; }
.grid > .card:nth-child(6n+5) .card-icon{ --ic:#ff5cc8; }
.grid > .card:nth-child(6n+6) .card-icon{ --ic:#6f8bff; }

/* Faza — mala oznaka iznad naslova */
.phase{
  display:inline-block; margin-bottom:12px;
  font-size:.68rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  padding:5px 11px; border-radius:999px;
  border:1px solid var(--line); color:var(--muted);
  background:rgba(255,255,255,.03);
}

/* ---------- Timeline (Kako radimo) ---------- */
.timeline{
  list-style:none; margin:0; padding:0;
  position:relative;
  display:grid; gap:0;
}
.tl-item{
  position:relative;
  display:grid; grid-template-columns:auto 1fr; gap:20px;
  padding:0 0 34px 0;
}
.tl-item:last-child{ padding-bottom:0; }
.tl-num{
  position:relative; z-index:2;
  width:56px; height:56px; flex:none;
  display:grid; place-items:center;
  border-radius:50%;
  font-family:var(--ff-head); font-size:1.35rem; font-weight:700; line-height:1;
  color:var(--white);
  background:linear-gradient(var(--ink-2), var(--ink-2)) padding-box,
             var(--grad) border-box;
  border:2px solid transparent;
}
/* linija koja povezuje korake */
.tl-item::before{
  content:""; position:absolute;
  left:27px; top:56px; bottom:-2px; width:2px;
  background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
}
.tl-item:last-child::before{ display:none; }

.tl-body{
  padding:2px 0 0;
  border-bottom:1px solid var(--line-soft);
  padding-bottom:30px;
}
.tl-item:last-child .tl-body{ border-bottom:0; padding-bottom:0; }
.tl-body h3{ margin-bottom:6px; }
.tl-body p{ color:var(--muted); font-size:.97rem; max-width:68ch; }
.tl-when{
  font-size:.76rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--cyan); margin-bottom:14px;
}
.tl-note{
  margin-top:14px; padding:13px 16px;
  border-left:2px solid var(--magenta);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  background:rgba(255,255,255,.035);
  font-size:.92rem;
}
.tl-note strong{ color:var(--white); }

@media (min-width:760px){
  .tl-item{ grid-template-columns:76px 1fr; gap:28px; padding-bottom:40px; }
  .tl-num{ width:64px; height:64px; font-size:1.55rem; }
  .tl-item::before{ left:31px; top:64px; }
  .tl-body{ padding-bottom:36px; }
}

.card--flat{ background:transparent; border-color:var(--line); }
.card--flat:hover{ background:rgba(255,255,255,.03); }

.tag-list{ display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.tag{
  font-size:.76rem; font-weight:600; letter-spacing:.04em;
  padding:6px 12px; border-radius:999px;
  border:1px solid var(--line); color:var(--muted);
  background:rgba(255,255,255,.03);
}

/* ---------- Steps ---------- */
.steps{ display:grid; gap:16px; counter-reset:step; }
@media (min-width:820px){ .steps{ grid-template-columns:repeat(3,1fr); } }
.step{
  position:relative;
  padding:30px 24px 28px;
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}
.step .n{
  font-family:var(--ff-head); font-size:3.1rem; font-weight:700; line-height:.9;
  background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
  display:block; margin-bottom:14px;
}
.step h3{ font-size:1.28rem; margin-bottom:8px; }
.step p{ color:var(--muted); font-size:.95rem; margin:0; }

/* ---------- Feature list ---------- */
.checks{ display:grid; gap:14px; }
.checks li{
  display:flex; gap:13px; align-items:flex-start;
  font-size:.98rem; color:var(--text);
}
.checks svg{
  width:22px; height:22px; flex:none; margin-top:1px; color:var(--cyan);
}
.checks strong{ color:var(--white); font-weight:600; }
.checks span{ color:var(--muted); }

/* ---------- Split ---------- */
.split{ display:grid; gap:clamp(32px,5vw,60px); align-items:center; }
@media (min-width:900px){ .split{ grid-template-columns:1fr 1fr; } }
.split--visual-first .split-visual{ order:-1; }
@media (max-width:899px){ .split-visual{ order:-1; } }

.frame{
  position:relative; border-radius:var(--radius-lg);
  padding:clamp(24px,4vw,40px);
  background:var(--ink-2);
  border:1px solid var(--line-soft);
  overflow:hidden;
}
.frame::before{
  content:""; position:absolute; inset:-40% -20% auto auto;
  width:70%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, rgba(0,182,255,.22), transparent 70%);
  filter:blur(40px);
}
.frame > *{ position:relative; }

/* ---------- Price / package cards ---------- */
.pkg{
  display:flex; flex-direction:column;
  background:var(--ink-2);
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  padding:28px 24px;
}
.pkg--featured{
  border-color:rgba(255,47,160,.45);
  background:linear-gradient(180deg, rgba(255,47,160,.08), rgba(255,255,255,.01));
}
.pkg .pkg-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:6px; }
.pkg h3{ margin:0; font-size:1.35rem; }
.pkg .pill{
  font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:5px 11px; border-radius:999px; background:var(--grad); color:#fff; flex:none;
}
.pkg > p{ color:var(--muted); font-size:.94rem; }
.pkg ul{ margin:18px 0 24px; display:grid; gap:11px; }
.pkg li{ display:flex; gap:11px; font-size:.93rem; color:var(--muted); }
.pkg li svg{ width:19px; height:19px; flex:none; color:var(--magenta); margin-top:2px; }
.pkg .btn{ margin-top:auto; }

/* ---------- CTA band ---------- */
.cta-band{
  position:relative; overflow:hidden;
  border-radius:var(--radius-lg);
  padding:clamp(38px,6vw,64px) clamp(24px,4vw,56px);
  background:linear-gradient(135deg, rgba(0,182,255,.16), rgba(255,47,160,.16) 50%, rgba(47,107,255,.16));
  border:1px solid var(--line);
  text-align:center;
}
.cta-band .halftone{ opacity:.35; -webkit-mask-image:radial-gradient(circle at 50% 50%, #000, transparent 72%); mask-image:radial-gradient(circle at 50% 50%, #000, transparent 72%); }
.cta-band > *{ position:relative; z-index:2; }
.cta-band h2{ margin-bottom:14px; }
.cta-band p{ color:var(--text); max-width:56ch; margin-inline:auto; margin-bottom:28px; }
.cta-band .btn-row{ justify-content:center; }

/* ---------- Contact ---------- */
.contact-card{
  display:flex; align-items:center; gap:16px;
  padding:20px 22px;
  border:1px solid var(--line-soft); border-radius:var(--radius);
  background:var(--ink-2);
  transition:border-color .2s ease, transform .2s ease, background .2s ease;
}
a.contact-card:hover{ border-color:rgba(255,255,255,.2); transform:translateY(-3px); background:var(--ink-3); }
.contact-card .ci{
  width:46px; height:46px; border-radius:13px; flex:none;
  display:grid; place-items:center;
  background:var(--grad-soft); border:1px solid var(--line); color:var(--white);
}
.contact-card .ci svg{ width:22px; height:22px; }
.contact-card > span:last-child{ display:block; min-width:0; }
.contact-card .k{
  display:block; font-size:.72rem; line-height:1.4;
  text-transform:uppercase; letter-spacing:.14em; color:var(--muted); margin-bottom:3px;
}
.contact-card .v{ display:block; font-weight:600; color:var(--white); font-size:1.02rem; word-break:break-word; }

/* ---------- Form ---------- */
.form{ display:grid; gap:16px; }
.form-row{ display:grid; gap:16px; }
@media (min-width:620px){ .form-row{ grid-template-columns:1fr 1fr; } }
.field{ display:grid; gap:7px; }
.field label{
  font-size:.78rem; font-weight:600; letter-spacing:.1em;
  text-transform:uppercase; color:var(--muted);
}
.field input,
.field select,
.field textarea{
  width:100%;
  padding:13px 15px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  color:var(--white);
  font-family:var(--ff-body); font-size:1rem;
  transition:border-color .18s ease, background .18s ease;
  appearance:none;
}
.field textarea{ min-height:130px; resize:vertical; }
.field select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa0b0' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; background-size:18px;
  padding-right:42px;
}
.field select option{ background:var(--ink-2); color:var(--white); }
.field input::placeholder,.field textarea::placeholder{ color:#6b7080; }
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--cyan); background:rgba(255,255,255,.07);
}
.form-note{ font-size:.85rem; color:var(--muted); }

/* ---------- FAQ ---------- */
.faq{ border-top:1px solid var(--line-soft); }
.faq details{ border-bottom:1px solid var(--line-soft); }
.faq summary{
  cursor:pointer; list-style:none;
  padding:20px 44px 20px 0; position:relative;
  font-weight:600; color:var(--white); font-size:1.02rem;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:""; position:absolute; right:8px; top:50%;
  width:11px; height:11px; margin-top:-7px;
  border-right:2px solid var(--muted); border-bottom:2px solid var(--muted);
  transform:rotate(45deg); transition:transform .25s ease, border-color .25s;
}
.faq details[open] summary::after{ transform:rotate(-135deg); margin-top:-3px; border-color:var(--cyan); }
.faq details p{ color:var(--muted); padding:0 8px 22px 0; font-size:.96rem; margin:0; }

/* ---------- Page hero (subpages) ---------- */
.page-hero{
  position:relative; overflow:hidden;
  padding:clamp(52px,8vw,84px) 0 clamp(40px,6vw,64px);
  border-bottom:1px solid var(--line-soft);
}
.page-hero .container{ position:relative; z-index:2; }
.crumbs{ font-size:.8rem; color:var(--muted); margin-bottom:16px; letter-spacing:.04em; }
.crumbs a:hover{ color:var(--white); }
.crumbs span{ opacity:.5; margin-inline:7px; }

/* ---------- Footer ---------- */
.footer{
  background:var(--ink-2);
  border-top:1px solid var(--line-soft);
  padding:clamp(48px,7vw,72px) 0 28px;
}
.footer-grid{ display:grid; gap:34px; }
@media (min-width:760px){ .footer-grid{ grid-template-columns:1.5fr 1fr 1fr; } }
.footer .brand{ margin-bottom:16px; }
.footer p{ color:var(--muted); font-size:.94rem; max-width:38ch; }
.footer h4{
  font-family:var(--ff-body); font-size:.76rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase; color:var(--white); margin:0 0 16px;
}
.footer-links{ display:grid; gap:11px; }
.footer-links a{ color:var(--muted); font-size:.95rem; transition:color .18s ease; }
.footer-links a:hover{ color:var(--white); }
.socials{ display:flex; gap:10px; margin-top:20px; }
.socials a{
  width:42px; height:42px; border-radius:12px;
  display:grid; place-items:center;
  border:1px solid var(--line); background:rgba(255,255,255,.03);
  color:var(--text); transition:transform .2s, background .2s, color .2s, border-color .2s;
}
.socials a:hover{ transform:translateY(-3px); background:var(--grad); color:#fff; border-color:transparent; }
.socials svg{ width:19px; height:19px; }
.footer-bottom{
  margin-top:40px; padding-top:22px;
  border-top:1px solid var(--line-soft);
  display:flex; flex-wrap:wrap; gap:8px 18px; justify-content:space-between;
  font-size:.84rem; color:var(--muted);
}
.footer-rule{ height:3px; background:var(--grad); }

/* ---------- Floating WhatsApp ---------- */
.fab{
  position:fixed; right:16px; bottom:16px; z-index:90;
  width:56px; height:56px; border-radius:50%;
  display:grid; place-items:center;
  background:var(--grad); color:#fff;
  box-shadow:0 12px 32px rgba(255,47,160,.4);
  transition:transform .2s ease, box-shadow .2s ease;
}
.fab:hover{ transform:scale(1.07); box-shadow:0 16px 40px rgba(0,182,255,.45); }
.fab svg{ width:26px; height:26px; }
@media (min-width:960px){ .fab{ right:26px; bottom:26px; } }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}
