/* ============================================================
   Klik Marketing — Styles
   Editorial-sport design system
   Brand: #1865a0 / #079af4 / #ffffff + amber #ffc42e
   Type: Gelasio (serif display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  --ink: #0c2a45;            /* deep brand navy */
  --ink-2: #123a5e;
  --brand: #1865a0;          /* primary brand blue */
  --brand-700: #134f7e;
  --brand-bright: #079af4;   /* bright accent blue */
  --yellow: #ffc42e;         /* accent amber */
  --yellow-600: #eab000;
  --paper: #ffffff;
  --mist: #f3f7fb;
  --mist-2: #e6eef7;
  --text: #1b2a3a;
  --muted: #56697e;
  --muted-2: #8496a9;
  --line: #e0e9f3;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 8px rgba(12, 42, 69, .07);
  --shadow: 0 18px 40px -18px rgba(12, 42, 69, .24);
  --shadow-lg: 0 34px 80px -28px rgba(12, 42, 69, .42);
  --container: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Gelasio", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: var(--ink); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: var(--ink); margin: 0 0 .4em; letter-spacing: -0.012em; text-wrap: balance; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

:focus-visible { outline: 3px solid var(--brand-bright); outline-offset: 3px; border-radius: 4px; }

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

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

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--yellow), var(--brand-bright));
  z-index: 70; pointer-events: none; border-radius: 0 99px 99px 0;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-sans); font-weight: 700; font-size: .98rem;
  padding: .85em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 12px 28px -12px rgba(24, 101, 160, .85);
}
.btn-primary::after {
  content: "→"; font-weight: 800; margin-left: .1em;
  transition: transform .25s var(--ease);
}
.btn-primary:hover { background: var(--brand-bright); box-shadow: 0 18px 38px -12px rgba(7, 154, 244, .9); }
.btn-primary:hover::after { transform: translateX(4px); }
.btn-accent { background: var(--yellow); color: var(--ink); box-shadow: 0 12px 28px -12px rgba(234, 176, 0, .85); }
.btn-accent:hover { background: var(--yellow-600); box-shadow: 0 18px 38px -12px rgba(234, 176, 0, .9); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(12, 42, 69, .22); }
.btn-ghost:hover { border-color: var(--ink); background: var(--mist); }
.btn-sm { padding: .62em 1.15em; font-size: .9rem; }
.btn-sm::after { content: none; }
.btn-lg { padding: 1em 1.8em; font-size: 1.05rem; }
.btn-block { width: 100%; }

.link-arrow { font-weight: 700; color: var(--brand); border-bottom: 2px solid var(--yellow); padding-bottom: 2px; transition: color .2s; }
.link-arrow:hover { color: var(--brand-bright); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: inline-flex; align-items: center; }
.brand .wordmark { height: 44px; width: auto; display: block; transition: height .3s var(--ease), transform .25s var(--ease); }
.brand:hover .wordmark { transform: scale(1.04); }
.site-header.scrolled .wordmark { height: 36px; }
.footer-mark { height: 48px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links > a:not(.btn) { font-weight: 600; color: var(--ink); font-size: .97rem; position: relative; }
.nav-links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -7px; height: 3px; width: 0;
  background: var(--yellow); border-radius: 2px; transition: width .25s var(--ease);
}
.nav-links > a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: .25rem; padding: 12px 24px 22px; background: var(--paper); border-bottom: 1px solid var(--line); }
.mobile-menu a:not(.btn) { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(72px, 10vw, 130px) 0 clamp(56px, 8vw, 100px);
  background:
    radial-gradient(54% 58% at 12% 4%, rgba(7, 154, 244, .09), transparent 62%),
    radial-gradient(44% 56% at 90% 14%, rgba(255, 196, 46, .14), transparent 60%),
    var(--paper);
}
.hero-deco { position: absolute; inset: 0; pointer-events: none; will-change: transform; }
.court { position: absolute; color: var(--brand); opacity: .07; }
.court-r { width: clamp(260px, 30vw, 430px); right: -70px; top: -40px; transform: rotate(14deg); }
.ball { position: absolute; width: 34px; filter: drop-shadow(0 6px 10px rgba(217, 158, 0, .35)); animation: bounce 5.2s ease-in-out infinite; }
.ball-1 { right: 12%; top: 22%; }
.ball-2 { left: 7%; top: 58%; width: 24px; animation-delay: 1.6s; }
@keyframes bounce { 0%, 100% { translate: 0 0; } 50% { translate: 0 -18px; } }

