/* ============================================================
   MESMERIZERS — Global Services LLP
   Premium consulting site · custom design system
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --navy-950: #060d20;
  --navy-900: #0a1633;
  --navy-800: #0f213f;
  --navy-700: #15294d;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;   /* primary */
  --blue-500: #3b82f6;   /* secondary */
  --blue-400: #60a5fa;
  --cyan-400: #22d3ee;
  --orange-500: #f97316; /* CTA / accent */
  --orange-400: #fb923c;

  /* Neutrals */
  --bg: #f6f8fc;
  --bg-alt: #eef2fb;
  --surface: #ffffff;
  --text: #1e293b;
  --text-soft: #475569;
  --text-mute: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;

  /* On-dark */
  --on-dark: #eaf0ff;
  --on-dark-soft: #aab8d8;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #2563eb 0%, #3b82f6 45%, #22d3ee 100%);
  --grad-cta: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  --grad-navy: linear-gradient(160deg, #0a1633 0%, #0f213f 55%, #15294d 100%);
  --grad-text: linear-gradient(120deg, #2563eb, #22d3ee 60%, #fb923c);

  /* Typography */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  /* Radius & shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 4px 14px rgba(15, 33, 63, .08);
  --shadow-md: 0 14px 40px rgba(15, 33, 63, .12);
  --shadow-lg: 0 30px 70px rgba(15, 33, 63, .18);
  --shadow-glow: 0 18px 50px rgba(37, 99, 235, .35);
  --shadow-cta: 0 14px 34px rgba(249, 115, 22, .38);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .18s;
  --t: .35s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; color: var(--navy-900); letter-spacing: -.02em; }
.h-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.04; }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.1rem); }
p { color: var(--text-soft); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-soft); }
/* solid brand emphasis colour (no gradient text) */
.gradient-text { color: var(--blue-600); }
.section--navy .gradient-text, .hero .gradient-text, .ctaband .gradient-text, .pagehero .gradient-text { color: var(--blue-400); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 7vw, 90px) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  letter-spacing: 0; text-transform: none;
  color: var(--blue-600); margin-bottom: 14px;
}
.eyebrow.center-line { display: block; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head.left { margin-inline: 0; }
.muted-dark { color: var(--on-dark-soft); }

/* ---------- Buttons ---------- */
.btn {
  --pad: 15px 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad);
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  border-radius: 100px; position: relative; overflow: hidden;
  white-space: nowrap; line-height: 1; text-align: center;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform var(--t) var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn:hover svg { transform: translateX(4px); }
.btn--cta { background: var(--grad-cta); color: #fff; box-shadow: var(--shadow-cta); }
.btn--cta:hover { box-shadow: 0 20px 44px rgba(249, 115, 22, .5); }
.btn--primary { background: var(--blue-600); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { background: var(--blue-700); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: var(--on-dark); border: 1px solid rgba(255, 255, 255, .25); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); }
.btn--outline { background: transparent; color: var(--blue-600); border: 1.5px solid var(--blue-600); }
.btn--outline:hover { background: var(--blue-600); color: #fff; }
.btn--lg { --pad: 18px 38px; font-size: 1.05rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center;
  transition: background var(--t), box-shadow var(--t), height var(--t);
}
.nav__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav.scrolled { background: rgba(255, 255, 255, .82); backdrop-filter: blur(16px) saturate(160%); box-shadow: 0 6px 28px rgba(15, 33, 63, .08); height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__logo { height: 56px; width: auto; display: block; transition: filter var(--t); }
.nav.scrolled .brand__logo { height: 46px; }
/* Dark backgrounds: render logo in clean white; restore full colour on light/scrolled nav */
.nav.on-dark .brand__logo { filter: brightness(0) invert(1); }
.nav.on-dark.scrolled .brand__logo { filter: none; }
.nav.on-dark .nav__links a { color: var(--on-dark); }
.nav.on-dark.scrolled .nav__links a { color: var(--navy-900); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  position: relative; padding: 9px 14px; font-family: var(--font-head); font-weight: 500; font-size: .92rem;
  color: var(--text-soft); border-radius: 8px; transition: color var(--t);
}
.nav__links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--grad-cta); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease); }
.nav__links a:hover, .nav__links a.active { color: var(--blue-600); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__burger span { width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav.on-dark .nav__burger span { background: var(--on-dark); }
.nav.on-dark.scrolled .nav__burger span { background: var(--navy-900); }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(255, 255, 255, .97); backdrop-filter: blur(20px); padding: 18px var(--gutter) 28px;
    box-shadow: var(--shadow-md); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--t) var(--ease), opacity var(--t);
  }
  .nav.open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 13px 8px; font-size: 1.05rem; color: var(--text); }
  .nav__links a::after { display: none; }
  .nav__cta .btn--cta { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: var(--on-dark); overflow: hidden; padding-top: var(--nav-h); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(6, 13, 32, .92) 0%, rgba(10, 22, 51, .78) 45%, rgba(10, 22, 51, .45) 100%); }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; z-index: 0; pointer-events: none; }
