/* ==========================================================================
   CarnetVital — Design System
   Premium HealthTech aesthetic: medical blue, clean whites, soft shadows
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Primary palette — medical blue */
  --primary: #0A6EBD;
  --primary-dark: #084E82;
  --primary-light: #EAF6FC;
  --primary-lighter: #F7FCFE;
  --primary-50: #E8F4FC;
  --primary-100: #C5E5F8;
  --primary-200: #90CFF1;
  --primary-300: #5BB5E9;
  --primary-400: #2A9BDF;
  --primary-500: #0A6EBD;
  --primary-600: #08528A;
  --primary-700: #063E6B;
  --primary-800: #052E50;
  --primary-900: #041F35;

  /* Secondary accents */
  --secondary: #00B4D8;
  --secondary-light: #CFF6FB;
  --secondary-dark: #008CAB;
  --mint: #00A78E;
  --mint-light: #DFF8F2;
  --amber: #F4A23A;
  --amber-light: #FFF2DC;
  --coral: #E85F5C;
  --coral-light: #FDEDEC;

  /* Accent — soft teal */
  --accent: #4FC3F7;
  --accent-light: #E1F5FE;

  /* Semantic colors */
  --success: #2ECC71;
  --success-light: #E8F8F0;
  --warning: #F39C12;
  --warning-light: #FEF5E7;
  --error: #E74C3C;
  --error-light: #FDEAE8;

  /* Neutrals */
  --white: #FFFFFF;
  --background: #FFFFFF;
  --background-alt: #F7FBFA;
  --background-dark: #07324D;
  --surface: #FFFFFF;
  --surface-alt: #F0F7FB;

  /* Text */
  --text: #17324D;
  --text-light: #5E7182;
  --text-lighter: #8FA3B2;
  --text-inverse: #FFFFFF;

  /* Borders */
  --border: #E1E8ED;
  --border-light: #EFF4F7;
  --border-focus: var(--primary);

  /* Typography */
  --font-sans: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Fira Sans Mono', Menlo, monospace;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3.125rem;
  --lh-tight: 1.18;
  --lh-normal: 1.58;
  --lh-relaxed: 1.7;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing — 8px base */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10, 30, 53, 0.04);
  --shadow-sm: 0 2px 8px rgba(10, 30, 53, 0.05);
  --shadow: 0 4px 16px rgba(10, 110, 189, 0.06);
  --shadow-md: 0 8px 28px rgba(10, 110, 189, 0.09);
  --shadow-lg: 0 16px 44px rgba(10, 110, 189, 0.12);
  --shadow-xl: 0 24px 60px rgba(10, 110, 189, 0.14);
  --shadow-inset: inset 0 1px 3px rgba(10, 30, 53, 0.06);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration: 250ms;
  --duration-slow: 400ms;

  /* Layout */
  --container: 1200px;
  --container-narrow: 800px;
  --header-height: 72px;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-soft: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
  --gradient-hero: linear-gradient(160deg, var(--primary-lighter) 0%, var(--white) 42%, var(--white) 100%);
  --gradient-cta: linear-gradient(135deg, #0A6EBD 0%, #0B7A75 100%);
  --gradient-dark: linear-gradient(160deg, var(--primary-900) 0%, var(--primary-700) 100%);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: var(--lh-tight);
  font-weight: var(--fw-semibold);
  color: var(--text);
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-9) 0;
}

.section-sm {
  padding: var(--space-7) 0;
}

.section-alt {
  background-color: var(--background-alt);
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--text-inverse);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

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

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Section Header ---------- */
.section-header {
  max-width: 720px;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.eyebrow,
.section-header .eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-2);
  padding: 0.45rem 0.85rem;
  background: rgba(10, 110, 189, 0.1);
  border-radius: var(--radius-full);
}

.section-header h2 {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-2);
}