.hero-inner { position: relative; text-align: center; max-width: 920px; margin-inline: auto; }
.hero h1 {
  position: relative; font-size: clamp(2.7rem, 7vw, 5rem); line-height: 1.06;
  max-width: 860px; margin-inline: auto;
}
.sparkle { position: absolute; width: clamp(20px, 3vw, 32px); animation: twinkle 2.6s ease-in-out infinite; }
.sparkle-1 { left: clamp(-10px, 1vw, 30px); top: -26px; }
.sparkle-2 { left: clamp(18px, 4.5vw, 72px); top: 6px; width: clamp(11px, 1.6vw, 17px); animation-delay: 1.2s; }
@keyframes twinkle { 0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; } 50% { transform: scale(.55) rotate(18deg); opacity: .65; } }

.swipe { position: relative; white-space: nowrap; }
.swipe svg { position: absolute; left: -1%; bottom: -.18em; width: 102%; height: .26em; }

.hero-sub { font-size: clamp(1.06rem, 2.1vw, 1.32rem); color: var(--muted); max-width: 680px; margin: 1.5rem auto 0; }
.hero-sub strong { color: var(--ink); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); background: #fff; border: 1px solid var(--line);
  padding: .55em 1.1em; border-radius: 999px; margin: 0 0 1.7rem;
  box-shadow: var(--shadow-sm);
}
.ping { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 0 rgba(255, 196, 46, .7); animation: ping 1.8s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(255, 196, 46, .6); } 70% { box-shadow: 0 0 0 12px rgba(255, 196, 46, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 196, 46, 0); } }

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.3rem; }

.hero-stats {
  display: flex; justify-content: center; gap: clamp(1.6rem, 5vw, 4.5rem);
  margin-top: 4rem; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: calc(-1 * clamp(.8rem, 2.5vw, 2.25rem)); top: 12%; bottom: 12%;
  width: 1px; background: var(--line);
}
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4.4vw, 3.1rem); color: var(--brand); line-height: 1; }
.stat-label { font-size: .9rem; color: var(--muted); margin-top: .55rem; max-width: 160px; }

