/* =============================================================
   SAA WEBSITE — PREMIUM STYLESHEET
   TLLCG Brand Compliant
   Primary: #BE4D00 (Orange) | Accent: #004976 (Navy) | Text: #212721
   ============================================================= */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: #212721;
  background-color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --orange: #BE4D00;
  --orange-dark: #9A3E00;
  --orange-light: #D4600A;
  --navy: #004976;
  --navy-dark: #003459;
  --navy-light: #005a8e;
  --gray-text: #212721;
  --gray-mid: #555555;
  --gray-light: #F5F5F3;
  --cool-gray: #D9D9D6;
  --light-blue: #4298B5;
  --white: #ffffff;
  --section-pad: 96px 0;
  --container-max: 1200px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  color: #212721;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

p { font-size: 1.05rem; color: #3a3a3a; line-height: 1.8; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-pad);
}

.section-light { background-color: var(--white); }
.section-gray  { background-color: var(--gray-light); }
.section-dark  { background-color: #1a1a1a; }
.section-navy  { background-color: var(--navy); }
.section-orange { background-color: var(--orange); }

/* ── SECTION LABELS ────────────────────────────────────────── */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-label.light { color: rgba(255,255,255,0.65); }

.section-title {
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-intro {
  font-size: 1.1rem;
  max-width: 720px;
  margin-bottom: 56px;
  color: #4a4a4a;
}

.section-intro.light { color: rgba(255,255,255,0.85); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(190,77,0,0.35);
}

.btn-ghost {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-nav {
  background-color: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-nav:hover {
  background-color: var(--orange-dark);
}

.btn-large {
  padding: 18px 36px;
  font-size: 0.95rem;
}

/* ── NAVIGATION ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  padding: 20px 0;
}

.navbar.scrolled {
  background-color: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 12px 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.navbar.scrolled .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 52, 89, 0.92) 0%,
    rgba(0, 73, 118, 0.85) 50%,
    rgba(0, 30, 60, 0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.hero-saa-logo {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

.hero-saa-logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--orange);
}

.hero-headline {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
}

.accent-text {
  color: var(--orange-light);
}

.hero-subheadline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}

.hero-trust-bar .divider {
  color: var(--orange);
}

.desktop-break { display: block; }

/* ── PROBLEM SECTION ───────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.problem-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border-left: 4px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.problem-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.problem-card p {
  font-size: 0.95rem;
  color: #555;
}

.problem-statement {
  background: var(--navy);
  color: var(--white);
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.problem-statement p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin: 0;
}

.problem-statement strong {
  color: var(--orange-light);
}

/* ── COST SECTION ──────────────────────────────────────────── */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.cost-item {
  padding: 32px 24px;
  border-top: 3px solid var(--orange);
}

.cost-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.cost-item h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.cost-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.cost-anchor {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 4px solid var(--orange);
  padding: 28px 36px;
  border-radius: var(--radius);
}

.cost-anchor p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin: 0;
}

.cost-anchor strong {
  color: var(--orange-light);
}

/* ── FOUNDER SECTION ───────────────────────────────────────── */
.founder-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.founder-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founder-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.founder-image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.founder-placeholder {
  display: none;
}

.founder-initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.founder-placeholder-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.founder-placeholder-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin: 0;
}

.founder-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.founder-content-col {
  padding-top: 8px;
}

.founder-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.founder-bio {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #4a4a4a;
}

.founder-credentials {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-text);
}

.credential-icon {
  color: var(--orange);
  font-size: 0.6rem;
}

/* ── PROCESS SECTION ───────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto 56px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.process-step:last-child {
  border-bottom: none;
}

.process-connector {
  display: none;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  opacity: 0.9;
}

.step-content h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.step-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

.process-cta {
  text-align: center;
  padding-top: 16px;
}

/* ── OUTCOMES SECTION ──────────────────────────────────────── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.outcome-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--gray-light);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.outcome-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
}

.outcome-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.outcome-card p {
  font-size: 0.95rem;
  color: #555;
}

.outcomes-image-row {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 400px;
}

.outcomes-image-row img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.testimonial-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-featured {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  transform: scale(1.02);
}

.testimonial-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
  color: rgba(255,255,255,0.3);
}

.testimonial-card blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  font-style: normal;
  flex: 1;
}

.testimonial-attribution {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
}

.attribution-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── CTA / DIAGNOSTIC SECTION ──────────────────────────────── */
.cta-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

.cta-detail {
  font-size: 1rem;
  margin-bottom: 32px;
}

.cta-detail.light { color: rgba(255,255,255,0.7); }

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.cta-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.feature-check {
  color: var(--orange-light);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-image-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

/* ── PROCESS HEADER LOGO ───────────────────────────────────── */
.process-header {
  margin-bottom: 56px;
}

.saa-logo-process {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.saa-logo-process img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

/* ── ASSESSMENT DEEP-DIVE SECTION ──────────────────────────── */
.deepdive-content {
  max-width: 900px;
  margin: 0 auto 56px;
}

.deepdive-section {
  margin-bottom: 48px;
}

.deepdive-section h3 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.deepdive-section p {
  margin-bottom: 12px;
  color: #4a4a4a;
}

.deepdive-list {
  list-style: none;
  margin: 16px 0;
  padding-left: 0;
}

.deepdive-list li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.7;
}

.deepdive-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

.assessment-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin: 32px 0;
}

.assessment-step {
  background: var(--gray-light);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border-top: 4px solid var(--orange);
}

.step-marker {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 16px;
}

.assessment-step h4 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.assessment-step p {
  font-size: 0.95rem;
  color: #555;
}

.deepdive-cta {
  text-align: center;
  padding: 48px 32px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
}

.deepdive-cta p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.deepdive-cta strong {
  color: var(--navy);
}

.cta-subtext {
  font-size: 0.9rem;
  color: #888;
  margin-top: 16px;
}

.text-link {
  color: var(--orange);
  font-weight: 600;
  transition: color var(--transition);
}

.text-link:hover {
  color: var(--orange-dark);
}

/* ── FAQ SECTION ───────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--cool-gray);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-text);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background-color: var(--navy-dark);
}

.footer-top {
  padding: 72px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 56px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  margin-bottom: 12px;
}

.footer-description {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--orange-light); }

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.footer-contact a {
  font-size: 0.9rem;
  color: var(--orange-light);
  display: block;
  margin-bottom: 24px;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

.footer-legal span {
  color: rgba(255,255,255,0.2);
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .founder-layout {
    grid-template-columns: 360px 1fr;
    gap: 48px;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-image-col {
    order: -1;
  }

  .cta-image-col img {
    height: 320px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-featured {
    transform: none;
  }

  .testimonial-featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px 0;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1.4rem;
  }

  .hero {
    background-attachment: scroll;
    min-height: 100svh;
  }

  .desktop-break { display: none; }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-trust-bar .divider { display: none; }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image-frame img {
    height: 360px;
  }

  .founder-badge {
    width: 90px;
    height: 90px;
    bottom: -12px;
    right: -12px;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-grid,
  .cost-grid,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .btn-large {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}
