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

/* ============================================================
   COLOUR VARIABLES — ONLY EDIT THIS BLOCK TO CHANGE COLOURS
   ============================================================
   --accent         buttons, links, highlights, icons
   --accent-hover   button hover state
   --accent-dim     darker accent for gradients/avatars
   --bg             main page background
   --bg-alt         slightly warmer sections (How it works, Founders)
   --bg-card        card / offer box background
   --bg-card-mid    timeline dots, step number backgrounds
   --bg-card-light  lighter card variant
   --text           all body text and headings
   --text-muted     secondary / dimmed text
   --text-subtle    placeholders, legal, faint labels
   --mist           italic accent colour in headings
   ============================================================ */
:root {
  --accent:        #c46a4a;
  --accent-hover:  #d47e5e;
  --accent-dim:    #9a5238;

  --bg:            #fff9f1;
  --bg-alt:        #edf5f8;
  --bg-card:       #f5ede2;
  --bg-card-mid:   #e8dccb;
  --bg-card-light: #d8c8b2;

  --text:          #1f1a14;
  --text-muted:    rgba(31, 26, 20, 0.65);
  --text-subtle:   rgba(31, 26, 20, 0.42);

  --mist:          #7ea5dc;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 12px; height: 12px;
  background: var(--mist);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--mist);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(245,237,224,0.95), transparent);
}
.logo {
  font-family: 'Outfit', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em; text-decoration: none;
}
.logo span { color: var(--mist); }
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.04em; transition: color 0.2s;
}
nav a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important; color: var(--bg) !important;
  padding: 0.55rem 1.4rem !important; border-radius: 2rem !important;
  font-weight: 500 !important; transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 0.5rem; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none; position: fixed; inset: 0;
  background: rgba(245,237,224,0.98); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a { font-family: 'Outfit', serif; font-size: 2rem; color: var(--text); text-decoration: none; transition: color 0.2s; }
.nav-drawer a:hover { color: var(--mist); }
.nav-drawer .nav-cta { font-family: 'Outfit', sans-serif !important; font-size: 1rem !important; padding: 0.8rem 2rem !important; }

/* ── LANGUAGE TOGGLE ── */
.language-toggle {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.language-toggle a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
}

.language-toggle a.active,
.language-toggle a:hover {
  color: var(--mist);
  font-weight: 600;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 8rem 4rem 4rem;
  position: relative; overflow: hidden; gap: 3rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196,106,74,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(196,106,74,0.05) 0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(42,31,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,31,20,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }

@keyframes spin { to { transform: rotate(360deg); } }
.agent-core-label {
  display: flex; flex-direction: column; align-items: center;
  background: var(--text); border: 1px solid rgba(196,106,74,0.4);
  border-radius: 50%; width: 80px; height: 80px; justify-content: center; z-index: 2;
}
.agent-core-name { font-family: "Outfit", serif; font-size: 0.75rem; font-weight: 700; color: var(--bg); letter-spacing: -0.02em; }
.agent-core-sub { font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); }

.task-node {
  position: absolute; left: 50%; top: 50%;
  transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty)));
  background: rgba(245,237,224,0.92); border: 1px solid rgba(42,31,20,0.1);
  border-radius: 0.75rem; padding: 0.55rem 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap; opacity: 0;
  animation: node-appear 0.5s ease forwards;
}
.task-node:nth-child(2) { animation-delay: 0.3s; }
.task-node:nth-child(3) { animation-delay: 0.6s; }
.task-node:nth-child(4) { animation-delay: 0.9s; }
.task-node:nth-child(5) { animation-delay: 2.2s; }
.task-node:nth-child(6) { animation-delay: 2.5s; }
.task-node:nth-child(7) { animation-delay: 2.8s; }
@keyframes node-appear {
  from { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty) + 10px)); }
  to   { opacity: 1; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))); }
}
.task-icon { font-size: 0.85rem; }
.task-label { font-size: 0.72rem; color: var(--text-muted); font-family: "Outfit", sans-serif; font-weight: 300; }
.task-status { font-size: 0.62rem; font-family: "Outfit", sans-serif; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.15rem 0.4rem; border-radius: 2rem; font-weight: 500; }
.task-status.done { background: rgba(196,106,74,0.15); color: var(--accent); border: 1px solid rgba(196,106,74,0.3); }