/* ---------- Trust marquee ---------- */
.trust { background: var(--ink); padding: 26px 0; overflow: hidden; position: relative; }
.trust::before, .trust::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.trust::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.trust::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.trust-track {
  display: flex; align-items: center; gap: 2.2rem; white-space: nowrap; width: max-content;
  animation: scroll-x 38s linear infinite;
  font-family: var(--font-sans); font-weight: 800; font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  letter-spacing: .04em; text-transform: uppercase; color: #fff; padding-left: 2.2rem;
}
.trust-track .ghost {
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(255, 255, 255, .55);
}
.trust-track .dot { color: var(--yellow); font-size: .55em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.trust:hover .trust-track { animation-play-state: paused; }

/* ---------- Section shell ---------- */
.section { padding: clamp(72px, 9.5vw, 120px) 0; }
.section-alt { background: var(--mist); }

/* Dark navy sections */
.section-dark {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--ink) 0%, var(--ink-2) 55%, #16456e 100%);
}
.section-dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(42% 50% at 88% 0%, rgba(7, 154, 244, .14), transparent 65%),
    radial-gradient(34% 44% at 4% 96%, rgba(255, 196, 46, .08), transparent 60%);
}
.section-dark > .container { position: relative; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-lead { color: #b9cadd; }
.section-dark .kicker { color: #3aa9f7; }
.section-head { max-width: 760px; margin: 0 auto clamp(44px, 5vw, 64px); text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 800; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-bright); margin: 0 0 .8rem;
}
.kicker::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); }
.section-lead { color: var(--muted); font-size: 1.1rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px 30px; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--brand-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-num {
  display: inline-flex; align-items: baseline; gap: .3em;
  font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; line-height: 1;
  color: var(--brand); margin-bottom: 1.1rem;
}
.card-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); display: inline-block; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Who we serve ---------- */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.who-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.who-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(var(--yellow), var(--brand-bright)); transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--ease);
}
.who-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.who-card:hover::before { transform: scaleY(1); }
.who-num { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--brand-bright); }
.who-card h3 { margin: .45rem 0 .4rem; }
.who-card p { color: var(--muted); margin: 0; font-size: .96rem; }
.who-cta {
  background: linear-gradient(150deg, var(--brand), var(--ink)); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.who-cta::before { display: none; }
.who-cta h3 { color: #fff; }
.who-cta p { color: #d6e7f6; margin-bottom: 1rem; }
.who-cta .link-arrow { color: var(--yellow); border-color: var(--yellow); align-self: flex-start; }
.who-cta .link-arrow:hover { color: #fff; }

/* Who-cards on a dark section: glass tiles + yellow flip card */
.section-dark .who-card {
  background: rgba(255, 255, 255, .045); border-color: rgba(255, 255, 255, .13);
  box-shadow: none;
}
.section-dark .who-card p { color: #a9bdd2; }
.section-dark .who-num { color: var(--yellow); }
.section-dark .who-card:hover {
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 26px 50px -22px rgba(0, 0, 0, .55);
}
.section-dark .who-cta { background: var(--yellow); }
.section-dark .who-cta:hover { background: #fff; }
.section-dark .who-cta h3 { color: var(--ink); }
.section-dark .who-cta p { color: rgba(12, 42, 69, .75); }
.section-dark .who-cta .link-arrow { color: var(--ink); border-color: var(--ink); }
.section-dark .who-cta .link-arrow:hover { color: var(--brand-700); }

/* ---------- Approach ---------- */
.approach { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.approach-list { list-style: none; padding: 0; margin: 1.9rem 0 2.3rem; display: grid; gap: 1.4rem; }
.approach-list li { display: flex; gap: 1.05rem; }
.approach-list .check {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--yellow); color: var(--ink); font-weight: 800; font-size: .92rem; margin-top: 2px;
  box-shadow: 0 6px 14px -6px rgba(234, 176, 0, .7);
}
.approach-list strong { display: block; color: var(--ink); margin-bottom: .15rem; font-size: 1.06rem; }
.approach-list div { color: var(--muted); }

/* Orbit visual */
.approach-visual { display: grid; place-items: center; }
.orbit {
  position: relative; width: min(430px, 84vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(7, 154, 244, .12), transparent 62%);
  display: grid; place-items: center;
}
.orbit::before, .orbit::after {
  content: ""; position: absolute; inset: 8%; border: 1.5px dashed var(--mist-2); border-radius: 50%;
}
.orbit::before { animation: spin 60s linear infinite; }
.orbit::after { inset: 24%; border-color: var(--line); animation: spin 90s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-core {
  width: 42%; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: linear-gradient(150deg, var(--ink), var(--brand)); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(.85rem, 2vw, 1.05rem);
  box-shadow: var(--shadow-lg), inset 0 0 0 6px rgba(255, 196, 46, .22); line-height: 1.2;
}
.chip {
  position: absolute; background: var(--paper); border: 1px solid var(--line);
  padding: .45em .9em; border-radius: 999px; font-weight: 700; font-size: .84rem; color: var(--brand);
  box-shadow: var(--shadow-sm); animation: float 6s ease-in-out infinite;
}
.chip-1 { top: 2%; left: 50%; transform: translateX(-50%); }
.chip-2 { top: 22%; right: -4%; animation-delay: .6s; }
.chip-3 { bottom: 22%; right: -2%; animation-delay: 1.2s; }
.chip-4 { bottom: 2%; left: 50%; transform: translateX(-50%); animation-delay: 1.8s; }
.chip-5 { bottom: 22%; left: -4%; animation-delay: 2.4s; }
.chip-6 { top: 22%; left: -2%; animation-delay: 3s; }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -9px; } }

/* ---------- Meet Eric / founder ---------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.about-media { position: relative; }
.about-media::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border-radius: var(--radius-lg);
  border: 2px solid var(--mist-2); z-index: 0;
}
.about-img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block;
}
.about-badge {
  position: absolute; right: -16px; bottom: 28px; z-index: 2; display: flex; flex-direction: column; line-height: 1;
  background: var(--yellow); color: var(--ink); font-family: var(--font-sans); font-weight: 800;
  font-size: 1.45rem; padding: .72em .95em; border-radius: 18px; box-shadow: var(--shadow);
  rotate: 3deg;
}
.about-badge small { font-weight: 600; font-size: .56rem; letter-spacing: .05em; text-transform: uppercase; margin-top: .4em; opacity: .82; }
.about-role { color: var(--brand-bright); font-weight: 700; margin: -.2rem 0 1rem; }
.section-dark .about-media::before { border-color: rgba(255, 255, 255, .16); }
.section-dark .about-role { color: #3aa9f7; }

/* Founder quick-facts grid */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 1.7rem 0 2.1rem; }
.fact {
  position: relative; background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .13); border-radius: 16px;
  padding: 18px 20px 16px;
  transition: background .25s, transform .3s var(--ease);
}
.fact:hover { background: rgba(255, 255, 255, .08); transform: translateY(-3px); }
.fact::before {
  content: ""; display: block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--yellow); margin-bottom: .65rem;
}
.fact strong {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 1.12rem; color: #fff; margin-bottom: .25rem;
}
.fact span { display: block; color: #a9bdd2; font-size: .9rem; line-height: 1.55; }
@media (max-width: 960px) {
  .about { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; margin-inline: auto; }
}
@media (max-width: 480px) {
  .facts { grid-template-columns: 1fr; }
}

/* ---------- Steps ---------- */
.steps {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.steps::before {
  content: ""; position: absolute; top: 49px; left: 4%; right: 4%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--mist-2) 0 10px, transparent 10px 20px);
}
.step {
  position: relative; padding: 28px 24px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: var(--brand); color: var(--yellow);
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 1.05rem;
  box-shadow: 0 10px 20px -10px rgba(24, 101, 160, .8);
}
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- Quote ---------- */
.quote {
  margin: 0; max-width: 920px; margin-inline: auto; text-align: center;
  background: linear-gradient(150deg, var(--ink), var(--ink-2)); color: #fff;
  border-radius: var(--radius-lg); padding: clamp(40px, 5.5vw, 68px);
  position: relative; overflow: hidden;
}
.quote::before {
  content: "\201C"; position: absolute; top: -16px; left: 26px; font-family: var(--font-display);
  font-size: 10rem; color: rgba(255, 196, 46, .22); line-height: 1;
}
.quote::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px;
  border-radius: 50%; border: 2px dashed rgba(255, 255, 255, .08);
}
.quote blockquote {
  margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.3rem, 2.8vw, 1.85rem); line-height: 1.45;
}
.quote-cap { display: flex; align-items: center; justify-content: center; gap: .95rem; margin-top: 1.9rem; }
.quote-meta { text-align: left; }
.quote-name { display: block; font-weight: 700; color: var(--yellow); }
.quote-role { display: block; color: #a9bdd2; font-size: .92rem; }

/* ---------- Avatars + photo fallback ---------- */
.from-eric { display: flex; align-items: center; gap: .85rem; margin: 1.5rem 0; color: var(--ink); font-weight: 600; }
.avatar {
  width: 58px; height: 58px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; display: block;
  box-shadow: 0 0 0 3px rgba(255, 196, 46, .85);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar-sm { width: 48px; height: 48px; }
.from-eric .avatar, .avatar-sm { box-shadow: 0 0 0 3px var(--mist-2); }

[data-photo].photo-missing { background: linear-gradient(150deg, var(--ink), var(--brand)); display: grid; place-items: center; }
.about-media.photo-missing { aspect-ratio: 1 / 1; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
[data-photo].photo-missing::after {
  content: attr(data-label); color: #fff; font-family: var(--font-display); font-weight: 700;
  text-align: center; padding: 1rem;
}
.avatar.photo-missing::after { font-size: 1rem; padding: 0; }
.about-media.photo-missing::after { font-size: 1.25rem; }

/* ---------- CTA / Contact ---------- */
.cta-section { background: var(--mist); position: relative; overflow: hidden; }
.cta-card {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px); box-shadow: var(--shadow); align-items: start; overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--brand-bright), var(--brand));
}
.contact-points { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .7rem; font-weight: 600; color: var(--ink); }
.contact-points a { color: var(--brand-bright); }
.contact-points a:hover { text-decoration: underline; }

