/* FUNdamentally Children - Research & Insight Hub
   Fully Productised CSS with Brand Integration
   Primary Blue: #00a4cc | Primary Red: #da0d15
   Fonts: Blur Medium (Headings) | Poppins (Body)
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

@font-face {
  font-family: 'Blur';
  src: url('Blur_Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand Identity Colors */
  --brand-blue: #00a4cc;
  --brand-blue-dark: #0084a3;
  --brand-blue-light: #e6f6f9;
  --brand-red: #da0d15;
  --brand-red-light: #fbe7e8;
  
  /* Neutral Palette */
  --ink: #1a1a18;
  --ink-mid: #3d3d3a;
  --ink-light: #6b6b67;
  --sand: #F5F3EE;
  --sand-dark: #EAE7DF;
  --white: #ffffff;
  --border: rgba(0, 164, 204, 0.12);
  --border-mid: rgba(0, 164, 204, 0.22);
  
  /* Typography - Fixed per requirements */
  --font-display: 'Blur', 'League Spartan', sans-serif;
  --font-body: 'Poppins', 'Century Gothic', sans-serif;
  
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --shadow: 0 2px 16px rgba(0, 164, 204, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 164, 204, 0.15);
  --max: 1120px;
  --transition: 0.22s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo img {
  height: 40px; width: auto;
  display: block;
}
.nav-logo span { display: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; color: var(--ink-mid);
  text-decoration: none; transition: color var(--transition); text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-blue); }
.nav-cta {
  padding: 8px 20px;
  background: var(--brand-blue); color: white;
  border-radius: var(--radius-pill); font-size: 0.875rem; font-weight: 600;
  text-decoration: none; transition: background var(--transition), transform var(--transition);
  font-family: var(--font-display); text-transform: uppercase;
}
.nav-cta:hover { background: var(--brand-blue-dark); transform: translateY(-1px); }

/* HERO */
.hero {
  background: var(--sand);
  padding: 5rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -10%; top: -20%;
  width: 55%; height: 130%;
  background: radial-gradient(ellipse at center, var(--brand-blue-light) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-red); background: var(--brand-red-light);
  padding: 5px 14px; border-radius: var(--radius-pill); margin-bottom: 1.25rem;
  font-family: var(--font-display);
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15; color: var(--ink); margin-bottom: 1.25rem; font-weight: 700;
  text-transform: uppercase;
}
.hero h1 em { color: var(--brand-blue); font-style: normal; }
.hero-sub {
  font-size: 1.1rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--brand-blue); color: white;
  border-radius: var(--radius-pill); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: all var(--transition);
  border: none; cursor: pointer; font-family: var(--font-display); text-transform: uppercase;
}
.btn-primary:hover { background: var(--brand-blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,164,204,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: transparent; color: var(--ink);
  border-radius: var(--radius-pill); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: all var(--transition);
  border: 1.5px solid var(--border-mid); cursor: pointer; font-family: var(--font-display); text-transform: uppercase;
}
.btn-secondary:hover { border-color: var(--brand-blue); color: var(--brand-blue); transform: translateY(-1px); }
.hero-trust {
  display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--ink-light); font-weight: 600; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-red); flex-shrink: 0; }

/* HERO VISUAL */
.hero-visual {
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.path-preview-card {
  background: white; border-radius: var(--radius); padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  transition: transform var(--transition);
  animation: floatIn 0.6s ease both;
}
.path-preview-card:hover { transform: translateX(6px); border-color: var(--brand-blue); }
.path-preview-card:nth-child(2) { animation-delay: 0.1s; margin-left: 2rem; }
.path-preview-card:nth-child(3) { animation-delay: 0.2s; }
.path-preview-card:nth-child(4) { animation-delay: 0.3s; margin-left: 2rem; }
@keyframes floatIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.card-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 18px; background: var(--brand-blue-light); color: var(--brand-blue);
}
.card-label { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--ink); text-transform: uppercase; }
.card-meta { font-size: 0.75rem; color: var(--ink-light); }
.card-price { margin-left: auto; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--brand-red); white-space: nowrap; }

