/* ============================================
   CRACKING SITES — design system
   Navy #0A1D3D · Teal #00B3B3 · Amber #FFB020
   ============================================ */

:root {
  /* Palette */
  --navy: #0A1D3D;
  --navy-soft: #1A2D52;
  --navy-mute: #4A5876;
  --teal: #00B3B3;
  --teal-dark: #008A8A;
  --teal-light: #E0F7F7;
  --amber: #FFB020;
  --amber-dark: #E69200;
  --amber-light: #FFF4DB;
  --bg: #FFFFFF;
  --bg-alt: #F5F7FA;
  --bg-card: #FFFFFF;
  --line: #E4E8EF;
  --line-strong: #CDD3DD;
  --ink: var(--navy);
  --ink-soft: #2C3A57;
  --ink-muted: #5B6A85;
  --success: #22C55E;
  --whatsapp: #25D366;

  /* Typography */
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(10, 29, 61, 0.06), 0 1px 3px rgba(10, 29, 61, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 29, 61, 0.06), 0 2px 4px rgba(10, 29, 61, 0.04);
  --shadow-lg: 0 20px 40px rgba(10, 29, 61, 0.08), 0 6px 16px rgba(10, 29, 61, 0.06);
  --shadow-xl: 0 30px 60px rgba(10, 29, 61, 0.12), 0 10px 24px rgba(10, 29, 61, 0.08);

  /* Layout */
  --container: 1180px;
  --header-h: 72px;
}