.cta-form { display: grid; gap: 1.05rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; font-size: .9rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 1rem; color: var(--text);
  padding: .8em .95em; border: 1.5px solid var(--line); border-radius: 13px; background: var(--mist);
  transition: border-color .2s, box-shadow .2s, background .2s; width: 100%; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-bright); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(7, 154, 244, .18);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e2574c; box-shadow: 0 0 0 4px rgba(226, 87, 76, .12); }
.hp { display: none; }
.form-note { margin: .4rem 0 0; font-weight: 600; font-size: .94rem; min-height: 1.2em; }
.form-note.ok { color: var(--brand); }
.form-note.err { color: #e2574c; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c6d6e6; padding: 64px 0 0; overflow: hidden; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-brand p { margin: .9rem 0 0; max-width: 320px; color: #a9bdd2; }
.footer-links { display: flex; gap: 1.7rem; flex-wrap: wrap; align-items: center; }
.footer-links a { font-weight: 600; color: #c6d6e6; position: relative; }
.footer-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--yellow); border-radius: 2px; transition: width .25s var(--ease);
}
.footer-links a:hover { color: var(--yellow); }
.footer-links a:hover::after { width: 100%; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: .9rem; color: #8aa0b6; }
.footer-watermark {
  font-family: var(--font-display); font-weight: 700; text-align: center;
  font-size: clamp(7rem, 22vw, 19rem); line-height: .72; margin-top: 34px;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .09);
  user-select: none; pointer-events: none; letter-spacing: -.03em;
  transform: translateY(12%);
}
.footer-watermark span { -webkit-text-stroke: 0; color: rgba(7, 154, 244, .35); }

