/* ===========================================================
   The Digital Journey — "Aurora Journey" theme
   Deep-ocean blue gradients · luminous cyan glow · glass · coral accent
   Display serif (Cormorant Garamond) + clean sans (Hanken Grotesk) + Allura script
   =========================================================== */

:root {
  /* --- Blue spectrum (the journey) --- */
  --blue-950: #04101f;
  --blue-900: #06192e;
  --blue-850: #082238;
  --blue-800: #0a2a47;
  --blue-700: #0e3a63;
  --blue-600: #135789;
  --blue-500: #1f73b8;
  --blue-400: #3b8fe0;

  --cyan-500: #0fb6c8;
  --cyan-400: #2dd0e0;
  --cyan-300: #6fe7f1;
  --teal-400: #2dd4bf;

  --coral:      #ff8472;
  --coral-deep: #f2624f;

  /* --- Legacy names remapped to the blue world (keeps inline styles working) --- */
  --navy:        #07203a;
  --navy-soft:   #103456;
  --navy-line:   rgba(150, 210, 235, 0.16);
  --teal:        #16b8c6;   /* bright accent */
  --teal-deep:   #0c7d92;   /* readable accent on light */
  --teal-light:  #84e6ef;
  --teal-wash:   #e3f4f8;
  --cream:       #e9f1fb;   /* ice-blue light surface */
  --cream-soft:  #f3f8fd;
  --white:       #ffffff;

  /* Text */
  --ink:         #0a2236;   /* deep blue ink */
  --ink-2:       #3d556e;   /* secondary */
  --ink-3:       #6a809a;   /* muted */
  --on-navy:     #dceaf6;   /* body text on dark */
  --on-navy-dim: #93b2cf;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script:"Allura", "Cormorant Garamond", cursive;

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  /* Blue-tinted shadows + glow */
  --shadow-sm: 0 4px 14px -6px rgba(6, 25, 46, 0.18);
  --shadow-md: 0 18px 40px -20px rgba(6, 25, 46, 0.40);
  --shadow-lg: 0 36px 70px -30px rgba(4, 16, 31, 0.55);
  --glow-cyan: 0 0 40px -6px rgba(45, 208, 224, 0.45);
  --glow-coral: 0 16px 34px -12px rgba(242, 98, 79, 0.55);

  /* Gradients */
  --grad-aurora:
    radial-gradient(55% 70% at 12% 8%,  rgba(45, 212, 191, 0.20), transparent 60%),
    radial-gradient(50% 60% at 88% 2%,  rgba(59, 143, 224, 0.32), transparent 62%),
    radial-gradient(80% 90% at 50% 118%, rgba(15, 182, 200, 0.26), transparent 60%),
    linear-gradient(165deg, var(--blue-800), var(--blue-900) 68%);
  --grad-ice:
    radial-gradient(60% 55% at 100% 0%,  rgba(111, 231, 241, 0.16), transparent 60%),
    radial-gradient(55% 50% at 0% 100%,  rgba(59, 143, 224, 0.10), transparent 60%),
    linear-gradient(180deg, #f7fbff, #eaf2fb);
  --grad-cyan-btn: linear-gradient(120deg, #1fc6d6, #1582c2);
  --grad-coral-btn: linear-gradient(120deg, #ff9a84, #ff6f5c);
  --grad-text: linear-gradient(100deg, var(--cyan-400), var(--blue-400) 60%, var(--teal-400));

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--blue-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(45, 208, 224, 0.28); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.07;
  margin: 0;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); letter-spacing: -0.005em; }
h4 { font-size: 1.25rem; }
p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.script {
  font-family: var(--script);
  font-weight: 400;
  letter-spacing: 0;
}

/* Gradient headline accent */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--cyan-400));
  border-radius: 2px;
}
.eyebrow.is-light { color: var(--cyan-300); }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--ink-2); }
.on-navy { color: var(--on-navy); }
.on-navy h1, .on-navy h2, .on-navy h3, .on-navy h4 { color: var(--white); }
.on-navy .lead { color: var(--on-navy); }
.text-teal { color: var(--teal-deep); }
.text-coral { color: var(--coral-deep); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; overflow: hidden; }

