/* ============================
   Flyosys - Premium Corporate
   ============================ */

:root {
  --brand: #2596be;
  --brand-dark: #1a7795;
  --brand-light: #4fb0d4;
  --brand-soft: #e8f4fa;
  --ink: #0b1220;
  --ink-2: #1a2332;
  --ink-3: #2a3648;
  --muted: #5b6b82;
  --line: #e6eaf0;
  --cream: #f7f5ef;
  --white: #ffffff;
  --accent: #ffd166;
  --max: 1200px;
  --radius: 16px;
  --shadow: 0 20px 60px -20px rgba(11, 18, 32, 0.18);
  --shadow-soft: 0 10px 40px -16px rgba(37, 150, 190, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 50%, var(--accent) 100%);
  z-index: 200;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 12px rgba(37, 150, 190, 0.5);
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand); }

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

.serif {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 1.8vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

.eyebrow {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--brand);
  display: inline-block;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn:hover::before { left: 100%; }
.btn-primary {
  background: #1a4295;
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-brand {
  background: var(--brand);
  color: var(--white);
}
.btn-brand:hover {
  background: var(--brand-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-light {
  background: var(--white);
  color: var(--ink);
}
.btn-light:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
}
.btn i { font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230,234,240,0.6);
  transition: background .3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span {
  width: 18px; height: 2px; background: var(--ink);
  display: block; position: relative;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--ink);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
.hero .lead {
  font-size: 1.2rem;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta div strong {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* Hero visual - AI visibility orbit */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  width: 100%;
  justify-self: end;
}
.orbit {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(37, 150, 190, 0.3);
  border-radius: 50%;
  animation: rotate 40s linear infinite;
}
.orbit.o2 { inset: 12%; animation-duration: 30s; animation-direction: reverse; border-style: solid; border-color: rgba(37, 150, 190, 0.15); }
.orbit.o3 { inset: 28%; animation-duration: 22s; }
.orbit-dot {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(37, 150, 190, 0.12);
}
.orbit .d1 { top: -7px; left: 50%; transform: translateX(-50%); }
.orbit .d2 { bottom: 20%; right: 0; background: var(--ink); box-shadow: 0 0 0 8px rgba(11, 18, 32, 0.08); }
.orbit .d3 { top: 20%; left: -7px; background: var(--accent); box-shadow: 0 0 0 8px rgba(255, 209, 102, 0.18); }
.hero-core {
  position: absolute;
  inset: 40%;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--brand);
}
.hero-core::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(37, 150, 190, 0.25);
  animation: pulse 3s ease-in-out infinite;
}
.ai-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}
.ai-chip i { color: var(--brand); font-size: 0.95rem; }
.ai-chip.c1 { top: -2%; right: 6%; animation-delay: 0s; }
.ai-chip.c2 { top: 46%; left: -12%; animation-delay: 2s; }
.ai-chip.c3 { bottom: -2%; right: -6%; animation-delay: 4s; }

@keyframes rotate {
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  pointer-events: none;
  z-index: 1;
}
.blob.b1 { width: 500px; height: 500px; background: var(--brand-light); top: -150px; right: -150px; animation: drift 18s ease-in-out infinite; }
.blob.b2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -100px; opacity: .22; animation: drift 22s ease-in-out infinite reverse; }

@keyframes drift {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(40px, -30px); }
}

/* ---------- Floating particles ---------- */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  opacity: 0.25;
  animation: particle-rise linear infinite;
  box-shadow: 0 0 10px var(--brand);
}
.particles span:nth-child(1) { left: 8%; animation-duration: 14s; animation-delay: 0s; width: 4px; height: 4px; }
.particles span:nth-child(2) { left: 18%; animation-duration: 18s; animation-delay: 2s; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.particles span:nth-child(3) { left: 28%; animation-duration: 12s; animation-delay: 5s; width: 3px; height: 3px; }
.particles span:nth-child(4) { left: 38%; animation-duration: 16s; animation-delay: 1s; width: 5px; height: 5px; }
.particles span:nth-child(5) { left: 48%; animation-duration: 20s; animation-delay: 3s; }
.particles span:nth-child(6) { left: 58%; animation-duration: 15s; animation-delay: 6s; width: 4px; height: 4px; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.particles span:nth-child(7) { left: 68%; animation-duration: 17s; animation-delay: 4s; width: 3px; height: 3px; }
.particles span:nth-child(8) { left: 78%; animation-duration: 13s; animation-delay: 7s; }
.particles span:nth-child(9) { left: 88%; animation-duration: 19s; animation-delay: 2.5s; width: 5px; height: 5px; }
.particles span:nth-child(10) { left: 92%; animation-duration: 14s; animation-delay: 8s; width: 3px; height: 3px; }

@keyframes particle-rise {
  0% { bottom: -20px; opacity: 0; transform: translateX(0) scale(0.5); }
  15% { opacity: 0.4; }
  85% { opacity: 0.4; }
  100% { bottom: 110%; opacity: 0; transform: translateX(30px) scale(1.2); }
}

/* ---------- Rotating AI word ---------- */
.rotate-word {
  display: inline-block;
  position: relative;
  color: var(--brand);
  font-weight: 700;
  min-width: 140px;
  text-align: left;
}
.rotate-word span {
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
  white-space: nowrap;
}
.rotate-word span.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  position: relative;
}
.marquee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink-3);
  opacity: 0.72;
  transition: opacity .2s ease, color .2s ease;
  white-space: nowrap;
}
.marquee-item:hover { opacity: 1; color: var(--brand); }
.marquee-item i { color: var(--brand); font-size: 1.15rem; }
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Tilt cards (JS-enhanced) ---------- */
.tilt {
  transform-style: preserve-3d;
  transition: transform .25s ease-out, box-shadow .25s ease;
  will-change: transform;
}
.tilt:hover { box-shadow: 0 30px 80px -30px rgba(11, 18, 32, 0.35); }