/* ============================================================
   Homepage conversion blocks
   ============================================================ */

/* Hero trust line */
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.7rem;
  margin: 1.7rem 0 0; padding: 0; list-style: none;
  color: var(--muted); font-weight: 600; font-size: .92rem;
}
.hero-trust li { display: inline-flex; align-items: center; gap: .5em; }
.hero-trust li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }

/* Free audit lead-magnet band */
.audit { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-bright) 100%); color: #fff; }
.audit::before { content: ""; position: absolute; right: -90px; top: -90px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255, 255, 255, .08); }
.audit::after { content: ""; position: absolute; left: -70px; bottom: -110px; width: 280px; height: 280px; border-radius: 50%; border: 2px dashed rgba(255, 255, 255, .18); }
.audit-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.audit h2 { color: #fff; }
.audit .kicker { color: #fff; }
.audit .kicker::before { background: var(--yellow); }
.audit > .audit-grid > div:first-child > p { color: rgba(255, 255, 255, .92); font-size: 1.08rem; }
.audit-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .85rem; }
.audit-list li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 600; }
.audit-list .check {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--yellow);
  color: var(--ink); display: grid; place-items: center; font-weight: 800; font-size: .78rem; margin-top: 2px;
}
.audit-card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 40px); text-align: center; box-shadow: var(--shadow-lg); }
.audit-free { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--brand); line-height: 1; }
.audit-card-note { color: var(--muted); margin: .4rem 0 1.4rem; font-weight: 600; }

