/* =========================================
   THOMAS DAMP SURVEYS — MAIN STYLESHEET
   Brand: Navy #1D3557 | Blue #457B9D | Grey #6C757D | BG #F7F8FA
   Type: Times New Roman
   ========================================= */

/* === TOKENS === */
:root {
  --navy:    #1D3557;
  --blue:    #457B9D;
  --grey:    #6C757D;
  --light:   #A8C8E1;
  --bg:      #F7F8FA;
  --white:   #FFFFFF;
  --border:  #DDE3EA;
  --text:    #2C3E50;
  --text-sm: #5A6878;

  --font-head: 'Times New Roman', Times, serif;
  --font-body: 'Times New Roman', Times, serif;

  --radius:  6px;
  --shadow:  0 2px 12px rgba(29,53,87,0.10);
  --shadow-lg: 0 8px 32px rgba(29,53,87,0.14);

  --max-w: 1140px;
  --section-pad: 80px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img, video { max-width: 100%; height: auto; display: block; }
img[src$="tds-logo.png"] {
  object-fit: contain !important;
  object-position: center !important;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--text-sm); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-pad) 0;
}
.section--grey { background: var(--bg); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.78); }
.section--navy .eyebrow { color: var(--light); }

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  text-decoration: none;
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  text-decoration: none;
  color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(29,53,87,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--white);
}
.site-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.2;
}
.site-logo-text span { display: block; font-weight: 400; font-size: 0.78rem; color: var(--grey); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 10px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--navy); background: var(--bg); }

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--navy);
}

/* === MOBILE STICKY BAR === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 15px 12px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: background 0.15s;
}
.mobile-cta-bar a:first-child {
  border-right: 1px solid rgba(255,255,255,0.15);
  background: var(--blue);
}
.mobile-cta-bar a:last-child { background: #25D366; }
.mobile-cta-bar .bar-inner { display: flex; }

/* === HERO === */
.hero {
  background: var(--navy);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26,47,74,0.78) 0%, rgba(29,53,87,0.86) 48%, rgba(30,58,89,0.9) 100%),
    linear-gradient(135deg, rgba(69,123,157,0.24) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg-video {
  position: absolute !important;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  pointer-events: none;
  display: block;
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  margin-bottom: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.65;
}
.hero-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  position: relative;
}
.hero-image-wrap img,
.hero-image-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === TRUST STRIP === */
.trust-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.trust-item .trust-icon { color: var(--light); font-size: 1rem; }

/* === CARDS === */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--light);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(69,123,157,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 1.4rem;
}
.card h3 { margin-bottom: 8px; }
.card h4 { margin-bottom: 8px; }

/* === WHO THIS IS FOR CARDS === */
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.18s;
}
.audience-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.audience-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.audience-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.audience-card p { font-size: 0.88rem; }
.audience-card a {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

/* === PROCESS STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { margin-bottom: 8px; font-size: 1rem; }
.step p { font-size: 0.875rem; }

/* === REVIEWS === */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.review-stars { color: #F4A020; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; font-style: italic; margin-bottom: 16px; color: var(--text); }
.review-author { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.review-location { font-size: 0.8rem; color: var(--grey); }

/* === AREAS === */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.area-tag {
  background: rgba(69,123,157,0.1);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(69,123,157,0.25);
}

/* === FAQ === */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--blue); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--blue);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-sm);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* === FORM === */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(69,123,157,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--grey); margin-top: 6px; margin-bottom: 0; }