.stat-badge {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  text-align: center; opacity: 0; animation: node-appear 0.6s ease forwards 3.5s;
}
.stat-number { font-family: "Outfit", serif; font-size: 3rem; font-weight: 300; color: var(--bg-card-light); line-height: 1; }
.stat-unit { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-subtle); margin-top: 0.2rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 2rem; opacity: 0;
  animation: fade-up 0.8s ease forwards 0.2s; font-weight: 600;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--mist); }

.hero-title {
  font-family: 'Outfit', serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 1.5rem; opacity: 0;
  animation: fade-up 0.9s ease forwards 0.4s;
}
.hero-title em { font-style: italic; color: var(--mist); }

.hero-sub {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-muted);
  max-width: 520px; margin-bottom: 3rem; opacity: 0;
  animation: fade-up 0.9s ease forwards 0.6s;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0; animation: fade-up 0.9s ease forwards 0.8s;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: var(--bg);
  padding: 0.9rem 2rem; border-radius: 3rem;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 500;
  text-decoration: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none; cursor: none;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(196,106,74,0.3); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translate(2px, -2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.9rem; text-decoration: none;
  transition: color 0.2s; cursor: none;
}
.btn-ghost:hover { color: var(--text); }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TICKER ── */
.ticker { background: var(--bg-alt); padding: 0.85rem 0; overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker-scroll 30s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 1.5rem; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(42,31,20,0.9); padding: 0 2rem; }
.ticker-dot { width: 4px; height: 4px; background: rgba(42,31,20,0.5); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: 8rem 4rem; position: relative; }
.section-label { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); margin-bottom: 1.5rem; font-weight: 600; }
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--mist); }

/* ── SECTION LABEL SHIMMER ── */
.section-label {
  position: relative;
}
@keyframes shimmerGlide {
  display: none;
}
@keyframes iconPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  /* motion reduction handled per component */
}


.section-title { font-family: 'Outfit', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem; }

/* ── PROBLEM ── */
.problem { background: var(--bg); overflow: hidden; }
.problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.problem-left .section-title { max-width: 480px; }
.problem-left .section-title em { color: var(--mist); font-style: italic; }
.problem-body { color: var(--text-muted); font-size: 1rem; line-height: 1.8; max-width: 440px; }
.pain-list { display: flex; flex-direction: column; gap: 1rem; }
.pain-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 1.5rem; background: rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.06); border-radius: 1rem; transition: border-color 0.3s, background 0.3s; }
.pain-item:hover { background: rgba(126,165,220,0.08); border-color: rgba(126,165,220,0.2); }
.pain-item:hover .pain-icon { animation: none; transform: scale(1.12); }
.pain-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(196,106,74,0.12); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; font-size: 1rem; animation: iconPulse 2.5s ease-in-out infinite; transition: transform 0.2s ease; }
.pain-text { flex: 1; }
.pain-title { font-size: 0.9rem; font-weight: 500; color: var(--text); margin-bottom: 0.2rem; }
.pain-desc { font-size: 0.82rem; color: var(--text-subtle); line-height: 1.5; }