/* FAQ */
.faq { max-width: 780px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 48px 22px 0; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 1.14rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-sans); font-size: 1.6rem; line-height: 1; color: var(--brand-bright); transition: transform .25s;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--brand); }
.faq details p { color: var(--muted); margin: 0 0 22px; padding-right: 48px; }

@media (max-width: 900px) {
  .audit-grid { grid-template-columns: 1fr; }
}

/* Client logo strip */
.logos { padding: 40px 0 14px; }
.logos-label {
  text-align: center; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 800; margin: 0 0 20px;
}
.logo-row { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 4vw, 44px); flex-wrap: wrap; }
.logo-ph { height: 48px; width: 132px; display: grid; place-items: center; border-radius: 10px; overflow: hidden; }
.logo-ph img { max-height: 48px; max-width: 132px; width: auto; height: auto; filter: grayscale(1); opacity: .6; transition: filter .25s, opacity .25s; }
.logo-ph img:hover { filter: none; opacity: 1; }
.logo-ph.photo-missing { background: var(--mist); border: 1px dashed var(--line); }
.logo-ph.photo-missing::after { font-family: var(--font-sans); font-size: .78rem; font-weight: 700; color: var(--muted-2); padding: 0; }

/* Metrics on dark sections */
.section-dark .metric strong { color: var(--yellow); }
.section-dark .metric span { color: #a9bdd2; }

/* Sticky mobile CTA */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94); backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(12, 42, 69, .08);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.mobile-cta.show { transform: none; }
@media (max-width: 720px) { .mobile-cta { display: block; } }

/* ============================================================
   Legal, thanks & 404 pages
   ============================================================ */
.legal { max-width: 760px; margin-inline: auto; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.1rem); }
.legal-updated { color: var(--muted-2); font-weight: 600; font-size: .92rem; margin: 0 0 2.2rem; }
.legal h2 { font-size: 1.45rem; margin-top: 2.4rem; }
.legal h3 { font-size: 1.12rem; margin-top: 1.5rem; }
.legal p, .legal li { color: var(--muted); font-size: 1.02rem; }
.legal ul { padding-left: 1.25rem; margin: 0 0 1rem; }
.legal li { margin-bottom: .45rem; }
.legal a { color: var(--brand-bright); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.footer-bottom a { color: inherit; font-weight: 600; }
.footer-bottom a:hover { color: var(--yellow); }

.notfound { text-align: center; padding: clamp(70px, 11vw, 130px) 0; }
.nf-code {
  display: flex; align-items: center; justify-content: center; gap: .08em;
  font-family: var(--font-display); font-weight: 700; line-height: 1;
  font-size: clamp(6rem, 18vw, 11rem); color: var(--ink);
}
.nf-code svg { width: .82em; height: .82em; animation: bounce 3.4s ease-in-out infinite; }
.notfound h1 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-top: .4em; }
.notfound p { color: var(--muted); max-width: 46ch; margin-inline: auto; }
.nf-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

.thanks { text-align: center; padding: clamp(70px, 10vw, 120px) 0; }
.thanks-check {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 1.6rem;
  background: var(--yellow); display: grid; place-items: center;
  font-size: 2.6rem; font-weight: 800; color: var(--ink);
  box-shadow: 0 18px 40px -14px rgba(234, 176, 0, .75);
}
.thanks h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.thanks p { color: var(--muted); max-width: 52ch; margin-inline: auto; }
.thanks-next {
  max-width: 560px; margin: 2.2rem auto 0; text-align: left;
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 30px;
}
.thanks-next h2 { font-size: 1.2rem; }
.thanks-next ol { margin: 0; padding-left: 1.3rem; color: var(--muted); }
.thanks-next li { margin-bottom: .5rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards, .who-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .approach { grid-template-columns: 1fr; }
  .approach-visual { order: -1; }
  .cta-card { grid-template-columns: 1fr; }
  .court-r { opacity: .05; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu:not([hidden]) { display: flex; }
  .ball { display: none; }
}
@media (max-width: 560px) {
  .cards, .who-grid, .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.6rem; }
  .stat + .stat::before { display: none; }
  .footer-inner { flex-direction: column; }
  .about-badge { right: 8px; }
}