/* === CONTACT ASIDE === */
.contact-aside h3 { margin-bottom: 24px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-method-icon {
  width: 40px;
  height: 40px;
  background: rgba(69,123,157,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-method-text { font-size: 0.9rem; }
.contact-method-text strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-method-text a { color: var(--blue); font-size: 1rem; font-weight: 500; }

/* === CALLOUT BOX === */
.callout {
  background: rgba(69,123,157,0.08);
  border-left: 4px solid var(--blue);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.callout p { color: var(--text); margin: 0; font-size: 0.95rem; }

/* === INDEPENDENCE SECTION === */
.independence-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.independence-point {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
}
.independence-point .icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.independence-point h4 { color: var(--white); margin-bottom: 8px; }
.independence-point p { font-size: 0.9rem; }

/* === FOUNDER SECTION === */
.founder-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}
.founder-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-image img { width: 100%; height: auto; }
.founder-content .eyebrow { margin-bottom: 12px; }
.founder-content h2 { margin-bottom: 20px; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--navy);
  padding: 60px 0 50px;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: 24px; }
.page-hero .eyebrow { color: var(--light); }

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.875rem; margin-top: 14px; line-height: 1.65; }
.footer-brand-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  padding: 6px;
  border-radius: 8px;
  background: var(--white);
  margin-bottom: 14px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-contact p { font-size: 0.875rem; line-height: 1.65; }
.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-credit a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-credit a:hover { color: var(--white); }
.footer-logo { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }

/* === SECTION SPLIT (text + image) === */
.split-section {
  display: grid;
  gap: 60px;
  align-items: center;
}
.split-section.img-left { grid-template-columns: 1fr 1fr; }
.split-section.img-right { grid-template-columns: 1fr 1fr; }
.split-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-image img { width: 100%; height: 380px; object-fit: cover; }
.split-image img[src$="tds-logo.png"],
.hero-image-wrap img[src$="tds-logo.png"],
.card img[src$="tds-logo.png"] {
  object-fit: contain !important;
  background: var(--white);
  padding: 24px;
}
.split-content h2 { margin-bottom: 16px; }
.split-content p { margin-bottom: 14px; }
.check-list { margin: 20px 0; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-sm);
}
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'18'%20height%3D'18'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%23457B9D'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M22%2011.08V12a10%2010%200%201%201-5.93-9.14'%2F%3E%3Cpolyline%20points%3D'22%204%2012%2014.01%209%2011.01'%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--blue);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 30px; font-size: 1.05rem; }

/* === TEXT UTILITIES === */
.text-centre { text-align: center; }
.text-white { color: var(--white) !important; }
.section-header { margin-bottom: 48px; }
.section-header.centred { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; }

/* Badge / pill */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-head);
}
.badge-blue { background: rgba(69,123,157,0.12); color: var(--blue); }

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.report-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
}

.report-preview-image {
  display: block;
  padding: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.report-preview-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(29,53,87,0.18);
  text-decoration: none;
}

.report-preview-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top center;
  border-radius: 5px;
}

.report-preview-header {
  border-bottom: 2px solid var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
}

.report-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.report-row strong { color: var(--navy); }

.redacted {
  display: inline-block;
  min-width: 120px;
  height: 0.9em;
  border-radius: 3px;
  background: var(--navy);
  vertical-align: -0.08em;
}

