/* =========================================
   Kindaya ABA — Design Tokens & Styles
   ========================================= */

/* --- Type Scale --- */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* --- Spacing --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* --- Radius --- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* --- Transition --- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* --- Content widths --- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* --- Font families --- */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
}

/* --- Light Mode (Default) --- */
:root,
[data-theme='light'] {
  --color-bg: #F0F8F8;
  --color-surface: #FFFFFF;
  --color-surface-2: #F7FBFB;
  --color-surface-offset: #E6F2F2;
  --color-surface-offset-2: #D9ECEC;
  --color-surface-dynamic: #CCE5E5;
  --color-divider: #C2DADA;
  --color-border: #B0CECE;

  --color-text: #1B2A4A;
  --color-text-muted: #5A6A82;
  --color-text-faint: #8A97AA;
  --color-text-inverse: #FFFFFF;

  --color-primary: #4CBDC4;
  --color-primary-hover: #3AA5AC;
  --color-primary-active: #2E8E94;
  --color-primary-highlight: #D4F0F2;

  --color-accent: #5BA548;
  --color-accent-hover: #4D8F3D;
  --color-accent-active: #3F7A32;

  --color-error: #D04040;
  --color-success: #5BA548;
  --color-warning: #D4A020;

  --shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 12px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 12px 32px rgba(27, 42, 74, 0.12);
}

/* --- Dark Mode --- */
[data-theme='dark'] {
  --color-bg: #0F1A2B;
  --color-surface: #162236;
  --color-surface-2: #1A2840;
  --color-surface-offset: #142030;
  --color-surface-offset-2: #1E2E48;
  --color-surface-dynamic: #253650;
  --color-divider: #1E2E48;
  --color-border: #2A3C58;

  --color-text: #D0DAE6;
  --color-text-muted: #8A9BB0;
  --color-text-faint: #5A6A82;
  --color-text-inverse: #0F1A2B;

  --color-primary: #5DD0D8;
  --color-primary-hover: #4BBEC6;
  --color-primary-active: #3AA5AC;
  --color-primary-highlight: #1A3040;

  --color-accent: #6FBF5C;
  --color-accent-hover: #5DAA4C;
  --color-accent-active: #4D943E;

  --color-error: #E86060;
  --color-success: #6FBF5C;
  --color-warning: #E8C040;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0F1A2B;
    --color-surface: #162236;
    --color-surface-2: #1A2840;
    --color-surface-offset: #142030;
    --color-surface-offset-2: #1E2E48;
    --color-surface-dynamic: #253650;
    --color-divider: #1E2E48;
    --color-border: #2A3C58;

    --color-text: #D0DAE6;
    --color-text-muted: #8A9BB0;
    --color-text-faint: #5A6A82;
    --color-text-inverse: #0F1A2B;

    --color-primary: #5DD0D8;
    --color-primary-hover: #4BBEC6;
    --color-primary-active: #3AA5AC;
    --color-primary-highlight: #1A3040;

    --color-accent: #6FBF5C;
    --color-accent-hover: #5DAA4C;
    --color-accent-active: #4D943E;

    --color-error: #E86060;
    --color-success: #6FBF5C;
    --color-warning: #E8C040;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
  }
}

/* =========================================
   Global Components
   ========================================= */

/* --- Container --- */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-8);
  }
}

/* --- Header / Navigation --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  max-width: var(--content-wide);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .header__inner {
    padding: var(--space-3) var(--space-8);
  }
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__logo img {
  height: 44px;
  width: auto;
}
@media (min-width: 768px) {
  .header__logo img {
    height: 52px;
  }
}
.header__nav {
  display: none;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}
.header__nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-1);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4CBDC4, #5BA548);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--color-text);
}
.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  background: transparent;
}
.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: var(--color-text);
}
@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s;
}
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-toggle span::before { transform: translateY(-7px); }
.mobile-toggle span::after { transform: translateY(7px); }
.mobile-toggle.open span { background: transparent; }
.mobile-toggle.open span::before { transform: rotate(45deg); }
.mobile-toggle.open span::after { transform: rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  z-index: 90;
  background: var(--color-bg);
  padding: var(--space-8) var(--space-6);
  flex-direction: column;
  gap: var(--space-4);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav a:hover {
  color: var(--color-primary);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-interactive);
  min-height: 44px;
}
.btn--primary {
  background: linear-gradient(135deg, #4CBDC4, #5BA548);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(76, 189, 196, 0.3);
}
.btn--primary:hover {
  box-shadow: 0 4px 16px rgba(76, 189, 196, 0.4);
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn--white {
  background: #FFFFFF;
  color: #1B2A4A;
}
.btn--white:hover {
  background: #F0F8F8;
  transform: translateY(-1px);
}

/* --- Sections --- */
.section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) 0;
}
.section--alt {
  background: var(--color-surface);
}
.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-inline: auto;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1B2A4A;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.85) 0%, rgba(76, 189, 196, 0.3) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-default);
  margin-inline: auto;
  padding: var(--space-20) var(--space-4);
  text-align: center;
}
@media (min-width: 768px) {
  .hero__content {
    padding: var(--space-24) var(--space-8);
    text-align: center;
    max-width: var(--content-wide);
  }
}
.hero__eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4CBDC4;
  margin-bottom: var(--space-2);
}
.hero__brand {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(4rem, 10vw, 7rem);
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: var(--space-3);
  font-weight: 400;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  margin-bottom: var(--space-4);
  font-style: italic;
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #FFFFFF;
  margin-bottom: var(--space-4);
  max-width: 700px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: var(--text-3xl);
  }
}
.hero__subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: var(--text-lg);
  }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--color-surface);
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--color-divider);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 640px) {
  .trust-bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .trust-bar__grid {
    padding-inline: var(--space-8);
  }
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
}
.trust-item__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(76, 189, 196, 0.12), rgba(91, 165, 72, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.trust-item__icon svg {
  width: 28px;
  height: 28px;
}
.trust-item__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}
.trust-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 280px;
}