.hero__glow.g1 { width: 480px; height: 480px; background: radial-gradient(circle, #2563eb, transparent 65%); top: -120px; right: -80px; }
.hero__glow.g2 { width: 380px; height: 380px; background: radial-gradient(circle, #f97316, transparent 65%); bottom: -120px; left: 10%; opacity: .35; }
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; margin-bottom: 26px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); border-radius: 100px;
  font-family: var(--font-head); font-weight: 500; font-size: .82rem; color: var(--on-dark); backdrop-filter: blur(8px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: pulse 2.2s infinite; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero p.lead { color: var(--on-dark-soft); max-width: 560px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 56px); margin-top: 54px; }
.hero__stats .stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #fff; line-height: 1; }
.hero__stats .stat__num .gradient-text { font-weight: 800; }
.hero__stats .stat__label { font-size: .85rem; color: var(--on-dark-soft); margin-top: 6px; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--on-dark-soft); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(255, 255, 255, .4); border-radius: 14px; position: relative; }
.scroll-cue .mouse::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; border-radius: 3px; background: #fff; animation: scrollWheel 1.8s infinite; }

/* Page hero (sub pages) */
.pagehero { position: relative; padding: calc(var(--nav-h) + 70px) 0 90px; color: var(--on-dark); overflow: hidden; background: var(--grad-navy); }
.pagehero__glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(80px); opacity: .4; }
.pagehero__glow.a { background: radial-gradient(circle, #3b82f6, transparent 65%); top: -160px; right: -60px; }
.pagehero__glow.b { background: radial-gradient(circle, #f97316, transparent 65%); bottom: -200px; left: -80px; opacity: .25; }
.pagehero__inner { position: relative; z-index: 2; max-width: 760px; }
.pagehero h1 { color: #fff; margin: 16px 0 18px; }
.pagehero p { color: var(--on-dark-soft); font-size: 1.1rem; max-width: 600px; }
.crumb { font-size: .85rem; color: var(--on-dark-soft); display: flex; gap: 8px; align-items: center; }
.crumb a:hover { color: #fff; }

/* ============================================================
   GRID PATTERN BG / decorative
   ============================================================ */
.bg-grid::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(37, 99, 235, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, .045) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}
.section--navy { background: var(--grad-navy); color: var(--on-dark); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--alt { background: var(--bg-alt); }

/* ============================================================
   CARDS — services / features
   ============================================================ */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px); overflow: hidden; isolation: isolate;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.card::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; background: var(--grad-brand); transition: opacity var(--t); }
.card::after { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--grad-cta); transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(34, 211, 238, .12)); color: var(--blue-600);
  transition: transform var(--t) var(--ease), background var(--t), color var(--t);
}
.card__icon svg { width: 30px; height: 30px; }
.card:hover .card__icon { background: var(--grad-brand); color: #fff; transform: rotate(-6deg) scale(1.06); }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { font-size: .96rem; }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--blue-600); }
.card__link svg { width: 16px; height: 16px; transition: transform var(--t); }
.card:hover .card__link svg { transform: translateX(4px); }
.card__num { display: none; }

/* Glass card (on dark) */
.glass { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); backdrop-filter: blur(14px); border-radius: var(--r-lg); }
.glass h3 { color: #fff; }
.glass p { color: var(--on-dark-soft); }
.glass .card__icon { background: rgba(255, 255, 255, .1); color: var(--blue-400); }
.glass:hover .card__icon { background: var(--grad-brand); color: #fff; }

/* ============================================================
   SPLIT (image + text)
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.split__media .badge-float {
  position: absolute; background: var(--surface); border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.split__media .badge-float.bl { bottom: -22px; left: -22px; }
.split__media .badge-float.tr { top: -22px; right: -22px; }
.badge-float .bf__icon { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; }
.badge-float .bf__icon svg { width: 22px; height: 22px; }
.badge-float strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy-900); display: block; }
.badge-float span { font-size: .76rem; color: var(--text-mute); }
@media (max-width: 540px) { .split__media .badge-float { position: static; margin-top: 16px; display: inline-flex; } }

/* check list */
.ticklist { display: grid; gap: 14px; margin-top: 26px; }
.ticklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--text-soft); }
.ticklist li .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(34,211,238,.14)); color: var(--blue-600); display: grid; place-items: center; margin-top: 2px; }
.ticklist li .tick svg { width: 16px; height: 16px; }
.ticklist li b { color: var(--navy-900); font-family: var(--font-head); font-weight: 600; }

/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.steps { display: grid; gap: 22px; counter-reset: step; }
.steps.cols { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .steps.cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps.cols { grid-template-columns: 1fr; } }
.step { position: relative; padding: 28px 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); transition: transform var(--t) var(--ease), box-shadow var(--t); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__n { counter-increment: step; font-family: var(--font-head); font-weight: 800; font-size: 1rem; width: 46px; height: 46px; border-radius: 14px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-glow); }
.step__n::before { content: "0" counter(step); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .92rem; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.1rem, 2.4vw, 1.7rem); color: var(--text-mute); display: flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee__track span::after { content: "✦"; color: var(--orange-500); }
.section--navy .marquee__track span { color: var(--on-dark-soft); }

