/* ============================================================
   CIRCUIT SAFE — Design tokens
   Palette: Ink Navy / Paper / Safety Amber / Pass Green / Slate
   Type: Space Grotesk (display) + Inter (body) + IBM Plex Mono (data/serials)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  --ink:        #142032;
  --ink-soft:   #1F3049;
  --paper:      #FAF9F6;
  --paper-dim:  #F0EEE7;
  --amber:      #F5A623;
  --amber-dark: #C97F0C;
  --pass:       #2E7D4F;
  --pass-dark:  #1F5C38;
  --fail:       #B3392C;
  --slate:      #5B6472;
  --charcoal:   #22282F;
  --line:       #DFDCD2;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 10px;
  --container: 1180px;
}

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

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1{ font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2{ font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3{ font-size: 1.25rem; }

p{ color: var(--slate); }

.mono{ font-family: var(--font-mono); letter-spacing: 0.02em; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 8px; height: 8px;
  background: var(--pass);
  border-radius: 2px;
  display: inline-block;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:focus-visible{ outline: 3px solid var(--amber); outline-offset: 2px; }
.btn-primary{
  background: var(--pass);
  color: #fff;
  box-shadow: 0 2px 0 var(--pass-dark);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 3px 0 var(--pass-dark); }
.btn-outline{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover{ background: var(--ink); color: #fff; }
.btn-call{
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 2px 0 var(--amber-dark);
}
.btn-call:hover{ transform: translateY(-1px); box-shadow: 0 3px 0 var(--amber-dark); }
.btn-block{ width: 100%; }

/* ============ HEADER ============ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
}
.logo-mark{
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg{ width: 18px; height: 18px; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.nav-links a{ position: relative; padding: 4px 0; }
.nav-links a:hover{ color: var(--pass-dark); }
.nav-links .has-dropdown{ position: relative; }
.dropdown{
  display: none;
  position: absolute;
  top: 100%;
  left: -14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 190px;
  box-shadow: 0 12px 24px rgba(20,32,50,0.12);
}
.has-dropdown:hover .dropdown{ display: block; }
.dropdown a{
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-weight: 500;
}
.dropdown a:hover{ background: var(--paper-dim); }

.header-actions{ display: flex; align-items: center; gap: 12px; }
.header-actions .btn{ padding: 11px 20px; font-size: 0.88rem; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span{
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero{
  background: var(--ink);
  background-image: radial-gradient(circle at 85% 20%, rgba(245,166,35,0.10), transparent 45%),
                     radial-gradient(circle at 10% 90%, rgba(46,125,79,0.18), transparent 40%);
  color: #fff;
  padding: 76px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1{ color: #fff; }
.hero .eyebrow{ color: var(--amber); }
.hero .eyebrow::before{ background: var(--amber); }
.hero-lede{
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  margin: 18px 0 30px;
}
.hero-ctas{ display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust{
  display: flex;
  gap: 26px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-trust div{ font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.hero-trust strong{
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
}

/* ---- Signature element: the PAT pass sticker ---- */
.pat-sticker{
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  color: var(--charcoal);
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  transform: rotate(2deg);
}
.pat-sticker::before{
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px dashed var(--line);
  border-radius: 8px;
  pointer-events: none;
}
.pat-sticker-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.pat-sticker-brand{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
}
.pat-sticker-seal{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-align: center;
  border: 2px solid var(--pass-dark);
  flex-shrink: 0;
}
.pat-sticker-row{
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 5px 0;
  color: var(--slate);
}
.pat-sticker-row span:last-child{ color: var(--ink); font-weight: 600; }
.pat-sticker-status{
  margin-top: 12px;
  background: var(--pass);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

/* ============ SECTIONS ============ */
section{ padding: 84px 0; }
.section-alt{ background: var(--paper-dim); }
.section-ink{ background: var(--ink); color: #fff; }
.section-ink h2, .section-ink h3{ color: #fff; }
.section-ink p{ color: rgba(255,255,255,0.72); }

.section-head{
  max-width: 640px;
  margin-bottom: 46px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

/* Grids */
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* Cards */
.card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.icon-badge{
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge svg{ width: 22px; height: 22px; stroke: var(--pass-dark); }

.service-card h3{ margin-bottom: 8px; }
.service-card p{ font-size: 0.93rem; margin-bottom: 14px; }
.service-meta{
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--amber-dark);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Frequency table */
.freq-table{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.freq-table th, .freq-table td{
  text-align: left;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.freq-table th{
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--slate);
  background: var(--paper-dim);
}
.freq-table tr:last-child td{ border-bottom: none; }
.freq-table td:last-child{ font-family: var(--font-mono); color: var(--pass-dark); font-weight: 600; white-space: nowrap; }

/* Steps */
.steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step{ position: relative; }
.step-num{
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--amber-dark);
  border: 1px solid var(--line);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: #fff;
}

/* CTA banner */
.cta-banner{
  background: var(--pass);
  color: #fff;
  border-radius: 18px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2{ color: #fff; margin-bottom: 6px; }
.cta-banner p{ color: rgba(255,255,255,0.85); }
.cta-banner .btn-outline{ border-color: #fff; color: #fff; }
.cta-banner .btn-outline:hover{ background: #fff; color: var(--pass-dark); }
.cta-actions{ display: flex; gap: 12px; flex-wrap: wrap; }

/* Locations */
.location-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.location-card-top{
  background: var(--ink);
  color: #fff;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.location-card-top h3{ color: #fff; }
.location-tag{
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: var(--amber);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
}
.location-card-body{ padding: 26px 28px; }
.location-detail{
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 10px;
}
.location-detail strong{ color: var(--ink); }

/* Reviews */
.review-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.review-stars{ color: var(--amber-dark); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-quote{ color: var(--charcoal); font-size: 0.95rem; margin-bottom: 16px; }
.review-author{ font-size: 0.82rem; color: var(--slate); font-weight: 600; }

/* FAQ */
.faq-item{
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary{
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--pass);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ margin-top: 14px; font-size: 0.94rem; max-width: 70ch; }

/* Forms */
.form-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field{ margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.field label{ font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea{
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--pass);
  background: #fff;
}
.field-hint{ font-size: 0.78rem; color: var(--slate); }
fieldset{ border: none; }
.radio-group{ display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill{
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.radio-pill input{ accent-color: var(--pass); }

/* Footer */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
  font-size: 0.9rem;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4{ color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; font-family: var(--font-mono); }
.footer-grid ul li{ margin-bottom: 10px; }
.footer-grid a:hover{ color: #fff; }
.footer-logo{ display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* Breadcrumb */
.breadcrumb{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--slate);
  padding: 22px 0 0;
}
.breadcrumb a:hover{ color: var(--pass-dark); }

/* Sticky mobile call bar */
.mobile-call-bar{ display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .pat-sticker{ margin: 0 auto; transform: rotate(0); max-width: 300px; }
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }

  .nav-toggle{ display: flex; }
  .nav-links{
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px rgba(20,32,50,0.14);
    padding: 8px 0 14px;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav-links.open{ display: flex; }
  .nav-links > a{ padding: 14px 28px; border-bottom: 1px solid var(--line); }
  .nav-links .has-dropdown{ display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
  .nav-links .has-dropdown > a{ padding: 14px 28px; border-bottom: none; }
  /* Hover-only dropdowns don't work on touch — flatten them into a static, always-open sub-list */
  .nav-links .dropdown{
    display: block !important;
    position: static;
    background: var(--paper-dim);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 4px 0;
    min-width: 0;
  }
  .nav-links .dropdown a{ padding: 12px 28px 12px 40px; font-size: 0.86rem; border-radius: 0; }
}

@media (max-width: 600px){
  section{ padding: 56px 0; }
  .grid-3{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .cta-banner{ padding: 32px 24px; }
  .form-row{ grid-template-columns: 1fr; }
  .header-actions .btn-outline{ display: none; }
  .freq-table, .volume-table, .pricing-grid table{
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .mobile-call-bar{
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--ink);
    padding: 12px 16px;
    gap: 10px;
  }
  .mobile-call-bar .btn{ flex: 1; }
  body{ padding-bottom: 64px; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; transition: none !important; }
}

/* ============================================================
   EXPANSION — Company / Pricing / Approach / Resources / Legal
   ============================================================ */

/* Circuit-trace decorative texture, used on ink sections */
.circuit-trace{
  position: absolute;
  inset: 0;
  opacity: 0.10;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, transparent 48%, rgba(245,166,35,0.6) 48%, rgba(245,166,35,0.6) 50%, transparent 50%),
    linear-gradient(0deg, transparent 30%, rgba(46,125,79,0.5) 30%, rgba(46,125,79,0.5) 31%, transparent 31%),
    linear-gradient(0deg, transparent 70%, rgba(46,125,79,0.5) 70%, rgba(46,125,79,0.5) 71%, transparent 71%);
  background-size: 140px 140px, 100% 100%, 100% 100%;
}
.circuit-trace::after{
  content: "";
  position: absolute;
  top: 30%; left: 48%;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: -220px 0 0 var(--amber), 220px 40vh 0 var(--pass), -340px 40vh 0 var(--pass);
}
.relative{ position: relative; overflow: hidden; }

/* Stat bar */
.stat-bar{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell{
  background: #fff;
  padding: 26px 20px;
  text-align: center;
}
.stat-cell strong{
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ink);
}
.stat-cell span{
  font-size: 0.8rem;
  color: var(--slate);
}

/* Avatar badge (used in place of stock photography) */
.avatar-badge{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avatar-badge svg{ width: 28px; height: 28px; stroke: var(--amber); }
.founder-card{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.founder-card h3{ margin-bottom: 2px; }
.founder-role{
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--pass-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: block;
}

/* Pricing table */
.pricing-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card{
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.featured{
  border-color: var(--pass);
  box-shadow: 0 16px 32px rgba(46,125,79,0.14);
  position: relative;
}
.price-card.featured::before{
  content: "Most booked";
  position: absolute;
  top: -13px; left: 28px;
  background: var(--pass);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-figure{
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--ink);
  margin: 14px 0 4px;
}
.price-figure span{ font-family: var(--font-body); font-size: 0.9rem; color: var(--slate); font-weight: 500; }
.price-list{ margin: 20px 0; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.price-list li{
  font-size: 0.88rem;
  color: var(--slate);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.price-list li::before{
  content: "✓";
  color: var(--pass);
  font-weight: 700;
  flex-shrink: 0;
}

.volume-table{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.volume-table th, .volume-table td{
  text-align: left;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.volume-table th{
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--slate);
  background: var(--paper-dim);
}
.volume-table tr:last-child td{ border-bottom: none; }
.volume-table td:last-child{ font-family: var(--font-mono); color: var(--pass-dark); font-weight: 600; }

/* Timeline (Our Approach) */
.timeline{ position: relative; padding-left: 46px; }
.timeline::before{
  content: "";
  position: absolute;
  left: 15px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.timeline-item{ position: relative; padding-bottom: 42px; }
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-dot{
  position: absolute;
  left: -46px; top: 2px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  border: 4px solid var(--paper);
}
.timeline-item h3{ margin-bottom: 6px; }
.timeline-item p{ max-width: 62ch; }
.timeline-example{
  margin-top: 12px;
  background: var(--paper-dim);
  border-left: 3px solid var(--amber);
  padding: 12px 16px;
  font-size: 0.86rem;
  color: var(--charcoal);
  border-radius: 0 6px 6px 0;
}
.timeline-example strong{ color: var(--ink); font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 4px; }

/* Article cards (Resources hub) */
.article-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.article-card-top{
  height: 8px;
  background: linear-gradient(90deg, var(--amber), var(--pass));
}
.article-card-body{ padding: 26px; flex-grow: 1; display: flex; flex-direction: column; }
.article-tag{
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--amber-dark);
  margin-bottom: 10px;
}
.article-card h3{ margin-bottom: 10px; font-size: 1.1rem; }
.article-card p{ font-size: 0.9rem; flex-grow: 1; }
.article-read{
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--pass-dark);
  font-weight: 600;
}
.article-body{ max-width: 720px; }
.article-body h2{ margin-top: 40px; margin-bottom: 14px; }
.article-body h2:first-child{ margin-top: 0; }
.article-body p{ margin-bottom: 16px; font-size: 1rem; }
.article-body ul{ margin: 0 0 20px 0; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li{ font-size: 0.96rem; color: var(--slate); padding-left: 22px; position: relative; }
.article-body ul li::before{ content:"—"; position:absolute; left:0; color: var(--pass); }
.article-meta{
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--slate);
  margin: 18px 0 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

/* Accreditations / guarantee */
.accred-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.accred-item{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
}
.accred-item .icon-badge{ margin-bottom: 0; flex-shrink: 0; }
.accred-item h3{ font-size: 1.02rem; margin-bottom: 6px; }
.accred-item p{ font-size: 0.88rem; }
.note-callout{
  background: #FFF7E8;
  border: 1px solid #F0DCA8;
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.88rem;
  color: #6b4c05;
  margin-top: 24px;
}

/* Legal pages */
.legal-body{ max-width: 760px; }
.legal-body h2{ margin-top: 34px; margin-bottom: 12px; font-size: 1.2rem; }
.legal-body h2:first-child{ margin-top: 0; }
.legal-body p{ margin-bottom: 14px; font-size: 0.95rem; }
.legal-body ul{ margin: 0 0 14px 22px; display: flex; flex-direction: column; gap: 8px; }
.legal-body ul li{ font-size: 0.93rem; color: var(--slate); list-style: disc; }
.legal-updated{ font-family: var(--font-mono); font-size: 0.78rem; color: var(--slate); margin-bottom: 30px; display: block; }

@media (max-width: 900px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .article-grid{ grid-template-columns: 1fr 1fr; }
  .accred-list{ grid-template-columns: 1fr; }
  .stat-bar{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .article-grid{ grid-template-columns: 1fr; }
  .founder-card{ flex-direction: column; }
  .timeline{ padding-left: 38px; }
  .timeline-dot{ left: -38px; width: 28px; height: 28px; }
}