/* --- Two-column layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}
.two-col--reverse {
  direction: ltr;
}
@media (min-width: 768px) {
  .two-col--reverse .two-col__image {
    order: -1;
  }
}
.two-col__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.two-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.two-col__text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.two-col__text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-divider);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(76, 189, 196, 0.15), rgba(91, 165, 72, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.card__icon svg {
  width: 24px;
  height: 24px;
}
.card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #4CBDC4 0%, #3AA5AC 50%, #5BA548 100%);
  padding: var(--space-12) 0;
  text-align: center;
}
.cta-banner__inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #FFFFFF;
  margin-bottom: var(--space-6);
}
.cta-banner p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
  max-width: 500px;
  margin-inline: auto;
}

/* --- Page Header (for About, Services, Contact) --- */
.page-header {
  position: relative;
  background: #1B2A4A;
  padding: var(--space-20) 0 var(--space-12);
  text-align: center;
  overflow: hidden;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.88) 0%, rgba(76,189,196,0.25) 100%);
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #FFFFFF;
  margin-bottom: var(--space-3);
}
.page-header p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-inline: auto;
}

/* --- Credentials Bar --- */
.credentials-bar {
  background: var(--color-surface-offset);
  padding: var(--space-6) 0;
  text-align: center;
}
.credentials-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}
.credentials-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.credentials-bar__item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

/* --- Service Blocks --- */
.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-divider);
}
@media (min-width: 768px) {
  .service-block {
    grid-template-columns: 80px 1fr;
    gap: var(--space-6);
  }
}
.service-block:last-child {
  border-bottom: none;
}
.service-block__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  background: linear-gradient(135deg, #4CBDC4, #5BA548);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-block h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.service-block p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Insurance Section --- */
.insurance-box {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-divider);
  text-align: center;
  margin-top: var(--space-8);
}
.insurance-box h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.insurance-box p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.7;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-12);
  }
}
.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-divider);
}
@media (min-width: 768px) {
  .contact-form {
    padding: var(--space-8);
  }
}
.form-group {
  margin-bottom: var(--space-4);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(76, 189, 196, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.contact-detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(76, 189, 196, 0.12), rgba(91, 165, 72, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.contact-detail__icon svg {
  width: 20px;
  height: 20px;
}
.contact-detail h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.contact-detail p,
.contact-detail a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.contact-detail a:hover {
  color: var(--color-primary);
}

/* --- Reassurance Block --- */
.reassurance {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-top: var(--space-8);
  border-left: 4px solid var(--color-primary);
}
.reassurance h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.reassurance p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: #1B2A4A;
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-12) 0 var(--space-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer__brand p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: var(--space-3);
  max-width: 360px;
}
.footer__brand img {
  height: 48px;
  width: auto;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #FFFFFF;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.footer__logo-text svg {
  flex-shrink: 0;
}
.footer h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: block;
  padding: var(--space-1) 0;
}
.footer a:hover {
  color: #4CBDC4;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: #FFFFFF;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  z-index: 200;
  font-size: var(--text-sm);
  text-decoration: none;
}
.skip-link:focus {
  top: var(--space-2);
}

/* Page sections hidden by default (SPA routing) */
.page-section {
  display: none;
}
.page-section.active {
  display: block;
}

/* About founder image placeholder */
.founder-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(76, 189, 196, 0.2), rgba(91, 165, 72, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.founder-image svg {
  width: 80px;
  height: 80px;
  color: var(--color-primary);
  opacity: 0.5;
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
}
.form-success.show {
  display: block;
}
.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--color-accent);
  margin: 0 auto var(--space-4);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.form-success p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ── Contact CTA Panel ── */
.contact-cta-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.contact-cta-panel__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light, #e8f7f8);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-cta-panel__icon svg {
  width: 28px;
  height: 28px;
}

.contact-cta-panel h2 {
  font-size: var(--text-2xl);
  color: var(--text-primary);
  margin: 0;
}

.contact-cta-panel p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.contact-cta-panel .btn--lg {
  padding: 16px 36px;
  font-size: var(--text-base);
  display: inline-flex;
  align-items: center;
}

.contact-cta-panel__note {
  font-size: var(--text-sm) !important;
  color: var(--text-muted, #888) !important;
  margin-top: calc(-1 * var(--space-2)) !important;
}

[data-theme='dark'] .contact-cta-panel__icon {
  background: rgba(76, 189, 196, 0.15);
}

/* ── Role List ── */
.role-list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.role-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.role-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── 2-column card grid ── */
.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .card-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* --- Founder Mission Quote --- */
.founder-quote {
  margin: var(--space-6) 0 0;
  padding: var(--space-4) var(--space-5);
  border-left: 4px solid #4CBDC4;
  background: rgba(76, 189, 196, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