/* Light frosted surfaces */
.section--white { background: var(--grad-ice); }
.section--soft  {
  background:
    radial-gradient(50% 60% at 0% 0%, rgba(111, 231, 241, 0.14), transparent 60%),
    linear-gradient(180deg, #eef5fc, #e6f0fa);
}
.section--cream { background: linear-gradient(180deg, #eef5fc, #f5f9fe); }

/* Deep aurora surfaces */
.section--navy { background: var(--grad-aurora); color: var(--on-navy); }
.section--teal {
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(45, 212, 191, 0.22), transparent 60%),
    radial-gradient(60% 70% at 10% 100%, rgba(59, 143, 224, 0.28), transparent 62%),
    linear-gradient(150deg, var(--blue-700), var(--blue-850));
  color: var(--on-navy);
}
.section--teal .section-head h2,
.section--teal .eyebrow { color: #fff; }
.section--teal .eyebrow { color: var(--cyan-300); }

/* Drifting aurora orb on dark sections */
.section--navy::before,
.section--teal::before {
  content: "";
  position: absolute;
  width: 60vw; max-width: 720px; aspect-ratio: 1;
  top: -25%; right: -12%;
  background: radial-gradient(circle, rgba(45, 208, 224, 0.30), transparent 65%);
  filter: blur(50px);
  border-radius: 50%;
  pointer-events: none;
  animation: drift 22s ease-in-out infinite alternate;
}
.section--navy::after,
.section--teal::after {
  content: "";
  position: absolute;
  width: 50vw; max-width: 620px; aspect-ratio: 1;
  bottom: -30%; left: -10%;
  background: radial-gradient(circle, rgba(59, 143, 224, 0.26), transparent 65%);
  filter: blur(55px);
  border-radius: 50%;
  pointer-events: none;
  animation: drift 28s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-6%, 8%) scale(1.12); }
}

.section-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: #fff;
  position: relative;
  overflow: hidden;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.005em;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 1.02em 1.8em;
  border-radius: 999px;
  border: 0;
  background: var(--grad-coral-btn);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .24s ease, filter .2s ease;
  box-shadow: var(--glow-coral);
}
/* shimmer sweep */
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn svg { width: 1.1em; height: 1.1em; position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -14px rgba(242, 98, 79, .65); }
.btn:active { transform: translateY(0); }

