@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   CLEARSPACE LEARNING — Global Styles
   ============================================================ */

:root {
  --navy:        #1B2B6B;
  --navy-deep:   #12205A;
  --navy-deeper: #0E1A48;
  --teal:        #3AABB5;
  --orange:      #E05C28;
  --slate:       #4A5568;
  --off-white:   #FAFAF8;
  --light-grey:  #F4F4F0;
  --white:       #ffffff;
  --pale-teal:   #E8F6F8;
  --pale-navy:   #ECEEF6;
  --pale-orange: #FAF0EB;
  --teal-dark:   #0F6E56;
  --orange-dark: #993C1D;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --font-logo:    'Raleway', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --transition: all 0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate);
  background: var(--off-white);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
}

h1 { font-size: clamp(36px, 6vw, 58px); }
h2 { font-size: clamp(24px, 4vw, 32px); }
h3 { font-size: clamp(18px, 3vw, 22px); }
h4 { font-size: clamp(16px, 2.5vw, 18px); }

p { line-height: 1.75; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}

.eyebrow-teal { color: var(--teal); opacity: 0.85; }
.eyebrow-white { color: var(--white); opacity: 0.7; }

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-teal { color: var(--teal); }
.text-orange { color: var(--orange); }
.text-slate { color: var(--slate); }

.bg-navy { background: var(--navy); }
.bg-teal { background: var(--teal); }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-light-grey { background: var(--light-grey); }
.bg-navy-deep { background: var(--navy-deep); }

/* Grid systems */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-2-1 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  background: var(--navy);
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo svg { flex-shrink: 0; }

.nav-logo-img {
  height: 56px;
  width: auto;
  max-width: 320px;
  display: block;
}

.nav-wordmark { display: flex; flex-direction: column; }

.nav-wordmark-primary {
  font-family: var(--font-logo);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
  line-height: 1.2;
}

.nav-wordmark-sub {
  font-family: var(--font-logo);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: var(--teal);
  opacity: 0.8;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  opacity: 1 !important;
}

.nav-cta:hover { background: #c94f22 !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  padding: 24px 32px;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--teal); }

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: #c94f22; transform: translateY(-1px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: white; }

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-group-center { justify-content: center; }

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

.card {
  background: var(--white);
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card-icon-teal { background: var(--pale-teal); }
.card-icon-navy { background: var(--pale-navy); }
.card-icon-orange { background: var(--pale-orange); }

.card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.card-body {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
}

/* Path cards */
.path-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-top: 3px solid var(--light-grey);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.path-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.path-card-navy { border-top-color: var(--navy); }
.path-card-teal { border-top-color: var(--teal); }
.path-card-orange { border-top-color: var(--orange); }

.path-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--slate);
  opacity: 0.7;
  display: block;
  margin-bottom: 10px;
}

.path-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.path-card-body {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 18px;
}

.path-card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  transition: var(--transition);
}

.path-card-link:hover { color: #2D8F97; }

/* Step cards */
.step-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step-icon {
  margin: 12px auto 14px;
  display: block;
}

.step-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-body {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
}

/* Proof cards — Direction 3 */
.proof-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  box-shadow: var(--shadow-card);
}

.proof-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  padding-top: 2px;
}

.proof-quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 8px;
}

.proof-attr {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--slate);
  opacity: 0.7;
}

/* Case study cards */
.case-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.case-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.case-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.case-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.case-card-body {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 16px;
}

.case-card-outcome {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--teal-dark);
  border-top: 1px solid var(--pale-teal);
  padding-top: 14px;
  margin-top: 14px;
}

/* ============================================================
   TAGS & PILLS
   ============================================================ */

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.tag:hover { opacity: 0.8; transform: translateY(-1px); }

.tag-teal { background: var(--pale-teal); color: var(--teal-dark); }
.tag-navy { background: var(--pale-navy); color: var(--navy); }
.tag-orange { background: var(--pale-orange); color: var(--orange-dark); }

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags-row-center { justify-content: center; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */

.testi-section {
  background: var(--teal);
  padding: 48px 32px;
  text-align: center;
}

.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 14px;
  line-height: 1.5;
}

.testi-attr {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75);
}

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

.hero {
  background: var(--navy);
  padding: 80px 32px 72px;
  text-align: center;
}

.hero h1 { color: var(--white); }
.hero h1 em { font-style: italic; color: var(--teal); }

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.5vw, 21px);
  font-style: italic;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 18px auto 14px;
  line-height: 1.45;
}

.hero-body {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 64px 32px 56px;
}

.page-hero h1 { color: var(--white); }
.page-hero h1 em { font-style: italic; color: var(--teal); }
.page-hero h1.italic-head { font-style: italic; }

.page-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 19px);
  font-style: italic;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 16px 0 0;
  line-height: 1.5;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header {
  margin-bottom: 40px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; font-size: 15px; }
.section-header-center p { max-width: 560px; margin: 0 auto; }

