/* ============================================================
   AI SETUP SESSIONS — styles.css
   Complete visual design — UX/UI polish pass
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --bg:        #F8FAFC;
  --primary:   #1D4ED8;
  --secondary: #0F172A;
  --accent:    #22C55E;
  --neutral:   #CBD5E1;
  --text:      #1E293B;
  --white:     #FFFFFF;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px  rgba(15, 23, 42, 0.07);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.11);
  --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.16);

  --transition: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--primary);
}

::selection {
  background: rgba(29, 78, 216, 0.2);
}

/* ── Accessibility ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--secondary);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 0;
}

.honeypot {
  display: none !important;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ── Header / Nav ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #C4CDD8;
  background: rgba(225, 233, 242, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}

.brand {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.brand:hover {
  color: var(--primary);
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 0.2rem;
}

.nav-list a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--secondary);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  display: block;
  line-height: 1.2;
}

.nav-list a:hover {
  color: var(--primary);
  background: rgba(29, 78, 216, 0.07);
}

.nav-list a[aria-current="page"] {
  color: var(--primary);
  background: rgba(29, 78, 216, 0.09);
}

.nav-list a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 {
  color: var(--secondary);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 0.4rem;
  font-size: clamp(2rem, 4vw + 0.5rem, 2.875rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px;
}

h3 {
  margin-top: 0;
  font-size: clamp(1.125rem, 1.5vw + 0.25rem, 1.3rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  max-width: 58ch;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
}

.text-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), gap var(--transition);
}

.text-link::after {
  content: '→';
  transition: transform var(--transition);
}

.text-link:hover {
  border-bottom-color: var(--primary);
}

.text-link:hover::after {
  transform: translateX(3px);
}

.supporting-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  pointer-events: none;
}

.btn:active::before {
  width: 320px;
  height: 320px;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* Primary — blue gradient, used on dark and light backgrounds */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1942b7 100%);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.32), 0 2px 4px rgba(29, 78, 216, 0.16);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1942b7 0%, #1537a0 100%);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.44), 0 3px 8px rgba(29, 78, 216, 0.2);
  transform: translateY(-2px);
  color: var(--white);
}

/* Secondary — ghost white, used on dark/hero backgrounds */
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* Outline — used on light section backgrounds */
.btn-outline {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--neutral);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ── Hero Section ─────────────────────────────────────────────
   Bold dark navy background — makes an immediate first impression
   ──────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, #0F172A 0%, #152340 45%, #1a2d50 100%);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

/* decorative radial glow — top right */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.28) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* decorative radial glow — bottom left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Text on dark hero background */
.hero h1 {
  color: var(--white);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.75);
}

/* Eyebrow badge — green tint on dark bg */
.hero .eyebrow {
  color: var(--accent);
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* ── Hero Card (floating white card) ────────────────────────── */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32), 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* colour stripe across the top of the hero card */
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.hero-card h2 {
  font-size: 1.2rem;
  color: var(--secondary);
  padding-bottom: 0;
  margin-bottom: 0.75rem;
}

.hero-card h2::after {
  display: none;
}

