/* ============================================================
   AI ON MISSION — styles.css
   Brand: Navy #1F3A5F | Teal #2F8F9D | Gold #5B7FA6
   BG: #F7F9FB | Text: #2D2D2D
   ============================================================ */

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #F7F9FB;
  color: #2D2D2D;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* ---- CSS VARIABLES ---- */
:root {
  --navy:    #1F3A5F;
  --teal:    #2F8F9D;
  --gold:    #5B7FA6;
  --bg:      #F7F9FB;
  --white:   #FFFFFF;
  --text:    #2D2D2D;
  --text-muted: #6B7280;
  --border:  #E5EAF0;
  --shadow-sm: 0 2px 8px rgba(31, 58, 95, 0.07);
  --shadow-md: 0 4px 20px rgba(31, 58, 95, 0.10);
  --shadow-lg: 0 8px 40px rgba(31, 58, 95, 0.13);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.22s ease;
  --max-width: 1160px;
}

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: #4A5568; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 3px 12px rgba(31, 58, 95, 0.25);
}

.btn-primary:hover {
  background: #172d4a;
  box-shadow: 0 6px 22px rgba(31, 58, 95, 0.32);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.btn-full {
  width: 100%;
}

/* ---- SECTION COMMON ---- */
.section {
  padding-block: 96px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(47, 143, 157, 0.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.75;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 251, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-mark {
  background: var(--navy);
  color: var(--gold);
  padding: 4px 9px;
  border-radius: 7px;
  font-size: 0.95rem;
  margin-right: 2px;
  letter-spacing: 0.03em;
}

.logo-text {
  color: var(--navy);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A5568;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
  background: rgba(31, 58, 95, 0.05);
}

.nav-links .nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-left: 8px;
  transition: background var(--transition), transform var(--transition);
}

.nav-links .nav-cta:hover {
  background: #172d4a;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: rgba(31, 58, 95, 0.05);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(145deg, #1F3A5F 0%, #1a3356 40%, #264a72 100%);
  position: relative;
  overflow: hidden;
  padding-block: 90px 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(47, 143, 157, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(242, 201, 76, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(242, 201, 76, 0.12);
  border: 1px solid rgba(242, 201, 76, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-headline {
  font-size: clamp(2rem, 4.2vw, 3rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-actions .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(91, 127, 166, 0.45);
}

.hero-actions .btn-primary:hover {
  background: #4a6d91;
  box-shadow: 0 6px 24px rgba(91, 127, 166, 0.55);
}

.hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.trust-dot {
  color: rgba(255, 255, 255, 0.25);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ai-illustration {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(47, 143, 157, 0.2));
}

/* Floating label chips */
.float-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: floatChip 4s ease-in-out infinite;
}

.chip-top-right {
  top: 10%;
  right: 2%;
  animation-delay: 0s;
}

.chip-mid-left {
  top: 42%;
  left: 0%;
  animation-delay: 1.3s;
}

.chip-bottom {
  bottom: 12%;
  right: 10%;
  animation-delay: 2.6s;
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Hero wave */
.hero-wave {
  margin-top: 32px;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--bg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

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

.service-card.card-featured {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(47, 143, 157, 0.14);
}

.service-card.card-featured:hover {
  box-shadow: 0 8px 40px rgba(47, 143, 157, 0.22);
}

.card-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
}

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 52px;
  height: 52px;
}

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

.service-card > p {
  font-size: 0.95rem;
  margin-bottom: 22px;
  color: var(--text-muted);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #4A5568;
  font-weight: 500;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   WHY AI ON MISSION
   ============================================================ */
.why-section {
  background: linear-gradient(160deg, #1F3A5F 0%, #1e3d62 60%, #243f67 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 100% 50%, rgba(47, 143, 157, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.why-content .section-label {
  background: rgba(242, 201, 76, 0.15);
  color: var(--gold);
}

.why-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.why-para {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.why-content .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.why-content .btn-primary:hover {
  background: #4a6d91;
}

.why-differentiators {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.differentiator-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background var(--transition), border-color var(--transition);
}

.differentiator-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(47, 143, 157, 0.4);
}

.diff-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.diff-icon svg {
  width: 40px;
  height: 40px;
}

.differentiator-card h4 {
  color: var(--white);
  margin-bottom: 5px;
}

.differentiator-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how-section {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(31, 58, 95, 0.07);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin-inline: auto;
  margin-bottom: 20px;
}

.step-icon svg {
  width: 60px;
  height: 60px;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 8px;
  padding-top: 80px;
  width: 70px;
}

.step-connector svg {
  width: 60px;
  height: 20px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}

.about-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-graphic svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(31, 58, 95, 0.08));
}

.about-content .section-label {
  margin-bottom: 14px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 14px;
  font-size: 0.975rem;
  line-height: 1.78;
}

.about-values {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(47, 143, 157, 0.08);
  border: 1px solid rgba(47, 143, 157, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--teal);
}

.value-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-label {
  margin-bottom: 14px;
}

.contact-info h2 {
  margin-bottom: 18px;
}

.contact-info > p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-extras {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-extra-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-extra-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0B8C4;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.12);
  background: var(--white);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #E05252;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-error {
  font-size: 0.78rem;
  color: #E05252;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(47, 143, 157, 0.08);
  border: 1px solid rgba(47, 143, 157, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
}

.form-success.visible {
  display: flex;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 56px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}

.footer-logo .logo-text {
  color: rgba(255, 255, 255, 0.9);
}

.footer-tagline {
  margin-top: 10px;
  font-size: 0.875rem;
  max-width: 280px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

.footer-nav ul {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero-inner {
    padding-bottom: 56px;
  }

  .hero-wave {
    margin-top: 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-content {
    text-align: center;
  }

  .why-para {
    margin-inline: auto;
    max-width: 540px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin-inline: auto;
  }

  .step-connector {
    display: none;
  }

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

  .about-visual {
    order: -1;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .section {
    padding-block: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(247, 249, 251, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    border-radius: var(--radius-sm);
  }

  .hero {
    padding-top: 56px;
  }

  .hero-headline {
    font-size: 1.9rem;
  }

  .hero-badge {
    font-size: 0.68rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .trust-dot {
    display: none;
  }

  .card {
    padding: 28px 24px;
  }

  .contact-form-wrapper {
    padding: 28px 24px;
  }

  .about-values {
    gap: 8px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding-bottom: 36px;
  }
}

/* ============================================================
   FOCUS / ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .hero-wave, .nav-toggle, .hero-visual {
    display: none;
  }
}