/* === RESPONSIVE === */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { max-width: 480px; aspect-ratio: 4/3; }
  .founder-wrap { grid-template-columns: 1fr; }
  .founder-image { max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .independence-points { grid-template-columns: 1fr; gap: 16px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
  .site-nav.open { display: flex; }
  .site-header { position: relative; }
  .header-ctas .btn { display: none; }
  .header-ctas .btn-sm:last-child { display: none; }
  .header-ctas .btn:first-child { display: inline-flex; }
  .nav-toggle { display: block; }
  .mobile-cta-bar { display: block; }
  .mobile-cta-bar .bar-inner { display: flex; }
  body { padding-bottom: 62px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .split-section.img-left,
  .split-section.img-right { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .report-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 24px; }
  .hero { padding: 52px 0 44px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner { gap: 10px 20px; }
}

@media (max-width: 480px) {
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.75rem; }
}

/* === SKIP LINK (Accessibility) === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* === FOCUS STYLES === */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* === PRINT === */
@media print {
  .site-header, .site-footer, .mobile-cta-bar, .cta-section { display: none; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* =========================================
   PHASE 3 — VISUAL POLISH & UX REFINEMENT
   ========================================= */

/* === REFINED TOKENS === */
:root {
  --section-pad: 96px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(29,53,87,0.09);
  --shadow-lg: 0 12px 40px rgba(29,53,87,0.13);
  --shadow-card: 0 1px 4px rgba(29,53,87,0.06), 0 4px 16px rgba(29,53,87,0.08);
  --transition: 0.22s ease;
}

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

/* === REFINED HEADER === */
.site-header {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.97);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(29,53,87,0.10);
}
.site-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: 6px;
  position: relative;
}
.site-nav a.active {
  color: var(--navy);
  font-weight: 600;
  background: rgba(29,53,87,0.06);
}

/* === REFINED BUTTONS === */
.btn {
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform 0.12s ease;
  letter-spacing: 0.01em;
}
.btn:hover {
  box-shadow: 0 4px 14px rgba(29,53,87,0.18);
  transform: translateY(-1px);
}
.btn:active { transform: translateY(0); }
.btn-primary { box-shadow: 0 2px 8px rgba(69,123,157,0.25); }
.btn-primary:hover { box-shadow: 0 6px 18px rgba(29,53,87,0.25); }

/* === MOBILE CTA BAR — REFINED === */
.mobile-cta-bar {
  box-shadow: 0 -2px 16px rgba(0,0,0,0.18);
}
.mobile-cta-bar a {
  padding: 17px 12px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  min-height: 56px;
  transition: filter 0.15s;
}
.mobile-cta-bar a:hover { filter: brightness(1.08); }

/* === HERO — REFINED === */
.hero {
  padding: 96px 0 84px;
  background: linear-gradient(160deg, #1a2f4a 0%, var(--navy) 50%, #1e3a59 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--light), var(--blue));
  opacity: 0.4;
  z-index: 3;
}
.hero-image-wrap {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(168,200,225,0.3), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* === TRUST STRIP — REFINED === */
.trust-strip {
  background: linear-gradient(90deg, #16293d, var(--navy), #16293d);
  padding: 26px 0;
}
.trust-strip-inner {
  gap: 10px 40px;
}
.trust-item {
  font-size: 0.875rem;
  gap: 9px;
}
.trust-item .trust-icon {
  font-size: 0.95rem;
}

/* === REFINED CARDS === */
.card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(221,227,234,0.8);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(29,53,87,0.13);
  border-color: rgba(168,200,225,0.7);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(69,123,157,0.12), rgba(69,123,157,0.06));
  margin-bottom: 20px;
}

/* === AUDIENCE CARDS — REFINED === */
.audience-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.audience-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(29,53,87,0.13);
  transform: translateY(-4px);
}
.audience-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.audience-card a {
  transition: color var(--transition);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.audience-card a:hover { color: var(--navy); text-decoration: none; }

/* === STEPS — REFINED === */
.steps-grid::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}
.step-num {
  width: 60px;
  height: 60px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--blue), #3a6b8c);
  box-shadow: 0 4px 14px rgba(69,123,157,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover .step-num {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(69,123,157,0.4);
}

/* === REVIEWS — REFINED === */
.reviews-grid { gap: 20px; }
.review-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(221,227,234,0.7);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3.5rem;
  font-family: Georgia, serif;
  color: var(--border);
  line-height: 1;
}
.review-card:hover {
  box-shadow: 0 8px 28px rgba(29,53,87,0.10);
  transform: translateY(-2px);
}
.review-stars {
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.93rem;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 20px;
  color: var(--text);
}
.review-author {
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}
.review-location { font-size: 0.78rem; margin-top: 3px; }

/* === REVIEW GROUP LABEL === */
.review-group-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0 20px;
}
.review-group-label:first-child { margin-top: 0; }
.review-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* === FAQ — REFINED === */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid rgba(221,227,234,0.7);
  transition: background var(--transition);
}
.faq-item:first-child { border-top: 1px solid rgba(221,227,234,0.7); }
.faq-question {
  padding: 22px 0;
  font-size: 1rem;
  line-height: 1.45;
  transition: color var(--transition);
}
.faq-answer {
  padding-bottom: 22px;
  font-size: 0.95rem;
  animation: faqOpen 0.2s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-chevron { transition: transform 0.25s ease; }

/* === FORM — REFINED === */
.contact-form {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(221,227,234,0.7);
}
.form-group input,
.form-group select,
.form-group textarea {
  border-radius: var(--radius);
  font-size: 1rem;
  padding: 13px 15px;
  background: var(--bg);
  border-color: rgba(221,227,234,0.9);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(168,200,225,0.8);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(69,123,157,0.12);
}
.form-group label {
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  margin-bottom: 7px;
}
.form-trust-note {
  background: rgba(69,123,157,0.06);
  border: 1px solid rgba(69,123,157,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* === CALLOUT — REFINED === */
.callout {
  border-radius: 0 var(--radius) var(--radius) 0;
  border-left-width: 3px;
  padding: 22px 26px;
  background: rgba(69,123,157,0.06);
}

/* === INDEPENDENCE SECTION — REFINED === */
.independence-point {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.independence-point:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(168,200,225,0.25);
  transform: translateY(-3px);
}

/* === FOUNDER IMAGE — REFINED === */
.founder-image {
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(29,53,87,0.16);
  position: relative;
}
.founder-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(29,53,87,0.08);
}

/* === PAGE HERO — REFINED === */
.page-hero {
  padding: 68px 0 56px;
  background: linear-gradient(160deg, #1a2f4a 0%, var(--navy) 60%);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168,200,225,0.4), transparent);
}
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.18; }

/* === SECTION TRANSITIONS === */
.section--grey { border-top: 1px solid rgba(221,227,234,0.5); border-bottom: 1px solid rgba(221,227,234,0.5); }

/* === SPLIT IMAGE — REFINED === */
.split-image {
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(29,53,87,0.14);
  overflow: hidden;
  position: relative;
}
.split-image img {
  height: 420px;
  transition: transform 0.5s ease;
}
.split-image:hover img { transform: scale(1.02); }

/* === AREA TAGS — REFINED === */
.area-tag {
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 0.875rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.area-tag:hover {
  background: rgba(69,123,157,0.18);
  border-color: rgba(69,123,157,0.4);
  transform: translateY(-1px);
}

/* === CTA SECTION — REFINED === */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #3a6b8c 100%);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* === FOOTER — REFINED === */
.site-footer { padding: 72px 0 32px; }
.footer-grid { margin-bottom: 56px; }
.footer-col a {
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}
.footer-col a:hover {
  color: var(--white);
  transform: translateX(2px);
}

/* === CHECK LIST — REFINED === */
.check-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'18'%20height%3D'18'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%23457B9D'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M22%2011.08V12a10%2010%200%201%201-5.93-9.14'%2F%3E%3Cpolyline%20points%3D'22%204%2012%2014.01%209%2011.01'%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* === SECTION HEADER — REFINED === */
.section-header { margin-bottom: 56px; }
.section-header p { font-size: 1.05rem; line-height: 1.7; margin-top: 10px; }

/* === INLINE TRUST BAR === */
.inline-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  margin-top: 32px;
}
.inline-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--grey);
}
.inline-trust-item span { color: var(--blue); }

