/* ═══════════════════════════════════════════════
   Neveser Gümrükleme Ltd — style.css
   Brand: deep navy + white/silver + heritage gold
   Light, professional, corporate layout (since 1988)
   ═══════════════════════════════════════════════ */
:root {
  --navy:      #143a5e;   /* brand navy (logo) */
  --navy-deep: #0e2c49;
  --navy-2:    #1d4c7a;
  --steel:     #2f6ea6;   /* interactive accent */
  --steel-2:   #4c8cc6;
  --gold:      #b58a3e;   /* heritage micro-accent */
  --gold-2:    #cba861;

  --paper: #ffffff;
  --mist:  #f2f6fb;       /* alt section bg */
  --mist-2:#e8eef6;
  --line:  #dde5ef;

  --ink:   #16293b;       /* body text */
  --head:  #10263c;       /* headings */
  --muted: #5c7085;
  --inv:   #eef3f9;       /* text on navy */
  --inv-soft: #a9bcd0;

  --wa: #25d366;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(16,38,60,.06);
  --shadow-md: 0 14px 40px rgba(16,38,60,.10);
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--navy); color: #fff; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem; border-radius: 10px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.32); }
.btn--wa:hover { box-shadow: 0 12px 30px rgba(37,211,102,.45); }
.btn--solid { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; box-shadow: var(--shadow-sm); }
.btn--solid:hover { box-shadow: 0 12px 28px rgba(20,58,94,.3); }
.btn--ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.on-light .btn--ghost, .btn--ghost.on-light { color: var(--navy); }

/* ═══════════ NAV ═══════════ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .4s, box-shadow .4s, backdrop-filter .4s; }
.nav.is-scrolled { background: rgba(14,44,73,.94); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.nav__inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; padding: .85rem 1.5rem; color: var(--inv); }

/* Logo lockup */
.nav__brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav__mark { flex: none; width: 44px; height: 44px; border-radius: 10px; overflow: hidden; position: relative; box-shadow: 0 0 0 1px rgba(255,255,255,.1); }
.nav__mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(2.7); transform-origin: 50% 29%; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__name { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; letter-spacing: .16em; color: #fff; }
.nav__name span { font-weight: 400; letter-spacing: .18em; color: var(--inv-soft); }
.nav__since { font-family: var(--font-body); font-weight: 600; font-size: .62rem; text-transform: uppercase; color: var(--gold-2); margin-top: .3rem; letter-spacing: .22em; }

.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a { text-decoration: none; font-size: .9rem; font-weight: 500; white-space: nowrap; color: var(--inv-soft); transition: color .25s; }
.nav__links a:hover { color: #fff; }
.nav__lang { display: inline-grid; place-items: center; min-width: 38px; height: 34px; padding: 0 .5rem; border: 1px solid rgba(255,255,255,.25); border-radius: 8px; font-size: .8rem; font-weight: 700; letter-spacing: .06em; color: var(--inv); text-decoration: none; transition: background .25s, border-color .25s, color .25s; }
.nav__lang:hover { background: rgba(255,255,255,.12); border-color: var(--gold-2); color: var(--gold-2); }
.nav__cta { display: inline-flex; align-items: center; gap: .45rem; background: var(--wa); color: #fff; padding: .6rem 1.15rem; border-radius: 9px; font-size: .85rem; font-weight: 600; text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s; }
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.4); }
.nav__burger { display: none; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(130% 100% at 78% -10%, var(--navy-2) 0%, var(--navy) 46%, var(--navy-deep) 100%);
  color: var(--inv); overflow: hidden; padding: 8rem 1.5rem 5rem;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.hero__overlay { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(14,44,73,.80) 0%, rgba(14,44,73,.86) 55%, rgba(14,44,73,.94) 100%),
  radial-gradient(120% 90% at 72% 0%, rgba(29,76,122,.45), transparent 60%); }
.hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1.4px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: radial-gradient(75% 65% at 50% 38%, #000 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 65% at 50% 38%, #000 25%, transparent 100%);
}
.hero__glow { position: absolute; width: 680px; height: 680px; right: -160px; top: -200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(76,140,198,.28), transparent 65%); animation: glowFloat 10s ease-in-out infinite alternate; }
@keyframes glowFloat { from { transform: translate(0,0) scale(1);} to { transform: translate(-50px,44px) scale(1.12);} }
.hero__inner { position: relative; text-align: center; max-width: 920px; }
.hero__badge { display: inline-flex; align-items: center; gap: .6rem; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-2); border: 1px solid rgba(203,168,97,.4); background: rgba(203,168,97,.07); padding: .5rem 1.15rem; border-radius: 999px; margin-bottom: 1.9rem; }
.hero__badge b { color: #fff; font-weight: 700; }
.hero__title { font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 4.9rem); font-weight: 700; line-height: 1.06; letter-spacing: -.025em; }
.hero__title em { font-style: normal; color: var(--gold-2); }
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: block; transform: translateY(110%); animation: lineUp 1s var(--ease) forwards; }
.hero__line:nth-child(2) > span { animation-delay: .16s; }
@keyframes lineUp { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero__line > span { transform: none; animation: none; } }
.hero__sub { margin: 1.7rem auto 2.3rem; max-width: 600px; color: #cdd9e6; font-size: 1.1rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__trust { display: flex; justify-content: center; gap: 3.4rem; flex-wrap: wrap; margin-top: 4rem; padding-top: 2.3rem; border-top: 1px solid rgba(255,255,255,.12); }
.trust { text-align: center; }
.trust__num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 600; color: #fff; }
.trust__num em { font-style: normal; color: var(--gold-2); }
.trust__label { display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--inv-soft); margin-top: .3rem; }
.hero__scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.3); border-radius: 999px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: var(--gold-2); animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint { 0%,100%{transform:translateY(0);opacity:1;} 60%{transform:translateY(14px);opacity:0;} }