/* ── HOW IT WORKS ── */
.how { background: var(--bg-alt); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-header { max-width: 600px; margin-bottom: 5rem; }
.steps-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps-flow::before { content: ''; position: absolute; top: 2.5rem; left: calc(16.66% + 1.5rem); right: calc(16.66% + 1.5rem); height: 1px; background: linear-gradient(90deg, var(--mist), rgba(196,106,74,0.3), var(--mist)); }
.step { padding: 0 2rem; position: relative; }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-number { width: 5rem; height: 5rem; border-radius: 50%; background: var(--bg-card); border: 1px solid rgba(196,106,74,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', serif; font-size: 1.5rem; font-weight: 300; color: var(--mist); margin-bottom: 2rem; position: relative; z-index: 2; }
.step-title { font-family: 'Outfit', serif; font-size: 1.3rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--text); }
.step-desc { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }
.step-duration { display: inline-block; margin-top: 1rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); padding: 0.3rem 0.8rem; background: rgba(196,106,74,0.1); border-radius: 2rem; }

/* ── OFFER ── */
.offer { background: var(--bg-card); overflow: hidden; }
.offer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.offer-left .section-title em { font-style: italic; color: var(--mist); }
.offer-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.offer-feature { display: flex; gap: 1.2rem; align-items: flex-start; }
.offer-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(196,106,74,0.15); border: 1px solid rgba(196,106,74,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.offer-feature-text h4 { font-size: 0.95rem; font-weight: 500; color: var(--text); margin-bottom: 0.25rem; }
.offer-feature-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.offer-card { background: var(--bg); border-radius: 2rem; padding: 3rem; border: 1px solid rgba(42,31,20,0.08); position: relative; overflow: hidden; }
.offer-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(196,106,74,0.08) 0%, transparent 70%); }
.offer-card-eyebrow { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); margin-bottom: 1.5rem; }
.offer-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.offer-timeline::before { content: ''; position: absolute; left: 11px; top: 12px; bottom: 12px; width: 1px; background: linear-gradient(to bottom, rgba(126,165,220,0.45), rgba(126,165,220,0.12)); }
/* Travelling signal down the rail */
.offer-timeline-pulse { position: absolute; left: 11px; top: 12px; width: 1px; height: 46px; transform: translateX(-0.5px); background: linear-gradient(to bottom, transparent, var(--mist), transparent); filter: blur(0.4px); opacity: 0; z-index: 1; pointer-events: none; }
.offer-timeline.run .offer-timeline-pulse { animation: tlPulse 5.6s linear infinite; }
@keyframes tlPulse {
  0%   { top: 0; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: calc(100% - 46px); opacity: 0; }
}
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 1.8rem; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-card); border: 1.5px solid var(--mist); flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, background .45s ease, border-color .45s ease; }
.timeline-dot-inner { width: 8px; height: 8px; border-radius: 50%; background: var(--mist); transition: background .45s ease, transform .45s ease; }
.timeline-week { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 0.2rem; transition: color .45s ease; }
.timeline-label { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.timeline-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }
.timeline-content { transition: transform .45s cubic-bezier(.2,.8,.2,1); }
/* Lit state — the signal has reached this day */
.timeline-item.lit .timeline-dot { background: var(--mist); border-color: var(--mist); transform: scale(1.18); box-shadow: 0 0 0 5px rgba(126,165,220,0.16), 0 6px 16px -4px rgba(126,165,220,0.5); }
.timeline-item.lit .timeline-dot-inner { background: var(--bg-card); transform: scale(1.1); }
.timeline-item.lit .timeline-week { color: var(--mist); }
.timeline-item.lit .timeline-content { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) {
  .offer-timeline.run .offer-timeline-pulse { animation: none; opacity: 0; }
  .timeline-dot, .timeline-dot-inner, .timeline-content, .timeline-week { transition: none; }
}

/* ── SECTORS ── */
.sectors { background: var(--bg); }
.sectors-inner { max-width: 1200px; margin: 0 auto; }
.sectors-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sector-card { padding: 2rem; background: rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.06); border-radius: 1.5rem; transition: border-color 0.3s, background 0.3s, transform 0.3s; cursor: default; }
.sector-card:hover { background: rgba(196,106,74,0.05); border-color: rgba(196,106,74,0.25); transform: translateY(-4px); }
.sector-icon { font-size: 1.8rem; margin-bottom: 1.2rem; display: block; }
.sector-name { font-family: 'Outfit', serif; font-size: 1.15rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; }
.sector-pain { font-size: 0.83rem; color: var(--text-subtle); line-height: 1.6; }