/* SECTION COMMONS */
.section { padding: 5rem 2rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-red);
  margin-bottom: 0.75rem;
}
.section h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2; font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; text-transform: uppercase;
}
.section h2 em { color: var(--brand-blue); font-style: normal; }
.section-sub { font-size: 1rem; color: var(--ink-light); max-width: 560px; margin: 0 auto; }

/* SERVICE CARDS GRID */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.service-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; display: flex; flex-direction: column;
  transition: all var(--transition); text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-blue); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--brand-blue); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.service-icon { font-size: 1.75rem; }
.service-price-badge {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--brand-blue);
  background: var(--brand-blue-light); padding: 4px 10px; border-radius: var(--radius-pill);
}
.service-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; text-transform: uppercase; }
.service-card p { font-size: 0.9rem; color: var(--ink-light); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.service-meta { display: flex; justify-content: space-between; align-items: center; }
.service-time { font-size: 0.8rem; color: var(--ink-light); font-weight: 600; }
.service-link { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--brand-red); text-decoration: none; display: flex; align-items: center; gap: 4px; text-transform: uppercase; }
.service-link:hover { gap: 8px; }

/* JOURNEY PATHS */
.paths-section { background: var(--sand); }
.paths-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.path-card {
  background: white; border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid var(--border); transition: all var(--transition);
}
.path-card:hover { box-shadow: var(--shadow); border-color: var(--brand-blue); }
.path-card.featured { border: 2.5px solid var(--brand-red); }
.path-featured-badge {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; color: var(--brand-red);
  background: var(--brand-red-light); padding: 3px 10px; border-radius: var(--radius-pill);
  display: inline-block; margin-bottom: 0.75rem; text-transform: uppercase;
}
.path-name { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 0.4rem; }
.path-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.3; text-transform: uppercase; }
.path-who { font-size: 0.85rem; color: var(--ink-light); margin-bottom: 1rem; }
.path-services { list-style: none; margin-bottom: 1.25rem; }
.path-services li {
  font-size: 0.82rem; color: var(--ink-mid); padding: 4px 0 4px 16px;
  position: relative; border-bottom: 1px solid var(--border);
}
.path-services li:last-child { border-bottom: none; }
.path-services li::before { content: '→'; position: absolute; left: 0; color: var(--brand-blue); font-weight: 700; }
.path-total { display: flex; justify-content: space-between; align-items: baseline; }
.path-total-label { font-size: 0.8rem; color: var(--ink-light); font-weight: 600; }
.path-total-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--brand-blue); }

/* QUIZ SECTION - FIXING VISIBILITY */
.quiz-section { background: var(--ink); }
.quiz-section .section-eyebrow { color: var(--brand-blue); }
.quiz-section h2 { color: white; }
.quiz-section .section-sub { color: rgba(255,255,255,0.7); }

/* PROCESS STEPS */
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem; counter-reset: steps; }
.process-step { counter-increment: steps; position: relative; }
.process-step::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-display); font-size: 3rem; color: var(--brand-blue-light);
  display: block; line-height: 1; margin-bottom: 0.75rem; font-weight: 700;
}
.process-step h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; text-transform: uppercase; }
.process-step p { font-size: 0.875rem; color: var(--ink-light); line-height: 1.6; }