/* ═══════════ TRUST BAR (logos/keywords) ═══════════ */
.badgebar { background: var(--navy-deep); color: var(--inv-soft); }
.badgebar__inner { max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem; padding: 1.1rem 1.5rem; font-size: .86rem; font-weight: 500; }
.badgebar__inner span { display: inline-flex; align-items: center; gap: .5rem; }
.badgebar__inner svg { color: var(--gold-2); }

/* ═══════════ SECTIONS ═══════════ */
.section { padding: 6.5rem 1.5rem; max-width: 1240px; margin: 0 auto; }
.section--mist { max-width: none; background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--mist > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.section__head { text-align: center; margin-bottom: 3.4rem; }
.section__eyebrow { font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; color: var(--steel); font-weight: 700; margin-bottom: .9rem; }
.section__title { font-family: var(--font-display); font-size: clamp(1.9rem, 4.2vw, 2.9rem); font-weight: 700; line-height: 1.14; letter-spacing: -.02em; color: var(--head); }
.section__title em { font-style: normal; color: var(--steel); }
.section__sub { margin-top: 1rem; color: var(--muted); max-width: 620px; margin-inline: auto; }

/* ═══════════ INTRO (SEO copy) ═══════════ */
.intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.intro__body p { color: var(--ink); margin-bottom: 1rem; font-size: 1.02rem; }
.intro__body p:first-of-type { font-size: 1.15rem; color: var(--head); }
.intro__kw { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.intro__kw span { font-size: .82rem; font-weight: 600; color: var(--navy); background: var(--mist-2); border: 1px solid var(--line); padding: .35rem .8rem; border-radius: 999px; }
.intro__card { background: var(--navy); color: var(--inv); border-radius: 18px; padding: 0; overflow: hidden; box-shadow: var(--shadow-md); }
.intro__card-img { width: 100%; height: 190px; object-fit: cover; }
.intro__card-body { padding: 1.9rem 2.1rem 2.1rem; }
.intro__card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.01em; color: #fff; margin-bottom: 1.2rem; }
.intro__list { list-style: none; display: grid; gap: .85rem; }
.intro__list li { position: relative; padding-left: 1.9rem; font-size: .96rem; color: var(--inv-soft); }
.intro__list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 1.3rem; height: 1.3rem; color: var(--gold-2); font-weight: 700; }
.intro__list b { color: #fff; font-weight: 600; }

/* ═══════════ SERVICES ═══════════ */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.service { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.1rem 1.9rem 1.9rem; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; overflow: hidden; }
.service::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: linear-gradient(90deg, var(--steel), var(--steel-2)); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service:hover::after { transform: scaleX(1); }
.service__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 11px; background: var(--mist); color: var(--navy); margin-bottom: 1rem; }
.service__icon svg { width: 26px; height: 26px; }
.service__no { position: absolute; top: 1.6rem; right: 1.7rem; font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: .05em; color: var(--mist-2); }
.service h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; margin: 0 0 .6rem; color: var(--head); }
.service p { font-size: .93rem; color: var(--muted); }