/* ── FOUNDERS ── */
.founders { background: var(--bg-alt); overflow: hidden; }
.founders-inner { max-width: 1200px; margin: 0 auto; }
.founders-header { max-width: 540px; margin-bottom: 5rem; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.founder-card { display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.3s ease; }
.founder-card:hover { transform: translateY(-8px); }

/* Founder image with fallback avatar */
.founder-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-mid), var(--accent-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.founder-avatar-fallback {
  font-family: 'Outfit', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--bg);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-image img:not([src*="undefined"]) ~ .founder-avatar-fallback {
  display: none;
}

/* ── LARGE FOUNDER PHOTOS (matching live site) ── */
.founders {
  padding: 5rem 4rem;
  background: var(--bg);
}

.founders-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.founders-header {
  text-align: center;
  margin-bottom: 4rem;
}

.founders-header .section-label {
  justify-content: center;
  margin-bottom: 1rem;
}

.founders-header .section-title {
  font-size: 2.8rem;
  margin-bottom: 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));  /* Halved width */
  gap: 1rem;
  margin-bottom: 2rem;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-8px);
}

.founder-photo-container {
  width: 100%;
  aspect-ratio: 1.25;  /* Much shorter now */
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card-mid), var(--accent-dim));
  margin-bottom: 0.5rem;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.founder-info {
  width: 100%;
}

.founder-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.founder-role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.founder-linkedin {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--mist);
  color: var(--mist);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.founder-linkedin:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ── ABOUT SECTION IMPROVEMENTS ── */
.founders-about {
  margin: 100px 0 80px;
  padding: 50px 0;
  border-left: 4px solid #7ea5dc;
  padding-left: 32px;
}

.about-title {
  font-family: 'Outfit', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.about-content {
  max-width: 700px;
  text-align: left;
}

.about-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: left;
}

.about-content p:first-of-type {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 28px;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .founders-about {
    margin: 80px 0 60px;
    padding: 40px 0 0 0;
    border-left: 3px solid #7ea5dc;
    padding-left: 24px;
  }

  .founders-header {
    margin-bottom: 3rem;
  }

  .founders-header .section-title {
    font-size: 2.2rem;
  }

  .founders-grid {
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .founder-photo-container {
    margin-bottom: 1.5rem;
  }

  .founder-name {
    font-size: 1.2rem;
  }

  .about-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

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

  .founders-header .section-title {
    font-size: 1.8rem;
  }

  .founder-name {
    font-size: 1.1rem;
  }

  .about-title {
    font-size: 1.4rem;
  }
}
.founder-role { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); margin-bottom: 0.5rem; }
.founder-name { font-family: 'Outfit', serif; font-size: 1.5rem; font-weight: 400; color: var(--text); margin-bottom: 1rem; }
.founder-bio { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); position: relative; z-index: 2; }
.founder-tag { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.2rem; font-size: 0.78rem; color: var(--text-subtle); }
.founder-tag::before { content: ''; width: 16px; height: 1px; background: rgba(42,31,20,0.2); }

/* ── CTA ── */
.cta-section { background: var(--bg); text-align: center; padding: 10rem 4rem; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(196,106,74,0.07) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-title { font-family: 'Outfit', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.cta-title em { color: var(--mist); font-style: italic; }
.cta-sub { font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 3rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-note { margin-top: 1.5rem; font-size: 0.78rem; color: var(--text-subtle); letter-spacing: 0.06em; }

/* ── BOOKING SECTION ── */
.booking-section {
  padding: 8rem 4rem;
  background: var(--bg);
}

.booking-inner {
  max-width: 900px;
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: 4rem;
}

.booking-header .section-label {
  justify-content: center;
  margin-bottom: 1rem;
}

.booking-header .section-title {
  margin-bottom: 1rem;
}

.booking-header .section-title em {
  color: var(--mist);
  font-style: italic;
}

.booking-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.booking-container {
  max-width: 800px;
  margin: 0 auto;
  border: 0px solid rgba(196,106,74,0.1);
  border-radius: 5px;
  overflow: hidden;
  background: var(--bg);
}

.booking-container > div {
  width: 80%;
  display: flex;
}


@media (max-width: 768px) {
  .booking-section {
    padding: 4rem 1.5rem;
  }

  .booking-header {
    margin-bottom: 3rem;
  }

  .booking-subtitle {
    font-size: 1rem;
  }

  .booking-container div {
    min-height: 600px;
  }
}

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid rgba(0,0,0,0.06); padding: 3rem 4rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
footer .logo { font-size: 1.1rem; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--text-subtle); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-legal { font-size: 0.75rem; color: var(--text-subtle); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── CONTACT FORM ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.form-group input,
.form-group textarea {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(196,106,74,0.3);
  border-radius: 0.75rem;
  padding: 0.9rem 1.2rem;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
  font-family: 'Outfit', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mist);
  background: rgba(0,0,0,0.05);
}

/* ════════════════════════════════════════════════
   PRICING PAGE
   ════════════════════════════════════════════════ */
.pricing-section { padding: 8rem 4rem 4rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 4rem auto;
  max-width: 800px;
}

.pricing-card {
  border: 1px solid rgba(196,106,74,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  overflow: hidden;
  background: transparent;
  display: flex;
  flex-direction: column;
}
/* Spinning conic gradient — creates the glowing border effect on hover */
.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(196,106,74,0.12) 20%, transparent 40%);
  animation: card-rotate 8s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* Inner fill — change this colour to change card background */
.pricing-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--bg);
  border-radius: 15px;
  z-index: 0;
}
.pricing-card > * { position: relative; z-index: 1; }
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196,106,74,0.5);
  box-shadow: 0 20px 60px rgba(42,31,20,0.1), 0 0 40px rgba(196,106,74,0.08);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card.featured { border-color: rgba(196,106,74,0.5); }