.section-header p {
  font-size: var(--fs-lg);
  color: var(--text-light);
  line-height: 1.65;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 0.875rem 1.75rem;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 110, 189, 0.3);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 110, 189, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary-100);
  box-shadow: var(--shadow-xs);
}

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

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 0.625rem 1.25rem;
}

.btn-ghost:hover {
  color: var(--primary-dark);
  background: var(--primary-light);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

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

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: var(--fs-lg);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--fs-sm);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--duration) var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-xs);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  color: var(--text);
  flex-shrink: 0;
}

.logo-image-link {
  width: 64px;
  height: 64px;
  min-height: 48px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  width: 112px;
  height: 112px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.16));
}

.footer-brand .logo-image-link {
  width: 112px;
  height: 112px;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  color: var(--white);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.logo-text {
  letter-spacing: 0;
}

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

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.header-cta {
  margin-left: var(--space-2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast) var(--ease);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  margin: 0 auto;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: var(--space-4) var(--space-3);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease);
  visibility: hidden;
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav a {
  display: block;
  padding: var(--space-3) var(--space-2);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--duration-fast) var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
}

.mobile-nav .btn {
  margin-top: var(--space-4);
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-9);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-home {
  min-height: 76vh;
  display: flex;
  align-items: center;
  color: var(--text);
  background: #F4FAFC;
  isolation: isolate;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.06) brightness(1.02);
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 252, 254, 0.82) 0%, rgba(247, 252, 254, 0.62) 38%, rgba(247, 252, 254, 0.18) 68%, rgba(247, 252, 254, 0.03) 100%);
  pointer-events: none;
}

.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(247, 251, 250, 0.34) 100%);
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy .slogan,
.hero-content .slogan {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 110, 189, 0.16);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  letter-spacing: 0;
}

.hero-copy h1,
.hero-content h1 {
  font-size: var(--fs-5xl);
  line-height: 1.1;
  margin-bottom: var(--space-3);
  letter-spacing: 0;
}

.hero-copy h1 {
  color: var(--text);
  font-weight: var(--fw-semibold);
}

.hero-copy .hero-subtitle,
.hero-content .hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-5);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.hero-home .btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-dark);
  border-color: rgba(10, 110, 189, 0.18);
  box-shadow: var(--shadow-xs);
}

.hero-home .btn-secondary:hover {
  color: var(--primary-dark);
  background: var(--white);
  border-color: rgba(10, 110, 189, 0.34);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-top: var(--space-5);
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.875rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 110, 189, 0.12);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  box-shadow: var(--shadow-xs);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-light);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--text-light);
}

.hero-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ---------- Phone Mockup ---------- */
.phone-mockup {
  position: relative;
  width: 300px;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  width: 300px;
  height: 620px;
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-xl), inset 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #16213e;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--background-alt);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 6px;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--text);
}

.phone-statusbar .status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.phone-content {
  flex: 1;
  padding: 12px 16px 16px;
  overflow: hidden;
}

.phone-greeting {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 2px;
}

.phone-title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--text);
  margin-bottom: 14px;
}

.phone-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-card-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.phone-card-label {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 1px;
}

.phone-card-value {
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--text);
}

.phone-card-status {
  font-size: 10px;
  font-weight: var(--fw-medium);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--success-light);
  color: var(--success);
}

.phone-chart-section {
  margin-top: 10px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.phone-chart-title {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  color: var(--text);
  margin-bottom: 8px;
}

.phone-chart {
  width: 100%;
  height: 60px;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

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

.cards-grid.four-cols {
  grid-template-columns: repeat(4, 1fr);
}

/* Feature Card */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-100);
}

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

.feature-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: var(--space-3);
}

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

.feature-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-1);
}

.feature-card p {
  color: var(--text-light);
  line-height: var(--lh-relaxed);
}

/* ---------- Continuity Strip ---------- */
.continuity-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.continuity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  padding: var(--space-3) 0;
}

.continuity-grid > div {
  border-left: 3px solid var(--primary);
  padding: var(--space-1) var(--space-2);
}