/* ═══════════ CTA BAND ═══════════ */
.ctaband { position: relative; overflow: hidden; }
.ctaband__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ctaband__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,34,57,.95) 0%, rgba(14,44,73,.85) 42%, rgba(14,44,73,.55) 100%); }
.ctaband__inner { position: relative; max-width: 1240px; margin: 0 auto; padding: 5.5rem 1.5rem; color: var(--inv); }
.ctaband__box { max-width: 640px; }
.ctaband .section__eyebrow { color: var(--gold-2); }
.ctaband h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.6vw, 2.7rem); letter-spacing: -.02em; line-height: 1.15; color: #fff; margin-bottom: 1rem; }
.ctaband p { color: #cdd9e6; margin-bottom: 1.7rem; font-size: 1.06rem; }
.ctaband__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════ CALCULATOR ═══════════ */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.calc__form { display: grid; gap: 1.15rem; align-content: start; padding: 2.4rem; }
.calc__field label { display: block; font-size: .76rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--navy); margin-bottom: .45rem; }
.calc__row { display: grid; grid-template-columns: 1fr 110px; gap: .6rem; }
.calc input, .calc select { width: 100%; background: var(--mist); border: 1.5px solid var(--line); border-radius: 10px; color: var(--ink); font: inherit; font-size: 1rem; padding: .8rem 1rem; transition: border-color .25s, box-shadow .25s, background .25s; }
.calc input:focus, .calc select:focus { outline: none; background: #fff; border-color: var(--steel); box-shadow: 0 0 0 3px rgba(47,110,166,.15); }
.calc__submit { justify-content: center; margin-top: .4rem; }
.calc__panel { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: var(--inv); padding: 2.4rem; display: flex; flex-direction: column; }
.calc__placeholder { margin: auto; text-align: center; color: var(--inv-soft); }
.calc__placeholder svg { width: 54px; height: 54px; color: var(--steel-2); margin: 0 auto 1rem; opacity: .8; }
.calc__result { animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } }
.calc__result h3 { font-family: var(--font-display); font-weight: 600; color: var(--gold-2); margin-bottom: 1.1rem; font-size: 1.3rem; }
.calc__result ul { list-style: none; display: grid; gap: .55rem; margin-bottom: 1rem; }
.calc__result li { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; color: var(--inv-soft); padding-bottom: .55rem; border-bottom: 1px dashed rgba(255,255,255,.14); }
.calc__result li strong { color: #fff; font-variant-numeric: tabular-nums; }
.calc__total, .calc__grand { display: flex; justify-content: space-between; align-items: baseline; padding: .65rem 0; }
.calc__total strong { font-size: 1.5rem; color: var(--gold-2); font-family: var(--font-display); }
.calc__grand { border-top: 1px solid rgba(255,255,255,.18); }
.calc__grand strong { font-size: 1.15rem; color: #fff; }
.calc__wa { margin-top: 1.1rem; }
.calc__disclaimer { max-width: 860px; margin: 1.8rem auto 0; font-size: .84rem; color: var(--muted); background: var(--mist); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 10px; padding: 1.05rem 1.35rem; }
.calc__disclaimer a { color: var(--steel); font-weight: 600; }

/* ═══════════ STEPS ═══════════ */
.steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.step { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); }
.step__no { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 1.1rem; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--head); margin-bottom: .55rem; }
.step p { font-size: .9rem; color: var(--muted); }

.docs { margin-top: 3rem; background: var(--navy); color: var(--inv); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); display: grid; grid-template-columns: 0.95fr 1.05fr; }
.docs__media { position: relative; min-height: 100%; }
.docs__media img { width: 100%; height: 100%; object-fit: cover; }
.docs__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--navy)); }
.docs__body { padding: 2.4rem; }
.docs h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--gold-2); margin-bottom: 1.2rem; }
.docs__list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: .7rem 2rem; }
.docs__list li { position: relative; padding-left: 1.6rem; font-size: .95rem; color: var(--inv-soft); }
.docs__list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-2); font-weight: 700; }

/* ═══════════ LAWS ═══════════ */
.laws { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.law { display: block; text-decoration: none; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.law:hover { transform: translateY(-5px); border-color: var(--steel); box-shadow: var(--shadow-md); }
.law__tag { display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--navy); padding: .28rem .7rem; border-radius: 6px; margin-bottom: .9rem; }
.law h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; color: var(--head); margin-bottom: .55rem; line-height: 1.3; }
.law p { font-size: .88rem; color: var(--muted); }
.laws__note { text-align: center; margin-top: 2.4rem; font-size: .84rem; color: var(--muted); font-style: italic; }