.btn--teal { background: var(--grad-cyan-btn); box-shadow: 0 16px 34px -12px rgba(21, 130, 194, .6); }
.btn--teal:hover { box-shadow: 0 22px 40px -14px rgba(21, 130, 194, .7); filter: brightness(1.05); }
.btn--navy { background: linear-gradient(120deg, #123a63, #08243f); box-shadow: 0 16px 30px -16px rgba(4,16,31,.8); }
.btn--navy:hover { filter: brightness(1.12); }

.btn--outline {
  background: transparent; color: var(--blue-600);
  box-shadow: inset 0 0 0 1.5px rgba(21, 130, 194, .35);
}
.btn--outline::after { display: none; }
.btn--outline:hover { box-shadow: inset 0 0 0 1.5px var(--blue-600); background: rgba(21,130,194,.06); transform: translateY(-2px); }

.btn--outline-light {
  background: rgba(255,255,255,.04);
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(132, 230, 239, .4);
}
.btn--outline-light::after { display: none; }
.btn--outline-light:hover { box-shadow: inset 0 0 0 1.5px var(--cyan-300); background: rgba(132,230,239,.12); transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.textlink {
  font-weight: 600; color: var(--teal-deep);
  display: inline-flex; align-items: center; gap: .4em;
  transition: gap .2s ease, color .2s ease;
}
.textlink svg { width: 1.05em; height: 1.05em; }
.textlink:hover { gap: .7em; color: var(--coral-deep); }

/* ---------- Header / Nav (dark glass) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6, 22, 42, 0.55);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid rgba(132, 230, 239, 0.12);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  background: rgba(5, 18, 34, 0.78);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.6);
}
.nav {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 46px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-weight: 600; font-size: 0.98rem; color: var(--on-navy);
  padding: 0.55em 0.95em; border-radius: 999px;
  position: relative; transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: #fff; background: rgba(132, 230, 239, 0.12); }
.nav-links a.active { color: var(--cyan-300); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 2px; width: 18px; height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--cyan-400)); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 12px; color: var(--on-navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 55;
  background: rgba(6, 22, 42, 0.97);
  backdrop-filter: blur(16px);
  padding: 28px var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.mobile-nav.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--serif); font-size: 1.7rem; color: #fff;
  padding: 0.45em 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav .btn { margin-top: 22px; justify-content: center; }

/* ---------- Cards (glass) ---------- */
.card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(241,248,255,.72));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.icon-badge {
  width: 60px; height: 60px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--teal-wash), #d3eef5);
  color: var(--teal-deep);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 8px 18px -10px rgba(12, 125, 146, .5);
  margin-bottom: 22px;
}
.icon-badge svg { width: 28px; height: 28px; }
.icon-badge.coral { background: linear-gradient(150deg, #ffe4dd, #ffd0c6); color: var(--coral-deep); box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 8px 18px -10px rgba(242,98,79,.5); }
.icon-badge.navy  { background: linear-gradient(150deg, #d9e8f7, #c4dcf2); color: var(--blue-600); box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 8px 18px -10px rgba(19,87,137,.5); }

/* ---------- Grids ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.split--hero { grid-template-columns: 1.05fr .95fr; }
/* Force single column on mobile — !important beats inline column ratios */
@media (max-width: 940px) {
  .split, .split--hero { grid-template-columns: 1fr !important; align-items: start !important; }
}
.grid { display: grid; gap: clamp(20px, 2.5vw, 30px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Hero ---------- */
.hero .split--hero > div:last-child { position: relative; }
.hero .split--hero > div:last-child::before {
  content: "";
  position: absolute; inset: -12%;
  background: radial-gradient(circle at 50% 45%, rgba(111, 231, 241, 0.28), transparent 62%);
  filter: blur(38px);
  z-index: 0;
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero .split--hero > div:last-child img { position: relative; z-index: 1; }
@keyframes pulse-glow {
  0%, 100% { opacity: .75; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.05); }
}

/* Money-saving highlight band */
.save-band {
  margin-top: 40px;
  display: flex; align-items: center; gap: clamp(20px, 3vw, 34px);
  background:
    radial-gradient(70% 120% at 88% -10%, rgba(45,208,224,.34), transparent 60%),
    linear-gradient(150deg, var(--blue-700), var(--blue-900));
  border: 1px solid rgba(132, 230, 239, .22);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 40px) clamp(26px, 3.6vw, 48px);
  box-shadow: var(--shadow-md), 0 0 50px -18px rgba(45,208,224,.4);
}
.save-ico {
  flex: none; width: 76px; height: 76px; border-radius: 20px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(45,208,224,.28), rgba(59,143,224,.22));
  border: 1px solid rgba(132,230,239,.4);
  color: var(--cyan-300);
  box-shadow: 0 0 26px -6px rgba(45,208,224,.5);
}
.save-ico svg { width: 38px; height: 38px; }
@media (max-width: 620px) {
  .save-band { flex-direction: column; text-align: center; }
  .save-band h3 { text-align: center; }
}

/* Recent work cards */
#work .card { display: flex; flex-direction: column; }
#work .card h3 { margin-bottom: 12px; }
/* Recent work: 3 across → 2 on tablet → 1 on mobile */
@media (max-width: 940px) { #work .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { #work .grid-3 { grid-template-columns: 1fr; } }
.work-tag {
  align-self: flex-start;
  font-family: var(--sans); font-weight: 700; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-deep);
  background: linear-gradient(150deg, rgba(45,208,224,.16), rgba(59,143,224,.14));
  border: 1px solid rgba(45,208,224,.3);
  padding: .42em .9em; border-radius: 999px;
  margin-bottom: 20px;
}

/* Why-work-with-me points grid */
.why-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
@media (max-width: 820px) { .why-points { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (max-width: 520px) { .why-points { grid-template-columns: 1fr; } }

/* Help chips (glass) */
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.help-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(132, 230, 239, .18);
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-weight: 600; color: #fff;
  backdrop-filter: blur(6px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.help-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.1);
  border-color: rgba(132, 230, 239, .5);
  box-shadow: var(--glow-cyan);
}
.help-item .ico {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(45,208,224,.22), rgba(59,143,224,.22));
  color: var(--cyan-300);
}
.help-item .ico svg { width: 22px; height: 22px; }

/* ---------- Image frames ---------- */
.media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--teal-wash);
}
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media--tall { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 5 / 4; }
.media--landscape { aspect-ratio: 3 / 2; }
.media::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
  pointer-events: none;
}
.media--badge { position: absolute; bottom: 18px; left: 18px; right: 18px; }

.imgslot {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background:
    linear-gradient(135deg, rgba(45,208,224,.18), rgba(59,143,224,.28)),
    var(--teal-wash);
  border: 1px dashed rgba(15,182,200,.45);
  display: grid; place-items: center; min-height: 280px;
  color: var(--teal-deep);
}
.imgslot--navy {
  background: linear-gradient(135deg, var(--navy-soft), var(--blue-900));
  border-color: rgba(132,230,239,.2); color: var(--on-navy-dim);
}
.imgslot__label {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: .9rem;
  letter-spacing: .02em; text-align: center; padding: 24px;
}
.imgslot__label svg { width: 34px; height: 34px; opacity: .8; }
.imgslot__label small { font-weight: 500; opacity: .7; font-size: .8rem; max-width: 220px; }
.imgslot img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.snap { transition: none !important; opacity: 1 !important; transform: none !important; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .section--navy::before, .section--navy::after,
  .section--teal::before, .section--teal::after,
  .hero .split--hero > div:last-child::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 1.6vw, 26px); }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(240,247,255,.74));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.price-card .pnum {
  font-family: var(--serif); font-weight: 600; font-size: 3.4rem; line-height: .9;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 26px; letter-spacing: .01em;
}
.price-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.price-card .pdesc { font-size: .97rem; line-height: 1.55; color: var(--ink-2); }
.price-card .pfoot { margin-top: auto; padding-top: 24px; }
.price-card .pdiv { border-top: 1px solid rgba(10,34,54,.1); margin-bottom: 18px; }
.price-amt { font-family: var(--serif); font-weight: 700; font-size: 1.9rem; color: var(--navy); letter-spacing: -.01em; }
.price-unit { font-size: .9rem; color: var(--ink-3); font-weight: 500; }