/* ---------- Custom cursor glow ---------- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 150, 190, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: multiply;
}
.hero:hover .cursor-glow, .page-hero:hover .cursor-glow { opacity: 1; }

/* ---------- Sections ---------- */
section { position: relative; }
.section {
  padding: 110px 0;
}
.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .lead { color: rgba(255,255,255,0.72); }
.section-dark .eyebrow { color: var(--brand-light); }
.section-dark .eyebrow::before { background: var(--brand-light); }

.section-cream { background: var(--cream); }
.section-soft { background: var(--brand-soft); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head-center .eyebrow { justify-content: center; }
.section-head-center .lead { margin: 16px auto 0; }

/* ---------- Problem Section ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.problem-card {
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: transform .3s ease, background .3s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  background: rgba(37, 150, 190, 0.1);
  border-color: rgba(37, 150, 190, 0.3);
}
.problem-card .num {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  color: var(--brand-light);
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-bottom: 16px;
}
.problem-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ---------- Solution / Framework ---------- */
.framework {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.fw-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.fw-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: var(--shadow-soft);
}
.fw-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.fw-card:hover::before { transform: scaleX(1); }
.fw-icon {
  width: 48px; height: 48px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.fw-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.fw-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card:hover h3, .service-card:hover .svc-num { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.72); }
.service-card:hover .svc-arrow { background: var(--brand); color: var(--white); }
.svc-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brand);
  margin-bottom: 20px;
  display: block;
  transition: color .3s ease;
}
.service-card h3 { margin-bottom: 14px; transition: color .3s ease; }
.service-card p { color: var(--muted); font-size: 0.95rem; transition: color .3s ease; }
.svc-arrow {
  margin-top: 28px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat strong {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  font-weight: 400;
  display: block;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}
.stat strong em { color: var(--brand-light); font-style: italic; }
.stat span {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--brand) 0, var(--brand) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--brand);
  color: var(--brand);
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Testimonial / Case ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s ease;
}
.case-card:hover { border-color: var(--brand); box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.case-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.case-card h3 { margin-bottom: 14px; }
.case-card p { color: var(--muted); margin-bottom: 24px; font-size: 0.96rem; }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.case-metrics strong {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--brand);
  display: block;
}
.case-metrics span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
}
.faq-q::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--brand);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  transition: transform .3s ease;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  color: var(--muted);
  font-size: 0.98rem;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 16px; }

/* ---------- CTA Band ---------- */
.cta-band {
  padding: 100px 0;
  background: linear-gradient(120deg, var(--ink) 0%, #0e1a2e 50%, var(--brand-dark) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 12s ease infinite;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.cta-band h2 { color: var(--white); margin-bottom: 20px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 36px; font-size: 1.1rem; }
.cta-band .btn { font-size: 1rem; padding: 16px 28px; }
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 150, 190, 0.3), transparent 40%),
              radial-gradient(circle at 80% 30%, rgba(79, 176, 212, 0.25), transparent 40%);
  pointer-events: none;
  animation: breath 8s ease-in-out infinite;
}
@keyframes breath {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.foot-brand img { height: 36px; margin-bottom: 20px; }
.foot-brand p { font-size: 0.95rem; max-width: 320px; }
.foot-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; font-family: "Plus Jakarta Sans", sans-serif; text-transform: uppercase; letter-spacing: 0.1em; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { color: rgba(255,255,255,0.65); font-size: 0.93rem; }
.foot-col a:hover { color: var(--brand-light); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all .2s ease;
}
.socials a:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 170px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { max-width: 820px; margin-bottom: 20px; }
.page-hero .lead { font-size: 1.2rem; max-width: 680px; }
.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- About Page Founder ---------- */
.founder-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.founder-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.founder-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder-img::after {
  content: "6+ YEARS";
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 10px 16px;
  background: var(--brand);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.founder-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.founder-badge .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; }

.founder-quote {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--cream);
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-2);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all .3s ease;
}
.contact-card:hover { border-color: var(--brand); box-shadow: var(--shadow-soft); }
.contact-card .ico {
  width: 52px; height: 52px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card h4 { margin-bottom: 6px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.contact-card .val { font-family: "Fraunces", serif; font-size: 1.2rem; color: var(--ink); }

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

/* ---------- Mobile ---------- */
@media (max-width: 968px) {
  .hero-grid, .founder-block, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .services-grid, .problem-grid, .framework, .case-grid, .stats, .process { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .process::before { display: none; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .home-page .nav-cta .btn-primary { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 20px;
  }
  .section { padding: 80px 0; }
  .hero { padding: 130px 0 70px; }
  .page-hero { padding: 140px 0 60px; }
  .services-grid, .problem-grid, .framework, .case-grid, .stats, .process { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { gap: 24px; flex-wrap: wrap; }
  .hero-meta div strong { font-size: 1.6rem; }
  .foot-bottom { flex-direction: column; text-align: center; }
}