.hero-card p {
  color: #475569;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

/* ── Interior page header banner ────────────────────────────── */
/*   Replaces the plain h1/lead on Services, Contact, Uses etc  */
.section-page-header {
  background: linear-gradient(145deg, #0F172A 0%, #1a2d50 55%, #152340 100%);
  padding: 3rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}

.section-page-header::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.22) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.section-page-header .container {
  position: relative;
  z-index: 1;
}

.section-page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.section-page-header .lead {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* ── Tinted section (light blue-grey) ───────────────────────── */
/*   Used to break up consecutive white sections                 */
.section-tinted {
  background: #EEF3FA;
}

/* ── Page-level intro (non-hero pages — legacy) ─────────────── */
.page-intro {
  padding: 3rem 0 0;
}

.page-intro h1 {
  margin-bottom: 0.75rem;
}

/* ── Sections ────────────────────────────────────────────────── */
.section {
  padding: 4rem 0;
}

/* Remove double spacing when sections are adjacent */
.section + .section {
  padding-top: 0.5rem;
}

/* Dark CTA banner section */
.section-highlight {
  padding: 4.5rem 0;
  background: linear-gradient(140deg, #0F172A 0%, #1e2d4d 100%);
  position: relative;
  overflow: hidden;
}

.section-highlight::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.22) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.section-highlight::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.section-highlight .container {
  position: relative;
  z-index: 1;
}

.section-highlight h2 {
  color: var(--white);
}

.section-highlight h2::after {
  background: linear-gradient(90deg, var(--accent) 0%, #4ade80 100%);
}

.section-highlight p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ── Feature Cards (3-up grid) ──────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  border: 1px solid var(--neutral);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  position: relative;
  overflow: hidden;
}

/* left-edge colour bar that slides in on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(29, 78, 216, 0.18);
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.875rem;
  display: block;
  line-height: 1;
}

.feature-card h3 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.feature-card p {
  margin: 0;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ── Service Cards ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  border: 1px solid var(--neutral);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 1.875rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  position: relative;
  overflow: hidden;
}

/* top-edge stripe, revealed on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--neutral);
  transition: background var(--transition);
}

.service-card:hover::before {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(29, 78, 216, 0.16);
}

.service-card h3 {
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.service-card p {
  color: #475569;
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* Featured intro-session card */
.featured-service {
  border: 2px solid rgba(29, 78, 216, 0.25);
  background: linear-gradient(135deg, var(--white) 0%, #F0F7FF 100%);
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.12);
  max-width: 520px;
}

.featured-service::before {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  height: 4px;
}

.featured-service:hover {
  box-shadow: 0 8px 32px rgba(29, 78, 216, 0.2);
}

/* ── Price Tag ───────────────────────────────────────────────── */
.price-tag {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: var(--accent);
  margin: 0.25rem 0 0.875rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* ── Clean List ──────────────────────────────────────────────── */
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.clean-list li {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.75rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.clean-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

/* ── CTA Group ───────────────────────────────────────────────── */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

/* ── Contact / Form ──────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--neutral);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  max-width: 600px;
}

.form-note {
  font-size: 0.9rem;
  color: #3d6b4f;
  margin: 0 0 1.75rem;
  padding: 0.65rem 1rem;
  background: rgba(34, 197, 94, 0.09);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--neutral);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition),
              background var(--transition);
  appearance: none;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #94A3B8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

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

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  margin: 0;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

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

.footer-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

main a:not(.btn):not(.text-link) {
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

/* ── Responsive Breakpoints ──────────────────────────────────── */

/* 2-column grids at tablet */
@media (max-width: 767px) {
  .hero {
    padding: 3.5rem 0 3rem;
  }

  .section-page-header {
    padding: 2.25rem 0 2rem;
  }

  .section,
  .section-highlight {
    padding: 3rem 0;
  }

  h1,
  h2,
  h3,
  p,
  li {
    overflow-wrap: break-word;
  }
}
@media (min-width: 600px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header .container {
    gap: 0.7rem;
  }

  .nav-list {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 0.3rem;
    padding-bottom: 0.2rem;
  }

  .nav-list a {
    padding: 0.45rem 0.65rem;
    font-size: 0.875rem;
  }

  .service-card,
  .feature-card,
  .form-card,
  .about-block,
  .thank-you-card {
    padding: 1.35rem;
  }

  .hero-card {
    padding: 1.35rem;
  }

  .featured-service {
    max-width: none;
  }

  .footer-nav {
    width: 100%;
  }
}

/* Hero gets 2-column layout + larger type at 768px */
@media (min-width: 768px) {
  .hero {
    padding: 5.5rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .form-card {
    padding: 3rem 2.75rem;
  }

  .page-intro {
    padding: 3.5rem 0 0;
  }
}

/* 3-column grids at wider breakpoint */
@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra hero breathing room on large screens */
@media (min-width: 1100px) {
  .hero {
    padding: 6.5rem 0 5.5rem;
  }
}

/* Stack footer vertically on small screens */
@media (max-width: 480px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .thank-you-actions .btn {
    width: 100%;
  }

  .form-group input,
  .form-group textarea,
  .btn {
    font-size: 16px;
  }

  .clean-list {
    margin-bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Thank You Page ──────────────────────────────────────────── */
.thank-you-card {
  background: var(--white);
  border: 1px solid var(--neutral);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 540px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.thank-you-card h1 {
  margin-bottom: 0.75rem;
}

.thank-you-card p {
  color: #475569;
  max-width: 44ch;
  margin: 0 auto 0.75rem;
}

.confirmation-pill {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 2rem;
}

/* ── About Page ──────────────────────────────────────────────── */
.about-story {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 760px;
}

.about-block {
  background: var(--white);
  border: 1px solid var(--neutral);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.about-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-block .card-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.about-block h2 {
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.about-block p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.about-block em {
  color: var(--primary);
  font-style: italic;
}

/* ── Founder Photo ─────────────────────────────────────────── */
.section-founder-photo {
  padding-top: 0;
  padding-bottom: 2rem;
}

.about-founder-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.founder-photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neutral) 0%, #dde4ef 100%);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.founder-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.founder-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.01em;
}

/* ── About Page Pull Quote ───────────────────────────────────── */
.about-quote {
  border-left: 4px solid var(--primary);
  margin: 1.25rem 0 0;
  padding: 0.75rem 1.25rem;
  background: rgba(29, 78, 216, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: #334155;
  line-height: 1.75;
  font-size: 1rem;
}

.about-block p + p {
  margin-top: 0.875rem;
}

/* ── Utility ─────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
