/* ==========================================================================
   Chase Health — Main Stylesheet
   Computer Systems Design and Related Services
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  --navy: #1a2744;
  --navy-light: #243456;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --teal-dark: #0f766e;
  --amber: #d97706;
  --amber-light: #f59e0b;
  --bg: #fafaf9;
  --white: #ffffff;
  --text-primary: #111827;
  --text-secondary: #374151;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 60px;
  }
}

/* --- Section Spacing --- */
.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }
}

/* --- Section Labels --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 48px;
  }
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

@media (min-width: 768px) {
  .nav-inner {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .nav-inner {
    padding: 0 60px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  z-index: 1001;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .nav-cta:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--teal);
}

.mobile-menu .mobile-cta {
  margin-top: 12px;
  padding: 14px 36px;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 100px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: calc(var(--nav-height) + 100px);
    padding-bottom: 140px;
  }
}

.hero-bg-pattern {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.04;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-bg-pattern {
    right: -40px;
    width: 600px;
    height: 600px;
  }
}

@media (min-width: 1024px) {
  .hero-bg-pattern {
    right: 0;
    width: 700px;
    height: 700px;
    opacity: 0.05;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-title span {
  color: var(--teal);
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--teal);
  opacity: 0.15;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 56px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 68px;
  }
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 20px;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,39,68,0.2);
}

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

.btn-outline:hover {
  border-color: var(--navy);
  background: #f8fafc;
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.2);
}

/* Hero visual element */
.hero-visual {
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
  }
}

.hero-visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-visual-ring:nth-child(1) {
  width: 380px;
  height: 380px;
}

.hero-visual-ring:nth-child(2) {
  width: 280px;
  height: 280px;
  border-color: var(--border-light);
}

.hero-visual-ring:nth-child(3) {
  width: 180px;
  height: 180px;
  border-color: var(--teal);
  border-width: 3px;
  opacity: 0.3;
}

.hero-visual-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-visual-dot:nth-child(4) { top: 20%; left: 30%; }
.hero-visual-dot:nth-child(5) { top: 70%; left: 65%; }
.hero-visual-dot:nth-child(6) { top: 40%; left: 75%; }
.hero-visual-dot:nth-child(7) { top: 55%; left: 20%; }

/* ==========================================================================
   SERVICES — Staggered Offset Layout
   ========================================================================== */
.services {
  background: var(--white);
  position: relative;
}

.services-header {
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .services-header {
    margin-bottom: 80px;
  }
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: flex;
  flex-direction: column;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s ease;
  position: relative;
}

.service-row:first-child {
  border-top: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .service-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    padding: 48px 0;
  }

  .service-row:nth-child(even) {
    padding-left: 80px;
  }
}

.service-row:hover {
  background: #fafdfc;
}

.service-row-icon {
  width: 52px;
  height: 52px;
  background: #f0fdfa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
  font-size: 24px;
}

@media (min-width: 768px) {
  .service-row-icon {
    margin-bottom: 0;
    margin-top: 4px;
  }
}

.service-row-body {
  flex: 1;
}

.service-row-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.service-row-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .service-row-title {
    font-size: 26px;
  }
}

.service-row-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 540px;
}

.service-row-hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--teal);
  border-radius: 0 2px 2px 0;
  transition: height 0.4s ease;
}

.service-row:hover .service-row-hover {
  height: 100%;
}

/* ==========================================================================
   ABOUT — Magazine Narrative Layout
   ========================================================================== */
.about {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.about-accent-line {
  display: none;
}

@media (min-width: 1024px) {
  .about-accent-line {
    display: block;
    position: absolute;
    top: 0;
    left: 60px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--border), transparent 80%);
  }
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.about-stat-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.about-stat-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.about-stat-mini {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.about-stat-mini-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-stat-mini-label {
  font-size: 13px;
  color: var(--text-muted);
}

.about-narrative {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-narrative p {
  margin-bottom: 20px;
}

.about-narrative p:last-child {
  margin-bottom: 0;
}

.about-pullquote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--amber);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-pullquote-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
  letter-spacing: -0.01em;
}

.about-pullquote-author {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   INDUSTRIES — Flowing Pill Cloud
   ========================================================================== */
.industries {
  background: var(--white);
}

.industries-header {
  text-align: center;
  margin-bottom: 56px;
}

.industries-header .section-subtitle {
  margin: 0 auto;
}

.industries-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  transition: all 0.25s ease;
  cursor: default;
}

.industry-pill:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: #f0fdfa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,0.1);
}

.industry-pill-icon {
  font-size: 18px;
}

.industry-pill:nth-child(3n+1) {
  padding: 16px 28px;
  font-size: 16px;
}

.industry-pill:nth-child(3n+2) {
  padding: 12px 22px;
  font-size: 14px;
}

.industry-pill:nth-child(5n+3) {
  padding: 18px 30px;
  font-size: 17px;
  font-weight: 600;
}

