/* =========================================================
   Palominos Air — styles.css
   Brand palette pulled from the logo: vivid red + royal blue
   ========================================================= */

:root {
  --red: #e2231a;
  --red-dark: #c01910;
  --blue: #1f50a3;
  --blue-dark: #163d80;
  --navy: #0f2750;
  --navy-2: #143a7b;
  --ink: #16202e;
  --body: #475467;
  --muted: #8a94a6;
  --line: #e6eaf1;
  --bg: #ffffff;
  --bg-alt: #f4f7fc;
  --bg-soft: #eef3fb;
  --white: #ffffff;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(15, 39, 80, .06);
  --shadow: 0 12px 30px rgba(15, 39, 80, .10);
  --shadow-lg: 0 30px 60px rgba(15, 39, 80, .16);

  --container: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --bounce: cubic-bezier(.34, 1.56, .64, 1);

  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 700; }
svg { width: 100%; height: 100%; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  --c: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .24s var(--bounce), box-shadow .18s var(--ease), background .18s, color .18s, border-color .18s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .24s var(--bounce); }
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn:hover svg { transform: scale(1.12); }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 22px rgba(226, 35, 26, .28); }
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 14px 28px rgba(226, 35, 26, .34); }
.btn--ghost { background: transparent; color: var(--blue); border-color: transparent; padding: 10px 14px; }
.btn--ghost:hover { color: var(--blue-dark); transform: none; }
.btn--light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--light:hover { box-shadow: var(--shadow); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #cdd9ef;
  font-size: .82rem;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 16px; }