.continuity-grid > div:nth-child(2) {
  border-left-color: var(--amber);
}

.continuity-grid > div:nth-child(3) {
  border-left-color: var(--mint);
}

.strip-label,
.contrast-kicker,
.share-label {
  display: block;
  color: var(--text-light);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.25rem;
}

.continuity-grid strong {
  color: var(--text);
  font-size: var(--fs-lg);
}

/* ---------- Problem / Innovation ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.contrast-card,
.innovation-card,
.journey-step {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-xs);
}

.contrast-card h3,
.innovation-card h3,
.journey-step h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-1);
}

.contrast-card p,
.innovation-card p,
.journey-step p,
.section-copy {
  color: var(--text-light);
  line-height: var(--lh-relaxed);
}

.contrast-card-dark {
  background: #FFF9ED;
  border-color: rgba(244, 162, 58, 0.28);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.contrast-card-dark h3 {
  color: var(--text);
}

.contrast-card-dark p,
.contrast-card-dark .contrast-kicker {
  color: var(--text-light);
}

.innovation-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-7);
  align-items: center;
}

.innovation-lead h2,
.patient-doctor-grid h2 {
  font-size: var(--fs-4xl);
  margin: var(--space-2) 0;
}

.innovation-lead p {
  color: var(--text-light);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
}

.first-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-3);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.first-badge strong {
  color: var(--primary);
  font-size: var(--fs-4xl);
  line-height: 1;
}

.first-badge span {
  color: var(--text);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
}

.innovation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.innovation-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-2);
  align-items: start;
}

.innovation-card h3,
.innovation-card p {
  grid-column: 2;
}

.innovation-card .card-icon {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
}

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

.innovation-card .card-icon-mint {
  background: var(--mint-light);
  color: var(--mint);
}

.innovation-card .card-icon-amber {
  background: var(--amber-light);
  color: var(--amber);
}

/* ---------- Journey / Sharing ---------- */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.journey-step {
  position: relative;
}

.journey-step .step-number {
  width: 48px;
  height: 48px;
  margin: 0 0 var(--space-3);
  font-size: var(--fs-xl);
}

.patient-doctor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-7);
  align-items: center;
}

.section-copy {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-4);
}

.secure-note {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  padding: var(--space-3);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.secure-note p {
  color: var(--text);
  line-height: var(--lh-relaxed);
}

.secure-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--mint-light);
  color: var(--mint);
  border-radius: var(--radius-sm);
}

.secure-icon svg {
  width: 22px;
  height: 22px;
}

.share-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(260px, 1.28fr);
  gap: var(--space-3);
  align-items: stretch;
}

.share-card,
.doctor-view {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-4);
}

.share-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 4px solid var(--amber);
}

.share-code {
  color: var(--primary);
  font-size: var(--fs-3xl);
  line-height: 1;
  margin-bottom: var(--space-2);
  font-family: var(--font-mono);
}

.share-card p {
  color: var(--text-light);
  line-height: var(--lh-normal);
}

.doctor-view .dashboard-chart {
  margin-top: var(--space-2);
}

.metric-row-panel {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.metric-row-panel span {
  flex: 1;
  min-width: 160px;
  color: var(--text-light);
  font-size: var(--fs-sm);
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
}

.metric-row-panel strong {
  display: block;
  color: var(--text);
  margin-top: 0.25rem;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  position: relative;
}

.step-card {
  text-align: center;
  padding: var(--space-5) var(--space-3);
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin: 0 auto var(--space-3);
  box-shadow: 0 4px 14px rgba(10, 110, 189, 0.3);
}

.step-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-1);
}

.step-card p {
  color: var(--text-light);
  line-height: var(--lh-relaxed);
}

/* ---------- Dashboard Mockup ---------- */
.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  margin: 0 auto;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.dashboard-greeting {
  font-size: var(--fs-sm);
  color: var(--text-light);
}