.pricing-card.featured::before { opacity: 0.4; }
.pricing-card.featured::after { background: var(--bg); }

@keyframes card-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(196,106,74,0.8);
  border: 1px solid rgba(196,106,74,0.25);
  border-radius: 2rem;
  padding: 0.25rem 0.8rem;
  margin-bottom: 1.5rem;
}
.featured-tag {
  color: var(--bg);
  border-color: rgba(196,106,74,0.5);
  background: rgba(196,106,74,0.08);
}
.pricing-tier-name {
  font-family: 'Outfit', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.pricing-tier-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-muted);
}
.pricing-amount {
  font-family: 'Outfit', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--mist);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.pricing-amount-sub {
  font-size: 0.82rem;
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* ── NEW PRICING STRUCTURE (SETUP + RETAINER) ── */
.pricing-primary, .pricing-secondary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.pricing-primary {
  border-bottom: 1px solid rgba(126,165,220,0.3);
  padding-bottom: 1.5rem;
}

.pricing-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 500;
}

.pricing-amount-large {
  font-family: 'Outfit', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
}

.pricing-amount-large span {
  font-size: 0.65em;
  color: var(--text-muted);
  margin-left: 0.2rem;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-note a {
  color: var(--mist);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.pricing-note a:hover {
  color: var(--text);
}

/* ── LEGACY SETUP INFO (keeping for backward compat) ── */
.pricing-setup-info {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 1.2rem;
  background: rgba(126,165,220,0.06);
  border-radius: 8px;
  border: 1px solid rgba(126,165,220,0.15);
}
.pricing-setup-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 500;
}
.pricing-setup-amount {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.pricing-cta {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  margin-bottom: 2rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}
.pricing-features {
  list-style: none;
  border-top: 1px solid rgba(196,106,74,0.12);
  padding-top: 1.5rem;
}
.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.pricing-check {
  color: var(--mist);
  font-size: 0.7rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
}
.pricing-section-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
  border-left: 2px solid var(--mist);
  padding-left: 1rem;
  color: var(--mist);
}
.faq-item {
  margin-bottom: 1rem;
  border-left: 3px solid rgba(196,106,74,0.25);
  border-radius: 0 8px 8px 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-question {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.2s;
  user-select: none;
}
.faq-question:hover { color: var(--mist); }
.faq-toggle {
  color: var(--mist);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-answer {
  font-size: 0.92rem;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.5rem 1.25rem; }

/* ── COMPARISON TABLE ── */
.comparison-section { max-width: 1200px; margin: 6rem auto; padding: 0 2rem; }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.comparison-table th,
.comparison-table td { padding: 1.25rem; text-align: left; border-bottom: 1px solid rgba(196,106,74,0.1); }
.comparison-table th { background: rgba(196,106,74,0.06); color: var(--text); font-weight: 500; font-size: 0.95rem; }
.comparison-table td { color: var(--text-muted); font-size: 0.9rem; }
.comparison-table tr:hover { background: rgba(196,106,74,0.03); }
.check-icon { color: var(--mist); font-weight: bold; font-size: 1.2rem; }

/* ── TABLET ── */
@media (max-width: 1024px) {
  nav { padding: 1.5rem 2.5rem; }
  section { padding: 6rem 2.5rem; }
  .hero { padding: 7rem 2.5rem 3rem; }
  .problem-inner, .offer-inner { gap: 4rem; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding: 8rem 2.5rem; }
  footer { padding: 2.5rem; }
  .pricing-section { padding: 7rem 2.5rem 3rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   WORKFLOW — ELEGANT ANIMATED PIPELINE
   ══════════════════════════════════════════════════════════ */

.workflow {
  padding: 7rem 4rem;
  background: linear-gradient(to bottom, var(--bg), var(--bg-alt));
}

.workflow-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.workflow-header {
  text-align: center;
  margin-bottom: 5rem;
}

.workflow-header .section-label {
  justify-content: center;
  margin-bottom: 1.25rem;
}

.workflow-header .section-title {
  font-size: 2.9rem;
  margin: 0 auto 1.25rem;
}

.workflow-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── PIPELINE ── */
.pipeline {
  position: relative;
  margin-bottom: 4.5rem;
}

/* Track + line behind the nodes (desktop) */
.pipeline-track {
  position: absolute;
  top: 39px;               /* aligns with node centre */
  left: 10%;
  right: 10%;
  height: 2px;
  z-index: 0;
}
.pipeline-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(196,106,74,0.12),
    rgba(196,106,74,0.28),
    rgba(196,106,74,0.12));
  border-radius: 2px;
}
/* The travelling signal */
.pipeline-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 80px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--mist), transparent);
  filter: blur(0.5px);
  animation: pulseTravel 7s linear infinite;
}
@keyframes pulseTravel {
  0%   { left: -80px; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.pipeline-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.pstep {
  text-align: center;
  padding: 0 0.5rem;
}

.pstep-node {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  background: var(--bg);
  border: 1.5px solid var(--bg-card-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              border-color .45s ease,
              box-shadow .45s ease,
              background .45s ease;
}

.pstep-num {
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: var(--mono, monospace);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  background: var(--bg);
  border: 1px solid var(--bg-card-mid);
  border-radius: 999px;
  padding: 2px 7px;
  transition: color .45s ease, border-color .45s ease;
}

.pstep-icon {
  width: 30px;
  height: 30px;
  color: var(--mist);
  opacity: 0.85;
  transition: opacity .45s ease, transform .45s ease;
}
.pstep-icon svg { width: 100%; height: 100%; display: block; }

.pstep h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.pstep p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 18ch;
  margin-inline: auto;
}

/* Lit (active) state — the signal has reached this step */
.pstep.lit .pstep-node {
  transform: translateY(-6px);
  border-color: var(--mist);
  background: var(--bg-card);
  box-shadow: 0 12px 30px -10px rgba(196,106,74,0.4);
}
.pstep.lit .pstep-icon { opacity: 1; transform: scale(1.08); }
.pstep.lit .pstep-num { color: var(--mist); border-color: var(--mist); }

/* ── METRICS STRIP ── */
.workflow-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2.25rem 2rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--bg-card-mid);
}
.metric { text-align: center; }
.metric-value {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.metric-value span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mist);
  margin-left: 1px;
}
.metric-label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.metric-divider {
  width: 1px;
  height: 42px;
  background: var(--bg-card-mid);
}

