
.sac-audience-section {
  padding: 120px 0 0;
}

.sac-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left column — text */
.sac-audience-text .eyebrow {
  margin-bottom: 20px;
}

.sac-audience-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.05;
}

.sac-audience-text h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--silver);
}

.sac-audience-text p {
  font-size: 16px;
  color: var(--silver-light);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 16px;
}

.sac-audience-text p:last-child {
  margin-bottom: 0;
}

/* Right column — stat stack */
.sac-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(184, 184, 184, 0.1);
}

.sac-stat {
  background: #141414;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: background 0.2s;
}

.sac-stat:hover {
  background: #1c1c1c;
}

.sac-stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  background: var(--silver-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  min-width: 64px;
  letter-spacing: -0.03em;
}

.sac-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sac-stat-label {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
}

.sac-stat-sub {
  font-size: 12px;
  color: var(--silver-dark);
}

.sac-steps-section {
  padding: 80px 0 0;
}

.sac-steps-header {
  margin-bottom: 56px;
}

.sac-steps-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.05;
}

.sac-steps-header h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--silver);
}

.sac-steps-header p {
  font-size: 16px;
  color: var(--silver);
  max-width: 520px;
  line-height: 1.65;
  font-weight: 300;
}

/* Step cards — light-on-dark inversion (only section on this page) */
.sac-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #b0b0b0;
  border: 1px solid #b0b0b0;
}

.sac-step-card {
  background: #d4d4d4;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}

.sac-step-card:hover {
  background: #dcdcdc;
}

/* Animated top-border reveal on hover */
.sac-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.sac-step-card:hover::before {
  transform: scaleX(1);
}

.sac-step-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.9;
  color: rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  user-select: none;
}

.sac-step-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #666;
  font-weight: 600;
  margin-bottom: 8px;
}

.sac-step-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.15;
}

.sac-step-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  flex: 1;
}

.sac-prepare-section {
  padding: 56px 0 0;
}

.sac-prepare-inner {
  background: #141414;
  border: 1px solid rgba(184, 184, 184, 0.1);
  border-left: 3px solid var(--silver);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.sac-prepare-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(184, 184, 184, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--silver);
}

.sac-prepare-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.sac-prepare-body p {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.sac-prepare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sac-prepare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--silver-light);
  line-height: 1.5;
}

/* Custom bullet — hollow circle, matches design */
.sac-prepare-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 1.5px solid var(--silver);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.sac-contact-section {
  padding: 80px 0 120px;
}

.sac-contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(184,184,184,0.1); max-width: 640px; margin: 0 auto;
}

.sac-contact-card {
  background: #141414;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sac-contact-card--primary {
  border-top: 3px solid var(--white);
}

.sac-contact-card--secondary {
  border-top: 3px solid rgba(184, 184, 184, 0.3);
}

.sac-contact-card-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-dark);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sac-contact-card-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--silver-dark);
  flex-shrink: 0;
}

.sac-contact-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.sac-contact-card p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
  flex: 1;
}

/* CTA button sits at the bottom of the primary card */
.sac-contact-cta {
  margin-top: auto;
}

/* Email link in secondary card */
.sac-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}

.sac-contact-link:hover {
  color: var(--white);
}

.sac-contact-link svg {
  flex-shrink: 0;
}

/* Contact section — form layout (mirrors For Parents .form-* component) */
.sac-contact-section .form-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sac-contact-section .form-text .eyebrow { margin-bottom: 20px; }
.sac-contact-section .form-text h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; margin-bottom: 16px; line-height: 1.05; }
.sac-contact-section .form-text h2 em { font-style: italic; font-weight: 500; color: var(--silver); }
.sac-contact-section .form-text p { font-size: 15px; color: var(--silver); line-height: 1.7; font-weight: 300; margin-bottom: 12px; }
.sac-contact-section .form-text .form-note { font-size: 12px; color: var(--silver-dark); line-height: 1.6; margin-top: 20px; }
.sac-contact-section .form-card { background: #232323; border: 1px solid rgba(184,184,184,0.15); padding: 40px 36px; }
.sac-contact-section .sac-contact-fallback { font-size: 14px; color: var(--silver); margin-bottom: 12px; }
@media (max-width: 768px) {
  .sac-contact-section .form-inner { grid-template-columns: 1fr; gap: 40px; }
}


/* ─────────────────────────────────────────────
   RESPONSIVE  ≤ 1100px  (tablet)
───────────────────────────────────────────── */

@media (max-width: 1100px) {
  .sac-audience-grid {
    gap: 56px;
  }

  .sac-prepare-inner {
    padding: 36px 36px;
    gap: 28px;
  }
}


/* ─────────────────────────────────────────────
   RESPONSIVE  ≤ 900px  (mobile)
───────────────────────────────────────────── */

@media (max-width: 900px) {
  /* Audience */
  .sac-audience-section {
    padding: 72px 0 0;
  }

  .sac-audience-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Steps */
  .sac-steps-section {
    padding: 56px 0 0;
  }

  .sac-steps-grid {
    grid-template-columns: 1fr;
  }

  /* Prepare */
  .sac-prepare-section {
    padding: 40px 0 0;
  }

  .sac-prepare-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Contact */
  .sac-contact-section {
    padding: 56px 0 80px;
  }

  .sac-contact-grid {
    grid-template-columns: 1fr;
  }
}


/* ─────────────────────────────────────────────
   RESPONSIVE  ≤ 600px  (small phone)
───────────────────────────────────────────── */

@media (max-width: 600px) {
  .sac-step-card {
    padding: 32px 24px;
  }

  .sac-prepare-inner {
    padding: 28px 24px;
  }

  .sac-contact-card {
    padding: 36px 28px;
  }
}