/* ============================================================
   STATS band
   ============================================================ */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 760px) { .statband { grid-template-columns: repeat(2, 1fr); } }
.statband .stat { text-align: center; padding: 8px; }
.statband .stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; }
.statband .stat__label { color: var(--on-dark-soft); margin-top: 10px; font-size: .92rem; }
.section:not(.section--navy) .statband .stat__label { color: var(--text-mute); }

/* ============================================================
   DESTINATIONS (chips)
   ============================================================ */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; font-family: var(--font-head); font-weight: 500; font-size: .92rem; color: var(--text); transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t), color var(--t); }
.chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--blue-500); color: var(--blue-600); }
.chip .flag { font-size: 1.1rem; line-height: 1; }
.section--navy .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: var(--on-dark); }

/* ============================================================
   CTA band
   ============================================================ */
.ctaband { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); text-align: center; background: var(--grad-navy); color: var(--on-dark); }
.ctaband::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.6), transparent 65%); top: -180px; left: -80px; filter: blur(60px); }
.ctaband::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,.45), transparent 65%); bottom: -200px; right: -60px; filter: blur(60px); }
.ctaband > * { position: relative; z-index: 1; }
.ctaband h2 { color: #fff; margin-bottom: 14px; }
.ctaband p { color: var(--on-dark-soft); max-width: 540px; margin: 0 auto 30px; }
.ctaband .hero__actions { justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { display: flex; gap: 16px; padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); transition: transform var(--t) var(--ease), box-shadow var(--t); }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .ic { flex: none; width: 48px; height: 48px; border-radius: 13px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; color: var(--navy-900); }
.info-card p, .info-card a { font-size: .94rem; color: var(--text-soft); }
.info-card a:hover { color: var(--blue-600); }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: var(--navy-900); margin-bottom: 7px; }
.field label .req { color: var(--orange-500); }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; font: inherit; font-size: .96rem; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-sm); transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(59, 130, 246, .12); }
.field textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form__row { grid-template-columns: 1fr; } }
.form__note { font-size: .8rem; color: var(--text-mute); margin-top: 12px; text-align: center; }
.form__success { display: none; padding: 14px 18px; border-radius: var(--r-sm); background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.4); color: #047857; font-weight: 600; font-size: .9rem; margin-bottom: 18px; }
.form__success.show { display: block; }
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-950); color: var(--on-dark-soft); padding: clamp(56px, 7vw, 84px) 0 32px; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(37,99,235,.6), rgba(249,115,22,.6), transparent); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 52px); margin-bottom: 48px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand__logo { height: 60px; filter: brightness(0) invert(1); }
.footer__about p { font-size: .92rem; color: var(--on-dark-soft); max-width: 320px; }
.footer h2 { font-family: var(--font-head); color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer__links a { display: block; padding: 6px 0; font-size: .92rem; color: var(--on-dark-soft); transition: color var(--t), transform var(--t); }
.footer__links a:hover { color: #fff; transform: translateX(4px); }
.footer__contact li { display: flex; gap: 11px; font-size: .9rem; margin-bottom: 13px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; flex: none; color: var(--blue-400); margin-top: 2px; }
.footer__contact a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: var(--on-dark-soft); transition: transform var(--t) var(--ease), background var(--t), color var(--t); }
.socials a:hover { transform: translateY(-4px); background: var(--grad-brand); color: #fff; border-color: transparent; }
.socials svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: .84rem; color: var(--on-dark-soft); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal].in { transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }

/* progress bar */
.scroll-prog { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: left; z-index: 1100; background: var(--grad-cta); transition: transform .1s linear; will-change: transform; }

/* back to top */
.totop { position: fixed; right: 22px; bottom: 22px; width: 50px; height: 50px; border-radius: 50%; background: var(--blue-600); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-glow); z-index: 900; opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none; transition: opacity var(--t), transform var(--t) var(--ease), background var(--t); }
.totop.show { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--blue-700); transform: translateY(-3px); }
.totop svg { width: 22px; height: 22px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.6); } 70% { box-shadow: 0 0 0 10px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
@keyframes scrollWheel { 0% { opacity: 1; transform: translate(-50%, 0); } 100% { opacity: 0; transform: translate(-50%, 12px); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.floaty { animation: float 6s ease-in-out infinite; }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
}