.topbar__left { display: flex; gap: 22px; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 15px; height: 15px; fill: #7fa6e6; }
.topbar__right { display: flex; align-items: center; gap: 16px; }
.topbar__badge {
  background: rgba(255,255,255,.10); color: #fff; padding: 4px 11px; border-radius: 999px;
  font-weight: 600; font-size: .76rem; letter-spacing: .02em;
}
.topbar__phone { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 700; }
.topbar__phone svg { width: 15px; height: 15px; fill: #fff; }
.topbar__phone:hover { color: #ffd9d6; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s, padding .25s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 100px; transition: min-height .25s; gap: 20px; }
.header.scrolled .header__inner { min-height: 84px; }
.header__logo img { height: 74px; width: auto; transition: height .25s; }
.header.scrolled .header__logo img { height: 60px; }

.nav { display: flex; align-items: center; gap: 3px; }
.nav__link {
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink);
  padding: 8px 9px; border-radius: 8px; position: relative; transition: color .18s; white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease);
}
.nav__link:hover { color: var(--blue); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 8px; }
.nav__cta-call { display: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer;
  padding: 8px; border-radius: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform .25s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(165deg, #0f2750 0%, #163d80 55%, #1f50a3 100%); color: #eaf1fc; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .5; }
.blob--1 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(226,35,26,.45), transparent 70%); top: -140px; right: -120px; }
.blob--2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(64,130,255,.5), transparent 70%); bottom: -200px; left: -160px; }
/* Falling snowflakes (injected into the hero by script.js) */
.snowflake {
  position: absolute; top: -18px; color: #fff; line-height: 1; pointer-events: none; user-select: none;
  text-shadow: 0 0 6px rgba(255,255,255,.45); will-change: transform;
  animation-name: snowfall; animation-timing-function: linear; animation-iteration-count: infinite;
}
@keyframes snowfall {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg); }
  100% { transform: translate3d(var(--drift, 0px), calc(var(--hero-h, 760px) + 60px), 0) rotate(360deg); }
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.25fr .95fr; gap: 56px; align-items: center;
  padding: 84px 24px 96px;
}
.hero__eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; font-size: .78rem; color: #aecaff;
  background: rgba(255,255,255,.08); padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.14);
}
.hero__title { font-size: clamp(2.3rem, 5vw, 3.6rem); color: #fff; font-weight: 800; letter-spacing: -.02em; }
.text-grad { background: linear-gradient(100deg, #ff5b52, #ff9b54); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { margin: 22px 0 30px; font-size: 1.12rem; color: #d3e0f5; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__points { display: flex; flex-direction: column; gap: 11px; }
.hero__points li { display: flex; align-items: center; gap: 11px; color: #e7eefb; font-weight: 500; }
.hero__points svg { width: 22px; height: 22px; flex: none; padding: 4px; border-radius: 50%; background: rgba(80,200,140,.22); fill: #6ee7a8; }

/* Hero quick form card */
.hero__card {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
}
.hero__card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.hero__card-icon { width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 12px; background: var(--bg-soft); }
.hero__card-icon svg { width: 26px; height: 26px; fill: var(--blue); }
.hero__card-head strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); }
.hero__card-head span { font-size: .9rem; color: var(--muted); }
.hero__form { display: flex; flex-direction: column; gap: 12px; }
.hero__form input, .hero__form select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .18s, box-shadow .18s;
}
.hero__form input:focus, .hero__form select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(31,80,163,.12); }
.hero__form-note { text-align: center; font-size: .9rem; color: var(--muted); margin-top: 2px; }
.hero__form-note a { color: var(--blue); font-weight: 700; white-space: nowrap; }

/* ---------- Trust bar ---------- */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 26px 24px; }
.trustbar__item { display: flex; align-items: center; gap: 14px; }
.trustbar__item svg { width: 40px; height: 40px; flex: none; padding: 9px; border-radius: 12px; background: var(--bg-soft); fill: var(--blue); }
.trustbar__item strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 1rem; }
.trustbar__item span { font-size: .86rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.eyebrow {
  font-family: var(--font-head); font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  font-size: .8rem; color: var(--red); margin-bottom: 12px;
}
.eyebrow--light { color: #ffb3ae; }
.section__title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--ink); letter-spacing: -.02em; }
.section__title--light { color: #fff; }
.section__lead { margin-top: 16px; font-size: 1.08rem; color: var(--body); }
.section__lead--light { color: #d3e0f5; }
.section__cta { text-align: center; margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.section__cta p { font-weight: 600; color: var(--ink); font-family: var(--font-head); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 14px; background: var(--bg-soft); margin-bottom: 18px; transition: background .22s; }
.card__icon svg { width: 30px; height: 30px; fill: none; stroke: var(--blue); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card:hover .card__icon { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.card:hover .card__icon svg { stroke: #fff; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { font-size: .97rem; }

/* ---------- Why us ---------- */
.why__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.why__intro .section__lead { margin-bottom: 28px; }
.why__features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: linear-gradient(135deg, var(--red), var(--red-dark)); margin-bottom: 14px; }
.feature__icon svg { width: 22px; height: 22px; fill: #fff; }
.feature h3 { font-size: 1.08rem; margin-bottom: 7px; }
.feature p { font-size: .92rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; text-align: center; padding: 16px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 34px; left: 60%; width: 80%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.step__num {
  position: relative; z-index: 1; width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy)); border-radius: 50%;
  box-shadow: 0 10px 22px rgba(31,80,163,.32);
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .92rem; }

/* ---------- Service area ---------- */
.section--area { background: linear-gradient(160deg, var(--navy), var(--blue-dark)); position: relative; overflow: hidden; }
.section--area::before {
  content: "❄"; position: absolute; right: -30px; top: -20px; font-size: 18rem; color: rgba(255,255,255,.04); line-height: 1;
}
.area__inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.area__content .section__lead { margin-bottom: 26px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 30px; }
.chips li {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #eaf1fc;
  padding: 9px 18px; border-radius: 999px; font-weight: 600; font-family: var(--font-head); font-size: .92rem;
  transition: background .2s, transform .2s;
}
.chips li:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 56px 20px 24px; position: relative;
  font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1.05rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--blue); font-weight: 400; transition: transform .25s; line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__body { padding: 0 24px 22px; }
.faq__body p { font-size: .98rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(100deg, var(--red), var(--red-dark)); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 50px 24px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 6px; font-size: 1.05rem; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact__info .section__lead { margin-bottom: 30px; }
.contact__list { display: flex; flex-direction: column; gap: 20px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__list .contact__ic { width: 50px; height: 50px; flex: none; display: grid; place-items: center; border-radius: 13px; background: var(--bg-soft); }
.contact__ic svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact__list span { display: block; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.contact__list a, .contact__list strong { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1.12rem; }
.contact__list a:hover { color: var(--blue); }

.contact__formwrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; font-family: var(--font-head); }
.field .muted { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(31,80,163,.12); }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-fineprint { margin-top: 12px; text-align: center; font-size: .82rem; color: var(--muted); }
.form-status { margin-top: 10px; text-align: center; font-weight: 600; font-size: .95rem; }
.form-status.ok { color: #1a8a4f; }
.form-status.err { color: var(--red); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #b9c6e0; padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; letter-spacing: .01em; }
.footer__logo span { color: var(--red); }
.footer__tag { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #7f93ba; margin: 4px 0 16px; }
.footer__blurb { font-size: .94rem; max-width: 320px; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.08); transition: background .2s, transform .2s; }
.footer__social a:hover { background: var(--red); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; fill: #fff; }
.footer__col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 16px; }
.footer__col a { display: block; padding: 5px 0; font-size: .94rem; transition: color .18s, padding-left .18s; }
.footer__col a:hover { color: #fff; padding-left: 5px; }
.footer__muted { font-size: .9rem; color: #7f93ba; margin-top: 12px; line-height: 1.7; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: .86rem; color: #7f93ba; flex-wrap: wrap; }

/* ---------- Floating call + back to top ---------- */
.fab-call {
  position: fixed; left: 16px; bottom: 16px; z-index: 90; display: none; align-items: center; gap: 8px;
  background: var(--red); color: #fff; padding: 13px 20px; border-radius: 999px; font-family: var(--font-head);
  font-weight: 700; box-shadow: 0 12px 26px rgba(226,35,26,.4); animation: pulse 2.4s infinite;
}
.fab-call svg { width: 20px; height: 20px; fill: #fff; }
@keyframes pulse { 0%,100% { box-shadow: 0 12px 26px rgba(226,35,26,.4); } 50% { box-shadow: 0 12px 26px rgba(226,35,26,.7); } }

.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 48px; height: 48px; border: 0; cursor: pointer;
  border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .25s var(--ease);
}
.to-top svg { width: 24px; height: 24px; fill: #fff; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--blue-dark); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .snow, .fab-call { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1279px) {
  /* Hamburger nav engages early so the horizontal nav never wraps (esp. longer Spanish labels) */
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: #fff;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 96px 24px 32px;
    box-shadow: -20px 0 50px rgba(15,39,80,.18); transform: translateX(100%); transition: transform .3s var(--ease);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav__link { padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__link::after { display: none; }
  .nav__cta, .nav__cta-call { margin: 12px 0 0; }
  .nav__cta-call { display: inline-flex; }
  .nav-toggle { display: flex; }
  body.menu-open { overflow: hidden; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(15,39,80,.45); z-index: 99; opacity: 0; visibility: hidden; transition: opacity .25s; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }

  .topbar__item--hideMobile, .topbar__badge { display: none; }
  .topbar__inner { justify-content: space-between; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 64px; }
  .hero__card { max-width: 460px; }
  .why__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .trustbar__inner { grid-template-columns: 1fr 1fr; gap: 22px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 38px; }
  .cards { grid-template-columns: 1fr; }
  .why__features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; align-items: center; }

  .fab-call { display: inline-flex; }
  .to-top { right: 14px; bottom: 80px; }
  .hero__actions .btn { flex: 1 1 auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .trustbar__inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.1rem; }
}

/* =========================================================
   Enhancements — hover bumps, reveal variants, language toggle
   ========================================================= */

/* --- Hover "bump" micro-interactions --- */
.card { transition: transform .28s var(--bounce), box-shadow .28s var(--ease), border-color .22s; }
.card:hover { transform: translateY(-8px) scale(1.015); }
.card__icon { transition: background .22s, transform .3s var(--bounce); }
.card:hover .card__icon { transform: scale(1.1) rotate(-5deg); }

.feature { transition: transform .26s var(--bounce), box-shadow .2s; }
.feature:hover { transform: translateY(-5px) scale(1.012); }
.feature__icon { transition: transform .3s var(--bounce); }
.feature:hover .feature__icon { transform: scale(1.12) rotate(5deg); }

.trustbar__item svg { transition: transform .3s var(--bounce); }
.trustbar__item:hover svg { transform: scale(1.15) translateY(-2px); }

.chips li { transition: background .2s, transform .26s var(--bounce); }
.chips li:hover { transform: translateY(-3px) scale(1.06); }

.step__num { transition: transform .32s var(--bounce), box-shadow .32s; }
.step:hover .step__num { transform: scale(1.12) translateY(-3px); box-shadow: 0 16px 32px rgba(31,80,163,.42); }

.contact__ic { transition: transform .3s var(--bounce); }
.contact__list li:hover .contact__ic { transform: scale(1.1) rotate(-5deg); }

.footer__social a { transition: background .2s, transform .26s var(--bounce); }
.footer__social a:hover { transform: translateY(-3px) scale(1.08); }

.nav__link { transition: color .18s, transform .2s var(--bounce); }
.nav__link:hover { transform: translateY(-1px); }

.faq__item summary { transition: background .2s; }
.faq__item summary:hover { background: var(--bg-soft); }

.hero__points li svg { transition: transform .26s var(--bounce); }
.hero__points li:hover svg { transform: scale(1.2); }

.header__logo img { transition: height .25s, transform .26s var(--bounce); }
.header__logo:hover img { transform: scale(1.04); }

/* --- Scroll-reveal direction variants --- */
.reveal--left  { transform: translateX(-42px); }
.reveal--right { transform: translateX(42px); }
.reveal--scale { transform: scale(.92); }
.reveal--left.in, .reveal--right.in, .reveal--scale.in { transform: none; }

/* --- Language toggle (top-right) --- */
.lang-toggle { display: inline-flex; align-items: center; gap: 3px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 2px 6px; }
.lang-toggle__globe { width: 15px; height: 15px; fill: #9fc0ff; flex: none; margin-right: 1px; }
.lang-toggle__opt { background: none; border: 0; cursor: pointer; font-family: var(--font-head); font-size: .72rem; font-weight: 700; color: #aab8d6; padding: 3px 7px; border-radius: 999px; line-height: 1; transition: background .2s, color .2s, transform .2s var(--bounce); }
.lang-toggle__opt:hover { color: #fff; transform: translateY(-1px); }
.lang-toggle__opt.is-active { background: #fff; color: var(--navy); }

@media (max-width: 760px) {
  .topbar__left { display: none; }
  .topbar__inner { justify-content: flex-end; gap: 12px; }
}

/* --- 24/7 Emergency banner --- */
.emergency { background: linear-gradient(100deg, var(--navy), var(--navy-2)); color: #eaf1fc; }
.emergency__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 24px; flex-wrap: wrap; }
.emergency__text { display: flex; align-items: center; gap: 18px; }
.emergency__badge { flex: none; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .92rem; letter-spacing: -.01em; white-space: nowrap; animation: epulse 2.2s infinite; }
.emergency h2 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.emergency p { color: #cdd9ef; margin-top: 4px; font-size: 1rem; }
.footer__emergency { color: #ffb3ae; font-weight: 600; }
@keyframes epulse {
  0%   { box-shadow: 0 0 0 0 rgba(226,35,26,.55); }
  70%  { box-shadow: 0 0 0 16px rgba(226,35,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,35,26,0); }
}
@media (max-width: 640px) {
  .emergency__inner { flex-direction: column; text-align: center; }
  .emergency__text { flex-direction: column; gap: 12px; }
}

/* --- Reduced-motion safety for the added motion --- */
@media (prefers-reduced-motion: reduce) {
  .reveal--left, .reveal--right, .reveal--scale { transform: none; }
  .snowflake { display: none; }
  .emergency__badge { animation: none; }
  .card:hover, .feature:hover, .chips li:hover, .footer__social a:hover,
  .btn:hover, .step:hover .step__num { transform: none; }
}