/* Featured card — dark glass with glow ring */
.price-card--featured {
  background: linear-gradient(165deg, rgba(18, 58, 99, .94), rgba(7, 28, 50, .92));
  border: 1px solid rgba(132, 230, 239, .28);
  box-shadow: var(--shadow-lg), 0 0 50px -12px rgba(45, 208, 224, .35);
}
.price-card--featured .pnum { background: linear-gradient(100deg, var(--cyan-300), var(--blue-400)); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .9; }
.price-card--featured h3 { color: #fff; }
.price-card--featured .pdesc { color: var(--on-navy); }
.price-card--featured .pdiv { border-color: rgba(255,255,255,.16); }
.price-card--featured .price-amt { color: #fff; }
.price-card--featured .price-unit { color: var(--on-navy-dim); }
.price-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--grad-coral-btn); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; padding: .5em .9em; border-radius: 999px;
  box-shadow: var(--glow-coral);
}
.price-note { text-align: center; margin-top: 34px; color: var(--ink-3); font-size: .95rem; }

@media (max-width: 980px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- Who it's for (glass cards) ---------- */
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 26px); }
.who-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(240,247,255,.7));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--r-lg); padding: 30px 28px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
}
/* top accent line on hover */
.who-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-500));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.who-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.who-card:hover::before { transform: scaleX(1); }
.who-card .icon-badge { width: 54px; height: 54px; border-radius: 16px; margin-bottom: 18px; }
.who-card h4 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.who-card p { font-size: .94rem; color: var(--ink-2); line-height: 1.5; }
@media (max-width: 980px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .who-grid { grid-template-columns: 1fr; } }