.dashboard-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
}

.dashboard-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
}

.dashboard-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.metric-card {
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border-light);
}

.metric-card .metric-label {
  font-size: var(--fs-xs);
  color: var(--text-light);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.metric-card .metric-value {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--text);
}

.metric-card .metric-unit {
  font-size: var(--fs-xs);
  color: var(--text-light);
  font-weight: var(--fw-regular);
}

.metric-card .metric-status {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--success);
  margin-top: 0.25rem;
}

.metric-card.featured {
  grid-column: 1 / -1;
  background: var(--white);
  border-color: var(--primary-100);
  box-shadow: var(--shadow-sm);
}

.dashboard-chart {
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 1px solid var(--border-light);
}

.dashboard-chart-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-2);
}

.dashboard-chart svg {
  width: 100%;
  height: 120px;
}

/* ---------- Flow Diagram (Kit Santé) ---------- */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

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

.flow-step .flow-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  background: var(--primary-light);
  color: var(--primary);
}

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

.flow-step h3 {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
}

.flow-step p {
  font-size: var(--fs-sm);
  color: var(--text-light);
}

.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--primary-200);
  font-size: var(--fs-2xl);
  flex-shrink: 0;
}

.flow-arrow svg {
  width: 40px;
  height: 40px;
}

/* ---------- Timeline ---------- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-200), var(--primary-light));
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: var(--space-4);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.timeline-date {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-xs);
  transition: all var(--duration) var(--ease);
}

.timeline-content:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-100);
}

.timeline-content h4 {
  font-size: var(--fs-base);
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: var(--fs-sm);
  color: var(--text-light);
}

.timeline-content .metric-row {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
  flex-wrap: wrap;
}

.timeline-content .metric-row span {
  font-size: var(--fs-sm);
  color: var(--text);
}

.timeline-content .metric-row span strong {
  color: var(--primary);
}

/* ---------- Alert Card ---------- */
.alert-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--warning);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  transition: all var(--duration) var(--ease);
}

.alert-card:hover {
  box-shadow: var(--shadow-sm);
}

.alert-card.alert-info {
  border-left-color: var(--primary);
}

.alert-card.alert-success {
  border-left-color: var(--success);
}

.alert-card .alert-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--warning-light);
  color: var(--warning);
}

.alert-card.alert-info .alert-icon {
  background: var(--primary-light);
  color: var(--primary);
}

.alert-card.alert-success .alert-icon {
  background: var(--success-light);
  color: var(--success);
}

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

.alert-card h4 {
  font-size: var(--fs-base);
  margin-bottom: 0.25rem;
}

.alert-card p {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: var(--lh-normal);
}