/* FOOTER */
.footer {
  background: #0b0b0a; color: white; padding: 3rem 2rem 2rem;
  border-top: 4px solid var(--brand-blue);
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { margin-bottom: 0.75rem; display: block; }
.footer-brand img { height: 36px; width: auto; display: block;  }
.footer-brand span { display: none; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h5 { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--brand-blue-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* INDIVIDUAL SERVICE PAGE */
.service-hero {
  background: var(--sand); padding: 4rem 2rem 3rem;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--ink-light); margin-bottom: 1.5rem; font-weight: 600;
}
.breadcrumb a { color: var(--ink-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-blue); }
.service-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2; font-weight: 700; color: var(--ink); margin-bottom: 1rem; text-transform: uppercase;
}
.service-hero h1 em { color: var(--brand-blue); font-style: normal; }
.meta-tag {
  font-family: var(--font-display); font-size: 0.82rem; padding: 5px 14px; border-radius: var(--radius-pill);
  background: white; border: 1px solid var(--border); color: var(--ink-mid);
  display: flex; align-items: center; gap: 6px; text-transform: uppercase;
}
.meta-tag strong { color: var(--brand-blue); font-weight: 700; }

/* STICKY BOOKING CARD */
.booking-card {
  background: white; border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  position: sticky; top: 80px; border-top: 4px solid var(--brand-red);
}
.booking-card h3 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--ink-light); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.25rem; }
.booking-price { font-family: var(--font-display); font-size: 2.2rem; color: var(--brand-blue); line-height: 1; margin-bottom: 0.25rem; font-weight: 700; }
.feature-check { color: var(--brand-red); flex-shrink: 0; margin-top: 2px; font-weight: bold; }

/* DELIVERABLES */
.deliverable-card {
  background: var(--sand); border-radius: var(--radius-sm); padding: 1.25rem;
  border: 1px solid var(--sand-dark);
}
.deliverable-card h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; text-transform: uppercase; }

/* UPSELL */
.upsell-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; text-decoration: none; color: inherit;
  transition: all var(--transition); display: flex; align-items: center; gap: 14px;
}
.upsell-card:hover { border-color: var(--brand-blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.upsell-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--ink); text-transform: uppercase; }
.upsell-arrow { margin-left: auto; color: var(--brand-red); font-size: 1.1rem; font-weight: bold; }

/* QUOTE BLOCK */
.quote-block {
  border-left: 4px solid var(--brand-red); padding: 1rem 1.5rem;
  background: var(--brand-red-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}
.quote-block p { font-size: 1.05rem; color: var(--ink); font-style: italic; line-height: 1.6; font-weight: 500; }

/* QUIZ EMBED - CRITICAL VISIBILITY FIX */
.quiz-embed-container {
  background: white; border-radius: var(--radius); max-width: 720px;
  margin: 0 auto; padding: 2.5rem; box-shadow: 0 4px 60px rgba(0,0,0,0.35);
}
.progress-fill { height: 4px; background: var(--brand-blue); border-radius: 2px; }

.q-label { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 0.5rem; }
.q-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--ink); line-height: 1.2; margin-bottom: 0.5rem; font-weight: 700; text-transform: uppercase; }
.q-sub { font-size: 1rem; color: var(--ink-light); margin-bottom: 2rem; font-weight: 400; }

.q-option {
  padding: 14px 18px; background: var(--sand); border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm); cursor: pointer; text-align: left;
  display: flex; align-items: flex-start; gap: 14px; transition: all var(--transition);
}
.q-option:hover { background: var(--brand-blue-light); border-color: var(--brand-blue); }
.q-option.selected { background: var(--brand-red-light); border-color: var(--brand-red); }

.q-option.selected .q-radio { border-color: var(--brand-red); background: var(--brand-red); }
.q-option-text { font-family: var(--font-display); font-size: 1rem; color: var(--ink); line-height: 1.5; font-weight: 700; text-transform: uppercase; }
.q-option-sub { font-size: 0.85rem; color: var(--ink-mid); margin-top: 2px; font-weight: 400; }

.q-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }
.q-back { background: none; border: none; color: var(--ink-light); font-size: 0.9rem; font-weight: 700; cursor: pointer; font-family: var(--font-display); text-transform: uppercase; }
.q-next {
  padding: 12px 32px; background: var(--brand-blue); color: white;
  border: none; border-radius: var(--radius-pill); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition); font-family: var(--font-display); text-transform: uppercase;
}
.q-next:not(:disabled):hover { background: var(--brand-blue-dark); transform: translateY(-1px); }