/* ---------- Customer journey (glowing path) ---------- */
.journey {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  position: relative;
}
.journey::before {
  content: ""; position: absolute; top: 31px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-300), var(--teal-400), var(--cyan-300), transparent);
  filter: drop-shadow(0 0 6px rgba(111, 231, 241, .55));
  z-index: 0;
}
.jstep { position: relative; text-align: center; }
.jdot {
  position: relative; z-index: 1;
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 22px;
  background: linear-gradient(160deg, rgba(18,58,99,.9), rgba(8,32,55,.9));
  border: 1.5px solid rgba(132, 230, 239, .5);
  color: var(--cyan-300);
  box-shadow: 0 0 24px -6px rgba(45, 208, 224, .5), inset 0 1px 0 rgba(255,255,255,.12);
}
.jdot svg { width: 26px; height: 26px; }
.jdot.is-end { background: var(--grad-coral-btn); border-color: rgba(255,160,140,.7); color: #fff; box-shadow: var(--glow-coral); }
.jnum {
  display: block; font-family: var(--serif); font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-size: 1.05rem; color: var(--cyan-300); letter-spacing: .08em; margin-bottom: 4px;
}
.jstep h4 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.jstep p { color: var(--on-navy-dim); font-size: .95rem; line-height: 1.5; }

@media (max-width: 940px) {
  .journey { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .journey::before {
    top: 0; bottom: 0; left: 31px; right: auto; width: 2px; height: auto;
    background: linear-gradient(180deg, transparent, var(--cyan-300), var(--teal-400), var(--cyan-300), transparent);
  }
  .jstep { display: grid; grid-template-columns: 64px 1fr; column-gap: 22px; align-items: start; padding: 14px 0; }
  .jdot { margin: 0; grid-row: span 3; }
  .jnum, .jstep h4, .jstep p { text-align: left; }
}

/* ---------- CTA panel ---------- */
.cta-panel {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 80% at 80% -10%, rgba(45,208,224,.4), transparent 60%),
    radial-gradient(70% 90% at 10% 120%, rgba(59,143,224,.4), transparent 60%),
    linear-gradient(150deg, var(--blue-700), var(--blue-900));
  border: 1px solid rgba(132, 230, 239, .2);
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 84px) clamp(28px, 6vw, 80px);
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 60px -16px rgba(45,208,224,.3);
}
.cta-glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(45,208,224,.4), transparent 68%);
  pointer-events: none;
  animation: drift 20s ease-in-out infinite alternate;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--blue-900), var(--blue-950));
  color: var(--on-navy); padding-block: clamp(56px, 7vw, 84px) 32px;
}
.site-footer::before {
  content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 80vw; max-width: 900px; aspect-ratio: 2;
  background: radial-gradient(ellipse, rgba(45,208,224,.14), transparent 65%);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; position: relative; }