/* ── TABLET ── */
@media (max-width: 900px) {
  .pipeline-track { display: none; }
  .pipeline-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .pstep:last-child { grid-column: 1 / -1; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .workflow { padding: 4.5rem 1.5rem; }
  .workflow-header { margin-bottom: 3rem; }
  .workflow-header .section-title { font-size: 2.1rem; }
  .workflow-subtitle { font-size: 1rem; }

  .pipeline { margin-bottom: 3rem; }

  /* Vertical flow with a left rail */
  .pipeline-steps {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    padding-left: 0;
  }
  .pstep {
    text-align: center;
    display: flex;
    grid-template-columns: 78px 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 0 0 2.25rem 0;
    position: relative;
  }
  .pstep:last-child { padding-bottom: 0; }
  /* vertical connector */
  .pstep:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 5%;
    top: 78px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(196,106,74,0.3), rgba(196,106,74,0.08));
  }
  .pstep-node { margin: 0; }
  .pstep h3 { margin-top: 0.4rem; }
  .pstep p { max-width: none; margin-inline: 0; }
  .pstep.lit .pstep-node { transform: translateY(0) scale(1.04); }

  .workflow-metrics {
    gap: 1.25rem;
    padding: 1.75rem 1rem;
  }
  .metric-value { font-size: 1.6rem; }
  .metric-value span { font-size: 0.8rem; }
  .metric-label { font-size: 0.75rem; }
  .metric-divider { height: 34px; }
}