/* ============================================
   RESET
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.03em; font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p { margin: 0; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.25rem); color: var(--ink-muted); line-height: 1.55; max-width: 640px; }

/* ============================================
   LAYOUT
   ============================================ */

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 9vw, 110px) 0; }
.section-tight { padding: clamp(40px, 6vw, 70px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head .lead { margin: 14px auto 0; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 14px; }
.mb-4 { margin-bottom: 22px; }

/* ============================================
   EYEBROW LABEL
   ============================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  padding: 8px 14px;
  background: var(--teal-light);
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.eyebrow.amber { color: var(--amber-dark); background: var(--amber-light); }
.eyebrow.navy { color: #fff; background: var(--navy); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
}
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: 0.88rem; }

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 4px 0 var(--amber-dark), 0 6px 16px rgba(255, 176, 32, 0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 5px 0 var(--amber-dark), 0 8px 20px rgba(255, 176, 32, 0.45); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--amber-dark); }

.btn-secondary {
  background: var(--navy);
  color: #fff;
}
.btn-secondary:hover { background: var(--navy-soft); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--ink); }

.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(10, 29, 61, 0.02);
}
.site-header .nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  gap: 6px;
  margin-left: 20px;
  flex: 1;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--bg-alt); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.hide-mobile { display: inline-flex; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-radius: var(--r-md);
}
.menu-toggle:hover { background: var(--bg-alt); }
.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    margin: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { width: 100%; padding: 14px 16px; border-radius: var(--r-md); }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 560px) {
  .hide-mobile { display: none; }
  .logo img { height: 32px; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  padding: clamp(60px, 9vw, 100px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 179, 179, 0.13) 0%, rgba(0, 179, 179, 0) 65%);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 176, 32, 0.10) 0%, rgba(255, 176, 32, 0) 65%);
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero h1 { color: var(--ink); }
.hero h1 .accent { color: var(--teal); }
.hero h1 .underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 14px;
  background: var(--amber);
  opacity: 0.55;
  z-index: -1;
  border-radius: 4px;
  transform: skew(-6deg);
}
.hero .lead { font-size: clamp(1.1rem, 1.5vw, 1.25rem); margin-top: 22px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--ink-muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .tick { color: var(--teal); width: 18px; height: 18px; flex-shrink: 0; }

/* Hero illustration / browser mockup */
.hero-visual {
  position: relative;
}
.browser-frame {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: rotate(0.5deg);
}
.browser-chrome {
  background: var(--navy);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser-chrome .dot { width: 11px; height: 11px; border-radius: 50%; }
.browser-chrome .dot:nth-child(1) { background: var(--teal); }
.browser-chrome .dot:nth-child(2) { background: #6B7B96; }
.browser-chrome .dot:nth-child(3) { background: var(--amber); }
.browser-chrome .url {
  margin-left: 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}
.browser-body { padding: 0; }

.hero-float {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  transform: rotate(-3deg);
}
.hero-float-1 {
  top: -16px;
  left: -32px;
  background: var(--navy);
  color: #fff;
  border: 0;
  transform: rotate(-4deg);
}
.hero-float-1 .pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(0, 179, 179, 0.7);
  animation: pulse 1.8s infinite;
}
.hero-float-2 {
  bottom: -22px;
  right: -28px;
  transform: rotate(3deg);
  background: var(--amber);
  color: var(--navy);
  border: 0;
}
.hero-float-2 strong { font-family: var(--font-display); font-weight: 800; }
@media (max-width: 900px) {
  .hero-float-1 { left: 12px; }
  .hero-float-2 { right: 12px; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 179, 179, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(0, 179, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 179, 179, 0); }
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.trust-items > span { display: inline-flex; align-items: center; gap: 8px; }
.trust-items .tick {
  width: 20px; height: 20px;
  background: var(--teal-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
}
.trust-items .tick svg { width: 12px; height: 12px; }

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card h3 { color: var(--ink); margin-bottom: 10px; }
.card p { color: var(--ink-muted); font-size: 0.97rem; }

.card-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon.amber { background: var(--amber-light); color: var(--amber-dark); }
.card-icon.navy { background: var(--navy); color: #fff; }
.card-icon svg { width: 24px; height: 24px; }

/* ============================================
   INCLUDES GRID
   ============================================ */

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .includes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .includes-grid { grid-template-columns: 1fr; } }
.include-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.include-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--teal-light);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.include-icon svg { width: 22px; height: 22px; }
.include-card h4 { margin: 0 0 6px; color: var(--ink); }
.include-card p { margin: 0; color: var(--ink-muted); font-size: 0.92rem; line-height: 1.5; }

/* ============================================
   OFFER SPLIT (homepage £99 card)
   ============================================ */

.offer-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .offer-split { grid-template-columns: 1fr; gap: 40px; } }

.price-card {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 38px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 179, 179, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.price-card > * { position: relative; z-index: 1; }
.price-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(255, 176, 32, 0.12);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.price-line { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.price-amount { font-family: var(--font-display); font-size: 3.6rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: #fff; }
.price-unit { font-size: 1.05rem; color: rgba(255, 255, 255, 0.7); }
.price-note { color: rgba(255, 255, 255, 0.75); font-size: 0.94rem; margin-bottom: 22px; }
.price-list { display: grid; gap: 12px; margin-bottom: 28px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.97rem; color: rgba(255, 255, 255, 0.92); }
.price-list .tick {
  width: 22px; height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-list .tick svg { width: 12px; height: 12px; }
.price-card .nofaff {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   STATS GRID
   ============================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .unit { font-size: 1.2rem; color: var(--teal); }
.stat-label { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 0.97rem; margin-bottom: 4px; }
.stat-sub { color: var(--ink-muted); font-size: 0.88rem; }

/* ============================================
   STEPS
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
}
.step-num {
  display: inline-flex;
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--amber);
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.step h3 { margin: 0 0 8px; color: var(--ink); font-size: 1.15rem; }
.step p { color: var(--ink-muted); font-size: 0.95rem; margin: 0; }

/* ============================================
   COMPARISON (Performance Gap style)
   ============================================ */

.compare {
  background: var(--bg-alt);
}
.compare-table {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: 22px 26px; }
.compare-row .col-label { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.compare-row .col-label small { display: block; font-weight: 400; color: var(--ink-muted); font-size: 0.86rem; margin-top: 4px; }
.compare-row .col-them { color: var(--ink-muted); border-left: 1px solid var(--line); }
.compare-row .col-us {
  background: var(--navy);
  color: #fff;
  border-left: 1px solid var(--line);
  font-weight: 600;
}
.compare-row.compare-head { background: var(--bg-alt); }
.compare-row.compare-head .col-label { color: var(--ink-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.compare-row.compare-head .col-them { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.compare-row.compare-head .col-us {
  background: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}
.compare-row.compare-head .col-us .badge {
  display: inline-block;
  margin-left: 8px;
  background: var(--amber);
  color: var(--navy);
  padding: 3px 10px;
  font-size: 0.7rem;
  border-radius: var(--r-pill);
  vertical-align: middle;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row > div { border-left: 0 !important; padding: 16px 22px; }
  .compare-row .col-them { background: #fff; }
  .compare-row .col-us { background: var(--navy); }
  .compare-row.compare-head { display: none; }
  .compare-row > div::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    margin-bottom: 4px;
    font-weight: 600;
  }
  .compare-row .col-us::before { color: rgba(255,255,255,0.6); }
}

/* ============================================
   EXAMPLE / SHOWCASE CARDS
   ============================================ */

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .examples-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .examples-grid { grid-template-columns: 1fr; } }
.example-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.example-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.example-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.example-thumb svg { width: 100%; height: 100%; display: block; }
.example-meta { padding: 22px 24px; }
.example-meta .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.example-meta h3 { margin: 0 0 6px; font-size: 1.2rem; color: var(--ink); }
.example-meta p { color: var(--ink-muted); font-size: 0.92rem; margin: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  position: relative;
}
.testimonial .stars { color: var(--amber); margin-bottom: 14px; letter-spacing: 1px; font-size: 1.05rem; }
.testimonial blockquote {
  margin: 0 0 22px;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
}
.testimonial blockquote::before { content: "\201C"; }
.testimonial blockquote::after { content: "\201D"; }
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.avatar.amber { background: var(--amber); color: var(--navy); }
.avatar.navy { background: var(--navy); color: #fff; }
.author-info strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 0.95rem; }
.author-info span { color: var(--ink-muted); font-size: 0.85rem; }
.testimonial .result {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--amber-light);
  color: var(--amber-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 11px;
  border-radius: var(--r-pill);
}

/* ============================================
   ADS PACKAGE CARDS
   ============================================ */

.ads-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .ads-tiers { grid-template-columns: 1fr; } }
.ads-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ads-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.ads-card.featured {
  border-color: var(--teal);
  position: relative;
  box-shadow: 0 0 0 4px rgba(0, 179, 179, 0.1);
}
.ads-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
}
.ads-card h3 { color: var(--ink); margin-bottom: 6px; }
.ads-card .ads-spend { font-size: 0.92rem; color: var(--ink-muted); margin-bottom: 18px; }
.ads-card .ads-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.ads-card .ads-amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.ads-card .ads-unit { color: var(--ink-muted); font-size: 0.95rem; }

/* ============================================
   FAQ
   ============================================ */

.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--teal); box-shadow: 0 1px 4px rgba(0, 179, 179, 0.08); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 28px; height: 28px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%230A1D3D" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); background-color: var(--teal-light); }
.faq .faq-body { padding: 0 24px 22px; color: var(--ink-muted); font-size: 0.97rem; line-height: 1.6; }

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(40px, 7vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 179, 179, 0.18) 0%, transparent 70%);
}
.final-cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 176, 32, 0.13) 0%, transparent 70%);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; max-width: 720px; margin: 0 auto 14px; }
.final-cta p { color: rgba(255, 255, 255, 0.8); max-width: 600px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */

.page-header {
  padding: clamp(56px, 8vw, 88px) 0 clamp(36px, 5vw, 54px);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 16px; }
.page-header h1 { max-width: 820px; margin: 0 auto 16px; }
.page-header .lead { margin: 0 auto; }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(50px, 7vw, 80px) 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand .logo img { height: 38px; filter: brightness(0) invert(1) brightness(0.95); }
/* Use a backdrop trick to show the colored logo on dark bg — but we'll just include a white variant via opacity or just leave it. Simplest: keep logo with the navy/teal palette since brand colors include both. We'll show a white-text version using a div instead. */
.footer-brand p { color: rgba(255, 255, 255, 0.65); margin-top: 14px; font-size: 0.95rem; line-height: 1.6; max-width: 320px; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 16px;
  font-weight: 700;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Footer brand mark — use a white text wordmark instead of inverted logo */
.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer-wordmark .accent { color: var(--teal); font-weight: 600; }
.footer-wordmark img { height: 36px; }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(37, 211, 102, 0.3);
  z-index: 40;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
.fab svg { width: 22px; height: 22px; }
@media (max-width: 560px) {
  .fab span { display: none; }
  .fab { padding: 14px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
}

/* ============================================
   FORMS
   ============================================ */

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 179, 179, 0.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: 0.84rem; color: var(--ink-muted); margin-top: 2px; }

/* ============================================
   CONTACT CARDS
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.contact-card .icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--teal-light);
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.contact-card .icon svg { width: 24px; height: 24px; }
.contact-card .label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
}
.contact-card .value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}
.contact-card p { color: var(--ink-muted); font-size: 0.92rem; margin: 0; }

/* ============================================
   FEATURE BANNER
   ============================================ */

.feature-banner {
  background: linear-gradient(135deg, var(--teal-light) 0%, #fff 100%);
  border: 1px solid var(--teal-light);
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
}
.feature-banner h2 { margin-bottom: 14px; }
.feature-banner .pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 20px; }
.feature-banner .pill {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.6s ease both; }
.rise-d1 { animation-delay: 0.08s; }
.rise-d2 { animation-delay: 0.16s; }
.rise-d3 { animation-delay: 0.24s; }
.rise-d4 { animation-delay: 0.32s; }

/* ============================================
   ACCESSIBILITY
   ============================================ */

a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.bg-alt { background: var(--bg-alt); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.center { display: flex; justify-content: center; }
.spacer-sm { height: 24px; }
.spacer-md { height: 48px; }

/* ============================================
   FOUNDER / TEAM SECTION (v2 — robust)
   ============================================ */

.founder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(10, 29, 61, 0.06);
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .founder { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
}

.founder-photo-wrap {
  position: relative;
  width: 100%;
}
.founder-photo-wrap .photo {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
  z-index: 2;
}
.founder-photo-wrap .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-photo-wrap .accent-a,
.founder-photo-wrap .accent-b {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.founder-photo-wrap .accent-a {
  width: 70px; height: 70px;
  background: #FFB020;
  opacity: 0.35;
  bottom: -14px; right: -14px;
}
.founder-photo-wrap .accent-b {
  width: 56px; height: 56px;
  background: #00B3B3;
  opacity: 0.28;
  top: -12px; left: -12px;
}

.founder-info .pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #008A8A;
  background: #E0F7F7;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.founder-info h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0A1D3D;
  margin: 0 0 4px;
  line-height: 1.15;
}
.founder-info .role {
  font-family: var(--font-display);
  font-weight: 600;
  color: #5B6A85;
  font-size: 0.95rem;
  margin: 0 0 18px;
}
.founder-info p.bio {
  color: #2C3A57;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 14px;
}
.founder-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}
.founder-actions .btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  background: #0A66C2;
  color: #fff;
  text-decoration: none;
  border: 0;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.founder-actions .btn-linkedin:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.founder-actions .btn-linkedin svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}

/* Team roles strip */
.team-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 32px auto 0;
}
@media (max-width: 860px) { .team-strip { grid-template-columns: repeat(2, 1fr); } }
.team-strip-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}
.team-strip-item .avatars {
  display: inline-flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  height: 28px;
}
.team-strip-item .avatars span {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
  margin-left: -8px;
}
.team-strip-item .avatars span:first-child { margin-left: 0; }
.team-strip-item .name {
  font-family: var(--font-display);
  font-weight: 700;
  color: #0A1D3D;
  font-size: 0.95rem;
  margin: 0 0 2px;
}
.team-strip-item .count {
  color: #5B6A85;
  font-size: 0.82rem;
  margin: 0;
}

/* DEMO BADGE (for showcase sites) */
.demo-badge {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #FFB020;
  color: #0A1D3D;
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.demo-badge a {
  color: #0A1D3D;
  text-decoration: underline;
  margin-left: 6px;
}