.site-footer img.flogo { height: 64px; width: auto; margin-bottom: 18px; }
.site-footer h5 {
  font-family: var(--sans); font-weight: 700; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cyan-300); margin: 0 0 18px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: var(--on-navy-dim); transition: color .18s ease; font-weight: 500; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .85rem; color: var(--on-navy-dim); position: relative;
}
.footer-legal a { color: var(--on-navy-dim); transition: color .18s ease; }
.footer-legal a:hover { color: #fff; }

/* ---------- Forms ---------- */
.cform .field { margin-bottom: 18px; }
.cform .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform label {
  display: block; font-weight: 600; font-size: .92rem; color: var(--navy);
  margin-bottom: 7px;
}
.cform .req { color: var(--coral-deep); }
.cform .opt { color: var(--ink-3); font-weight: 500; }
.cform input, .cform select, .cform textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: rgba(255,255,255,.7);
  border: 1.5px solid rgba(21,130,194,.18);
  border-radius: var(--r-sm);
  padding: 0.85em 1em; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.cform textarea { resize: vertical; min-height: 120px; }
.cform input::placeholder, .cform textarea::placeholder { color: var(--ink-3); }
.cform input:focus, .cform select:focus, .cform textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 4px rgba(45,208,224,.16);
}
.cform .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent-group {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(21,130,194,.12);
  display: flex; flex-direction: column; gap: 16px;
}
.cform .consent {
  display: flex; align-items: flex-start; gap: 12px;
  margin: 0; padding: 0; font-weight: 400; font-size: .9rem;
  line-height: 1.55; color: var(--ink-2); cursor: pointer;
}
.cform .consent input[type="checkbox"] {
  flex: none; width: 20px; height: 20px; min-width: 20px;
  margin: 2px 0 0; padding: 0; border: 0; background: none;
  accent-color: var(--teal-deep); cursor: pointer;
}
.cform .consent > span { flex: 1; min-width: 0; }
.cform .consent a { color: var(--teal-deep); font-weight: 600; }
.cform .consent a:hover { color: var(--coral-deep); }
/* Keep the Turnstile widget left-aligned and tidy */
.form-consent-group .cf-turnstile { margin: 0; min-height: 65px; }
@media (max-width: 480px) { .cform .field-row { grid-template-columns: 1fr; } }

.form-alert {
  border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 22px;
  font-weight: 600; display: flex; gap: 10px; align-items: flex-start;
}
.form-alert.ok { background: var(--teal-wash); color: var(--teal-deep); border: 1px solid var(--teal-light); }
.form-alert.err { background: #ffe9e4; color: var(--coral-deep); border: 1px solid #ffc8bd; }

.next-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.next-list li { display: flex; gap: 16px; align-items: flex-start; }
.next-list strong { color: var(--navy); }
.next-ico {
  flex: none; width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; background: #fff;
  border: 1px solid rgba(21,130,194,.12); color: var(--teal-deep); box-shadow: var(--shadow-sm);
}
.next-ico svg { width: 24px; height: 24px; }

/* ---------- Legal / policy pages ---------- */
.legal { max-width: 760px; }
.legal h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin-top: 2.4rem; margin-bottom: .8rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(21,130,194,.14);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 1.2rem; margin-top: 1.6rem; margin-bottom: .5rem; color: var(--navy); }
.legal p { color: var(--ink-2); margin-bottom: 1.1em; }
.legal ul { color: var(--ink-2); padding-left: 1.3em; margin: 0 0 1.2em; }
.legal li { margin-bottom: .5em; }
.legal a { color: var(--teal-deep); font-weight: 600; }
.legal a:hover { color: var(--coral-deep); }
.legal .updated {
  display: inline-block; font-size: .9rem; color: var(--ink-3);
  background: rgba(21,130,194,.07); border: 1px solid rgba(21,130,194,.14);
  padding: .4em .9em; border-radius: 999px; margin-bottom: 2rem;
}
.legal strong { color: var(--navy); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.muted { color: var(--ink-3); }
.maxw-prose { max-width: 64ch; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: grid; place-items: center; }
}
@media (max-width: 560px) {
  .help-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .card { padding: 28px; }
  .btn-row .btn { width: 100%; justify-content: center; }
  .section--navy::before, .section--navy::after,
  .section--teal::before, .section--teal::after { filter: blur(40px); }
}