@media (max-width: 400px) {
  .workflow-header .section-title { font-size: 1.85rem; }
  .workflow-metrics { gap: 0.75rem; }
  .metric-value { font-size: 1.35rem; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .pipeline-pulse { animation: none; opacity: 0; }
  .pstep-node, .pstep-icon { transition: none; }
}

/* ══════════════════════════════════════════════════════════ */

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  nav ul { display: none; }
  .nav-hamburger { display: flex; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .btn-primary, .btn-ghost { cursor: pointer; }

  .hero { padding: 6rem 1.5rem 1.5rem; gap: 2rem; min-height: auto; }
  .agent-visual { max-width: 100%; height: 300px; }
  .task-node { display: none; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-sub { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 1rem; }
  .btn-primary { justify-content: center; }

  section { padding: 2.5rem 1.5rem; }
  .problem-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-flow { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-flow::before { display: none; }
  .step { padding: 0 0 0 1.5rem; border-left: 2px solid rgba(196,106,74,0.2); }
  .offer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .offer-card { padding: 2rem; }
  .sectors-grid { grid-template-columns: 1fr; gap: 1rem; }
  .sectors-header { flex-direction: column; align-items: flex-start; }
  .founders-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .founders-header { max-width: 100%; margin-bottom: 2rem; }
  .cta-section { padding: 3rem 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; justify-content: center; }

  .examples-grid { grid-template-columns: 1fr; gap: 1rem; }

  .pricing-section { padding: 3rem 1.5rem 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  
  /* Mobile pricing structure */
  .pricing-primary, .pricing-secondary {
    gap: 0.8rem;
    margin-bottom: 1.25rem;
  }
  .pricing-primary {
    padding-bottom: 1.25rem;
  }
  .pricing-amount-large {
    font-size: 1.6rem;
  }
  .pricing-label {
    font-size: 0.7rem;
  }
  .pricing-note {
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
  }
  
  .faq-section { padding: 2.5rem 1.5rem; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th,
  .comparison-table td { padding: 0.75rem; }

  footer .footer-links li:last-child {
    margin: 0 auto;
  }
}


/* ── SMALL PHONES ── */
@media (max-width: 400px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .cta-title { font-size: 2rem; }
  .agent-visual { height: 240px; }
  .pricing-amount { font-size: 1.8rem; }
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0F0F0E;
  color: #FAFAF7;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.cookie-banner-text p {
  margin: 0;
  color: rgba(250, 250, 247, 0.85);
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-btn-reject {
  background: transparent;
  border: 1px solid rgba(250, 250, 247, 0.3);
  color: #FAFAF7;
}

.cookie-btn-reject:hover {
  background: rgba(250, 250, 247, 0.1);
  border-color: rgba(250, 250, 247, 0.6);
}

.cookie-btn-accept {
  background: #FAFAF7;
  color: #0F0F0E;
}

.cookie-btn-accept:hover {
  background: #EFEFEC;
}

.cookie-close {
  background: none;
  border: none;
  color: rgba(250, 250, 247, 0.6);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-close:hover {
  color: #FAFAF7;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .cookie-banner {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .cookie-banner-buttons {
    width: 100%;
    gap: 10px;
  }

  .cookie-btn {
    flex: 1;
    padding: 12px 16px;
  }

  .cookie-close {
    position: absolute;
    top: 12px;
    right: 12px;
  }
}