/* === MID-PAGE CTA BLOCK === */
.mid-cta {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 56px 0;
}
.mid-cta h3 { margin-bottom: 6px; font-size: 1.2rem; }
.mid-cta p { margin: 0; font-size: 0.9rem; }
.mid-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* === ABOUT PAGE — TIMELINE FEEL === */
.about-intro {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 680px;
}
.about-intro strong { color: var(--navy); }

.experience-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.experience-stat .num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.experience-stat .label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.stat-card .num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === SECTION DIVIDER === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* === RESPONSIVE — PHASE 3 === */
@media (max-width: 1020px) {
  :root { --section-pad: 80px; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .mid-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .hero { padding: 60px 0 52px; }
  .page-hero { padding: 48px 0 40px; }
  .cta-section { padding: 60px 0; }
  .review-card { padding: 24px; }
  .review-card::before { display: none; }
  .card { padding: 28px 22px; }
  .audience-card { padding: 24px 20px; }
  .contact-form { padding: 28px 20px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .mid-cta { padding: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .inline-trust { gap: 8px 16px; }
  .section-header { margin-bottom: 40px; }
  .independence-points { gap: 14px; }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 8px 16px; }
  .hero-image-wrap { aspect-ratio: 16/10; }
  .btn-lg { padding: 15px 26px; font-size: 1rem; }
}



/* === HEADER FIT OVERRIDES === */
.header-inner { gap: 14px; }
.site-logo { gap: 8px; }
.site-logo-text { font-size: 0.95rem; }
.site-logo-text span { font-size: 0.72rem; }
.site-nav { gap: 2px; }
.site-nav a { font-size: 0.81rem; padding: 6px 7px; white-space: nowrap; }
.header-ctas { gap: 8px; }
.header-ctas .btn-sm { padding: 9px 14px; font-size: 0.84rem; }

@media (max-width: 768px) {
  .header-ctas .btn { display: none; }
  .header-ctas .btn:first-child { display: none; }
  .header-ctas { margin-left: auto; }
}