/* ============================================================
   LINKS
   ============================================================ */

.link-teal {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  transition: var(--transition);
  display: inline-block;
}

.link-teal:hover { color: #2D8F97; }
.link-teal::after { content: ' →'; }

.link-teal-block {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  margin-top: 16px;
  transition: var(--transition);
}

.link-teal-block:hover { color: #2D8F97; }
.link-teal-block::after { content: ' →'; }

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

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  display: block;
}

.stat-geo {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--navy);
  line-height: 2;
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--slate);
  margin-top: 6px;
  line-height: 1.5;
}

/* ============================================================
   STORY SECTION
   ============================================================ */

.story-section {
  background: var(--navy);
  padding: 72px 0;
}

.story-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.story-body {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 12px;
}

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

.footer {
  background: var(--navy);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--teal);
  display: block;
  margin: 8px 0 12px;
}

.footer-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 2px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  line-height: 2;
  display: block;
}

.footer-links a:hover { color: var(--teal); }

.footer-bottom {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.3);
}



/* Safeguarding badge in footer */
.safeguarding-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(58,171,181,0.15);
  border: 1px solid rgba(58,171,181,0.3);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  margin-top: 12px;
}

.safeguarding-badge span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--teal);
}

/* ============================================================
   LOGO SVG MARK
   ============================================================ */

.logo-mark { flex-shrink: 0; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumb {
  background: var(--navy-deep);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a, .breadcrumb span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { opacity: 0.3; }
.breadcrumb-current { color: rgba(255,255,255,0.7) !important; }

/* ============================================================
   CONTACT FORM
   ============================================================ */

.form-group { margin-bottom: 20px; }

.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--slate);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(58,171,181,0.12);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* ============================================================
   HERO WITH BACKGROUND IMAGE
   ============================================================ */

.hero-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27,43,107,0.82) 0%,
    rgba(27,43,107,0.72) 100%
  );
  z-index: 0;
}

.hero-img .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   LUCIDE ICONS
   ============================================================ */

.lucide {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.card-icon .lucide {
  width: 22px;
  height: 22px;
}

.step-icon .lucide {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
}

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

.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.italic { font-style: italic; }
.mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; }

.divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin: 40px 0;
}

.divider-light {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 40px 0;
}

/* ============================================================
   QUALITY ASSURANCE PILLARS
   ============================================================ */

.qa-strip {
  padding: 40px 0;
}

.qa-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.qa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qa-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(58,171,181,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qa-icon i { stroke: var(--teal); width: 24px; height: 24px; }

.qa-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.qa-sublabel {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}



/* Footer credentials line */
.footer-credentials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0;
}

.footer-credential {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}

.footer-credential i { width: 12px; height: 12px; stroke: var(--teal); }

/* ============================================================
   DOMAIN CARDS (Approach page)
   ============================================================ */

.domain-card {
  background: var(--white);
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.domain-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.domain-icon i { width: 28px; height: 28px; }

.domain-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--teal);
  display: block;
  margin-bottom: 6px;
}

.domain-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.domain-subtitle {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.domain-body {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.75;
}

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

.programme-card {
  background: var(--white);
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.programme-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.programme-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.programme-icon i { width: 30px; height: 30px; }

.programme-subjects {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}

.programme-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.programme-body {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.75;
}

/* ============================================================
   WHEEL SECTION (Approach page)
   ============================================================ */

.wheel-section {
  text-align: center;
  padding: 0;
}

.wheel-placeholder {
  max-width: 520px;
  margin: 0 auto 24px;
}

.wheel-caption {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   PRACTICE HIGHLIGHT (Approach page - go-kart section)
   ============================================================ */

.practice-domain {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.practice-domain:last-child { border-bottom: none; }

.practice-domain-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.practice-domain-icon i { width: 20px; height: 20px; }

.practice-domain-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}

.practice-domain-text {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
}

/* ============================================================
   TAG ICONS (profile tags with icons)
   ============================================================ */

.tag-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tag-icon i { width: 14px; height: 14px; }

/* Larger profile tag icons on Who We Work With */
.profile-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  vertical-align: middle;
}

.profile-icon i { width: 28px; height: 28px; }

/* ============================================================
   PHASE CARDS (Programmes page)
   ============================================================ */

.phase-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.phase-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.phase-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.phase-body {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .qa-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }
  .section { padding: 48px 0; }
  .section-lg { padding: 64px 0; }

  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 40px; }

  .hero { padding: 56px 20px 48px; }
  .page-hero { padding: 48px 20px 40px; }

  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }

  .btn-group { flex-direction: column; width: 100%; }
  .btn { text-align: center; width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-credentials { flex-direction: column; align-items: center; gap: 8px; }

  .qa-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .proof-card { grid-template-columns: 36px 1fr; gap: 10px; }
  .proof-num { font-size: 32px; }

  .testi-section { padding: 40px 20px; }
}