/* ---------- Security Section ---------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}

.security-item:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-sm);
}

.security-item .security-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
}

.security-item .security-icon svg {
  width: 22px;
  height: 22px;
}

.security-item h4 {
  font-size: var(--fs-base);
  margin-bottom: 0.25rem;
}

.security-item p {
  font-size: var(--fs-sm);
  color: var(--text-light);
}

/* ---------- Audience Cards ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.audience-card {
  text-align: center;
  padding: var(--space-4) var(--space-3);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-100);
}

.audience-card .audience-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  background: var(--primary-light);
  color: var(--primary);
}

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

.audience-card h4 {
  font-size: var(--fs-base);
  margin-bottom: 0.25rem;
}

.audience-card p {
  font-size: var(--fs-sm);
  color: var(--text-light);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient-cta);
  color: var(--white);
  text-align: center;
  padding: var(--space-9) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 92px);
  pointer-events: none;
}

.cta-section::after {
  content: none;
}

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

.cta-section h2 {
  font-size: var(--fs-4xl);
  color: var(--white);
  margin-bottom: var(--space-2);
}

.cta-section p {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto var(--space-5);
  line-height: var(--lh-relaxed);
}

.cta-actions {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--background-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-8) 0 var(--space-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: var(--space-2);
}

.footer-brand .logo-text span {
  color: var(--primary-200);
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  line-height: var(--lh-relaxed);
}

.footer-col h4 {
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-2);
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul li {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul li a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast) var(--ease);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: var(--space-1);
  margin-top: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer-bottom p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--space-2);
}

.footer-legal a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
}

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

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
  padding: calc(var(--header-height) + var(--space-7)) 0 var(--space-7);
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(10, 110, 189, 0.05) 0, rgba(10, 110, 189, 0.05) 1px, transparent 1px, transparent 88px);
  pointer-events: none;
}

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

.page-hero h1 {
  font-size: var(--fs-5xl);
  margin-bottom: var(--space-2);
  letter-spacing: 0;
}

.page-hero p {
  font-size: var(--fs-lg);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin-bottom: var(--space-3);
}

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

.breadcrumb span {
  color: var(--text-lighter);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.faq-item:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--text);
  text-align: left;
  transition: color var(--duration-fast) var(--ease);
}

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

.faq-question .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
}

.faq-item.open .faq-question .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease);
}

.faq-answer-inner {
  padding: 0 var(--space-4) var(--space-3);
  color: var(--text-light);
  line-height: var(--lh-relaxed);
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-6);
  align-items: start;
}

.contact-info {
  padding: var(--space-5);
  background: var(--gradient-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.contact-info h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-2);
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: var(--space-3);
  line-height: var(--lh-relaxed);
}

.contact-info .contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--text);
}

.contact-info .contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text);
  margin-bottom: 0.375rem;
}

.form-group label .required {
  color: var(--error);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--surface-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--error);
  background: var(--error-light);
}

.form-error {
  display: none;
  font-size: var(--fs-xs);
  color: var(--error);
  margin-top: 0.25rem;
  font-weight: var(--fw-medium);
}

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

.form-success {
  display: none;
  padding: var(--space-3) var(--space-4);
  background: var(--success-light);
  border: 1px solid var(--success);
  border-radius: var(--radius-md);
  color: var(--success);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-3);
}

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

/* ---------- App Store Buttons ---------- */
.app-buttons {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.app-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
  min-width: 200px;
}

.app-button:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.app-button svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.app-button .app-button-text {
  text-align: left;
  line-height: 1.2;
}

.app-button .app-button-small {
  font-size: var(--fs-xs);
  opacity: 0.8;
}

.app-button .app-button-large {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
}

.app-button.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
  position: relative;
}

.app-button.coming-soon::after {
  content: 'Bientôt';
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: none;
}

/* ---------- Values / Mission ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.value-card {
  text-align: center;
  padding: var(--space-4);
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 110, 189, 0.25);
}

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

.value-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: var(--lh-relaxed);
}

/* ---------- Content Sections ---------- */
.content-section {
  max-width: 760px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-2);
  margin-top: var(--space-5);
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-1);
  margin-top: var(--space-4);
}

.content-section p {
  color: var(--text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2);
}

.content-section ul {
  list-style: none;
  margin-bottom: var(--space-2);
}

.content-section ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  line-height: var(--lh-normal);
}

.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ---------- Info Banner ---------- */
.info-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--primary-light);
  border-radius: var(--radius-md);
  margin: var(--space-4) 0;
}

.info-banner svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.info-banner p {
  font-size: var(--fs-sm);
  color: var(--text);
  margin: 0;
  line-height: var(--lh-normal);
}

/* ---------- Misc ---------- */
.divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-5) 0;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
}

.badge.success {
  background: var(--success-light);
  color: var(--success);
}

.badge.warning {
  background: var(--warning-light);
  color: var(--warning);
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: var(--space-2) var(--space-3);
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1100;
  transition: top var(--duration-fast) var(--ease);
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* Focus visible */
*:focus-visible {
  outline: 3px solid var(--primary-300);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: var(--primary-light);
  color: var(--primary-dark);
}