/* RESULT STYLES */
.result-primary-card {
  background: var(--brand-blue-light); border: 2.5px solid var(--brand-blue);
  border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem;
}
.result-badge {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill); display: inline-block; margin-bottom: 0.75rem;
}
.badge-match { background: var(--brand-blue); color: white; }
.result-service-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); margin-bottom: 0.25rem; font-weight: 700; text-transform: uppercase; }
.result-service-price { font-family: var(--font-display); font-size: 0.95rem; color: var(--brand-blue-dark); margin-bottom: 0.75rem; font-weight: 700; }
.result-service-desc { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.65; }
.result-cta-btn {
  display: block; width: 100%; padding: 14px; background: var(--brand-red); color: white;
  border: none; border-radius: var(--radius-pill); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; margin-top: 1.25rem; font-family: var(--font-display); transition: all var(--transition);
  text-align: center; text-decoration: none; text-transform: uppercase;
}
.result-cta-btn:hover { background: #b30a11; transform: translateY(-1px); }

/* =============================================
   RESPONSIVE — TABLET (max 900px)
   ============================================= */
@media (max-width: 900px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .hero-trust { gap: 1rem 1.5rem; }
  .service-hero { padding: 2.5rem 1.5rem 2rem; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .booking-card { position: static; }
  .section { padding: 3.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .enquire-body { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
  .enquire-left { position: static; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .upsell-row { grid-template-columns: 1fr; }
}

/* =============================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================= */
@media (max-width: 640px) {
  .nav { padding: 0 1rem; }
  .nav-inner { height: 56px; }
  .nav-logo img { height: 32px; }
  .nav-links { display: none; }
  .nav-cta { padding: 7px 14px; font-size: 0.75rem; white-space: nowrap; flex-shrink: 0; }

  .hero { padding: 2rem 1rem 2rem; overflow: hidden; }
  .hero::before { display: none; }
  .hero h1 { font-size: clamp(1.7rem, 8.5vw, 2.2rem); line-height: 1.1; margin-bottom: 1rem; }
  .hero-eyebrow { font-size: 0.7rem; padding: 4px 10px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .hero-actions { flex-direction: column; gap: 0.65rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.85rem; }
  .hero-trust { gap: 0.6rem 1.2rem; margin-top: 1.5rem; }
  .trust-item { font-size: 0.8rem; }

  .section { padding: 2.5rem 1rem; }
  .section-header { margin-bottom: 2rem; }
  .section h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .section-sub { font-size: 0.875rem; }

  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 1.25rem; }
  .service-card h3 { font-size: 1rem; }

  .paths-grid { grid-template-columns: 1fr; gap: 14px; }
  .path-card { padding: 1.25rem; }

  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-step::before { font-size: 2rem; }

  .service-hero { padding: 1.75rem 1rem 1.5rem; }
  .service-hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .service-hero-desc { font-size: 0.9rem; }
  .service-meta-tags { gap: 6px; }
  .meta-tag { font-size: 0.75rem; padding: 4px 10px; }
  .booking-card { padding: 1.25rem; }
  .booking-price { font-size: 1.8rem; }
  .breadcrumb { font-size: 0.75rem; }
  .deliverables-grid { grid-template-columns: 1fr; gap: 12px; }
  .upsell-row { grid-template-columns: 1fr; }
  .content-prose h3 { font-size: 1rem; }
  .content-prose p, .content-prose ul li { font-size: 0.875rem; }

  .footer { padding: 2rem 1rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .footer-brand img { height: 28px; }

  .quiz-embed-container { padding: 1.5rem 1rem; border-radius: var(--radius); }
  .q-title { font-size: 1.3rem; }
  .q-option { padding: 12px 14px; }
  .q-option-text { font-size: 0.875rem; }
  .q-next { padding: 11px 24px; font-size: 0.875rem; }

  .quiz-page-body { padding: 1.5rem 1rem; }
  .quiz-page-container { padding: 1.5rem 1rem; }
  .quiz-page-header { padding: 0.875rem 1rem; }
  .quiz-page-logo img { height: 28px; }

  .enquire-body { padding: 1.5rem 1rem; gap: 1.5rem; }
  .enquire-left h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .enquire-form-card { padding: 1.25rem 1rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }
}