/* ═══════════ FAQ ═══════════ */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: .8rem; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .3s; }
.faq__item[open] { border-color: var(--steel); }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.2rem 3rem 1.2rem 1.5rem; font-weight: 600; font-size: 1rem; color: var(--head); position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 1.4rem; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: 1.5rem; color: var(--steel); transition: transform .3s var(--ease); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 1.5rem 1.3rem; font-size: .93rem; color: var(--muted); }

/* ═══════════ CONTACT ═══════════ */
.section--contact { padding-bottom: 5rem; }
.contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.contact__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.1rem 1.9rem; box-shadow: var(--shadow-sm); }
.contact__card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--head); margin-bottom: 1rem; padding-bottom: .7rem; border-bottom: 2px solid var(--gold); display: inline-block; }
.contact__card p { color: var(--muted); font-size: .95rem; }
.contact__link { display: inline-block; margin-top: 1rem; color: var(--steel); font-weight: 600; text-decoration: none; font-size: .9rem; }
.contact__link:hover { text-decoration: underline; }
.contact__phone a { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--head); text-decoration: none; display: inline-block; margin-bottom: 1.2rem; }
.hours { width: 100%; border-collapse: collapse; font-size: .9rem; }
.hours td { padding: .4rem 0; color: var(--muted); }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 500; }
.hours--closed td, .hours--closed td:last-child { color: #a7b3c0; font-weight: 400; }
.hours tr.is-today td { color: var(--head); font-weight: 700; }
.hours tr.is-today td:first-child::after { content: " ·"; color: var(--gold); }
.hours__status { margin-top: 1rem; font-size: .85rem; font-weight: 600; padding: .5rem .9rem; border-radius: 8px; display: inline-block; }
.hours__status.open { background: rgba(37,211,102,.12); color: #138a45; }
.hours__status.closed { background: rgba(214,69,69,.1); color: #b03535; }
.map-wrap { margin-top: 2.4rem; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; width: 100%; height: 340px; border: 0; filter: grayscale(.2) contrast(1.02); }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--navy-deep); color: var(--inv-soft); padding: 3.6rem 1.5rem 2rem; }
.footer__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.4rem; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer__logo { width: 116px; height: 116px; border-radius: 14px; margin-bottom: 1rem; box-shadow: var(--shadow-sm); }
.footer__brand { font-family: var(--font-body); font-weight: 700; letter-spacing: .14em; font-size: 1.1rem; color: #fff; }
.footer__brand span { font-weight: 400; color: var(--inv-soft); }
.footer__since { font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: var(--gold-2); font-size: .68rem; margin-top: .3rem; }
.footer__tag { font-size: .88rem; margin-top: .9rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col a, .footer__col p { display: block; text-decoration: none; font-size: .89rem; margin-bottom: .55rem; transition: color .25s; }
.footer__col a:hover { color: var(--gold-2); }
.footer__copy { max-width: 1240px; margin: 1.6rem auto 0; font-size: .8rem; text-align: center; }
.footer__copy a { color: var(--inv-soft); }

/* ═══════════ WHATSAPP FLOAT ═══════════ */
.wa-float { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90; width: 60px; height: 60px; display: grid; place-items: center; background: var(--wa); color: #fff; border-radius: 50%; box-shadow: 0 10px 28px rgba(37,211,102,.45); transition: transform .3s var(--ease); animation: waPulse 2.6s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); animation-play-state: paused; }
@keyframes waPulse { 0%,100%{box-shadow:0 10px 28px rgba(37,211,102,.45),0 0 0 0 rgba(37,211,102,.4);} 55%{box-shadow:0 10px 28px rgba(37,211,102,.45),0 0 0 16px rgba(37,211,102,0);} }
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 940px) {
  .calc { grid-template-columns: 1fr; }
  .intro { grid-template-columns: 1fr; gap: 2rem; }
  .docs { grid-template-columns: 1fr; }
  .docs__media { min-height: 220px; }
  .docs__media::after { background: linear-gradient(0deg, var(--navy), transparent 55%); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links { position: fixed; inset: 0; z-index: -1; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; background: rgba(14,44,73,.98); backdrop-filter: blur(10px); opacity: 0; pointer-events: none; transition: opacity .35s; }
  .nav__links a { font-size: 1.3rem; color: #fff; }
  .nav.is-open .nav__links { opacity: 1; pointer-events: auto; z-index: 99; }
  .nav__cta { display: none; }
  .nav__burger { display: grid; gap: 5px; margin-left: auto; background: none; border: none; cursor: pointer; padding: .5rem; z-index: 101; }
  .nav__burger span { width: 24px; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .3s; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero__trust { gap: 2rem; }
  .section { padding: 4.5rem 1.25rem; }
  .footer__inner { grid-template-columns: 1fr; }
}