.industries-footer-text {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================================================
   APPROACH — Connected Node Flow
   ========================================================================== */
.approach {
  background: var(--bg);
  position: relative;
}

.approach-header {
  margin-bottom: 64px;
}

.approach-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .approach-flow {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

.approach-node {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding: 28px 0 28px 48px;
}

@media (min-width: 768px) {
  .approach-node {
    flex: 1;
    padding: 0 24px;
    align-items: center;
    text-align: center;
  }

  .approach-node:first-child {
    padding-left: 0;
  }

  .approach-node:last-child {
    padding-right: 0;
  }
}

.approach-node::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--border);
}

@media (min-width: 768px) {
  .approach-node::before {
    left: auto;
    top: 22px;
    width: 100%;
    height: 2px;
  }

  .approach-node:first-child::before {
    left: 50%;
    width: 50%;
  }

  .approach-node:last-child::before {
    width: 50%;
  }
}

.approach-node-dot {
  position: absolute;
  left: 0;
  top: 28px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s ease;
}

@media (min-width: 768px) {
  .approach-node-dot {
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
  }
}

.approach-node:hover .approach-node-dot {
  background: var(--teal);
}

.approach-node-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.approach-node-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.approach-node-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 220px;
}

@media (min-width: 768px) {
  .approach-node-desc {
    max-width: none;
  }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }
}

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

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

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #dc2626;
}

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

.form-error-msg {
  font-size: 13px;
  color: #dc2626;
  font-weight: 500;
  display: none;
}

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

.form-success {
  display: none;
  padding: 20px;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--teal-dark);
  font-weight: 500;
}

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

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.contact-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--teal);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-info-card a:hover {
  color: var(--teal-dark);
}

.contact-map-placeholder {
  width: 100%;
  height: 240px;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.contact-map-placeholder span {
  font-size: 32px;
}

/* ==========================================================================
   CTA BANNER — Asymmetrical Layout
   ========================================================================== */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 100px 0;
  }
}

.cta-banner-shape {
  display: none;
}

@media (min-width: 768px) {
  .cta-banner-shape {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: var(--navy-light);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  }
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (min-width: 768px) {
  .cta-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-banner-content {
  max-width: 560px;
}

.cta-banner-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cta-banner-title {
    font-size: 40px;
  }
}

.cta-banner-text {
  font-size: 17px;
  color: #d1d5db;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .cta-banner-actions {
    flex-direction: row;
  }
}

.cta-banner .btn-primary {
  background: var(--teal);
}

.cta-banner .btn-primary:hover {
  background: var(--teal-light);
  box-shadow: 0 8px 24px rgba(13,148,136,0.3);
}

.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

.cta-banner .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.footer-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
  font-size: 16px;
}

.footer-social a:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: #f8fafc;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--navy);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll-delay-3 { transition-delay: 0.3s; }
.animate-on-scroll-delay-4 { transition-delay: 0.4s; }
.animate-on-scroll-delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   PAGE HEADER (Privacy / Terms)
   ========================================================================== */
.page-header {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  background: var(--navy);
  text-align: center;
}

.page-header-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .page-header-title {
    font-size: 44px;
  }
}

.page-header-subtitle {
  font-size: 16px;
  color: #d1d5db;
}

/* ==========================================================================
   PRIVACY POLICY — Structured Chapter Layout
   ========================================================================== */
.privacy-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 60px 0;
}

@media (min-width: 1024px) {
  .privacy-layout {
    flex-direction: row;
    gap: 72px;
    align-items: flex-start;
  }
}

.privacy-sidebar {
  flex-shrink: 0;
  position: static;
}

@media (min-width: 1024px) {
  .privacy-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 40px);
    width: 240px;
  }
}

.privacy-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}

.privacy-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.privacy-nav-list a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.privacy-nav-list a:hover,
.privacy-nav-list a.active {
  color: var(--navy);
  border-left-color: var(--teal);
  background: #f0fdfa;
}

.privacy-content {
  flex: 1;
  min-width: 0;
}

.privacy-chapter {
  margin-bottom: 56px;
  padding: 0;
  background: var(--white);
}

.privacy-chapter:last-child {
  margin-bottom: 0;
}

.privacy-chapter-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.privacy-chapter h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .privacy-chapter h2 {
    font-size: 26px;
  }
}

.privacy-chapter p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.privacy-chapter p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   TERMS OF SERVICE — Distinct Panel Layout
   ========================================================================== */
.terms-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 60px 0;
}

.terms-intro {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 48px;
  border-top: 4px solid var(--navy);
}

.terms-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.terms-section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-light);
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.terms-section-num {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  padding-top: 2px;
}

.terms-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .terms-section h2 {
    font-size: 24px;
  }
}

.terms-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1023px) {
  .privacy-sidebar {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
  }

  .privacy-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .privacy-nav-list a {
    padding: 8px 14px;
    border-left: none;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    white-space: nowrap;
  }

  .privacy-nav-list a:hover,
  .privacy-nav-list a.active {
    border-color: var(--teal);
    border-left: 1px solid var(--teal);
  }
}

@media (max-width: 767px) {
  .about-stat-grid {
    grid-template-columns: 1fr;
  }
}
