@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0D1B2A;
  --navy-light: #162336;
  --teal: #1E8A8A;
  --teal-light: #22A0A0;
  --slate: #4A5568;
  --slate-light: #718096;
  --offwhite: #F7F9FC;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --border: rgba(255,255,255,0.08);
  --border-light: #E2E8F0;
  --shadow: 0 4px 24px rgba(13,27,42,0.12);
  --shadow-lg: 0 8px 48px rgba(13,27,42,0.18);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1,h2,h3,h4 { color: var(--navy); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.7; color: var(--slate); }
.lead { font-size: 1.2rem; line-height: 1.7; color: var(--slate); }
.label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-light); }

/* LAYOUT */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-light); border-color: var(--teal-light); color: var(--white);
  transform: translateY(-1px); box-shadow: 0 4px 20px rgba(30,138,138,0.35);
}
.btn-outline {
  background: transparent; color: var(--teal); border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal); color: var(--white); transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
}
.btn-arrow::after { content: ' →'; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,27,42,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { margin-left: 1.5rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: all var(--transition); border-radius: 2px; }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); border-top: 1px solid var(--border);
  padding: 1.5rem 0; transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cookie-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.cookie-actions { display: flex; gap: 1rem; flex-shrink: 0; }
.cookie-btn { padding: 0.6rem 1.5rem; font-size: 0.85rem; border-radius: var(--radius); cursor: pointer; font-weight: 600; transition: all var(--transition); border: 2px solid transparent; }
.cookie-accept { background: var(--teal); color: var(--white); border-color: var(--teal); }
.cookie-accept:hover { background: var(--teal-light); border-color: var(--teal-light); }
.cookie-reject { background: transparent; color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.2); }
.cookie-reject:hover { color: var(--white); border-color: var(--white); }

@media (max-width: 768px) {
  .cookie-banner .container { flex-direction: column; text-align: center; gap: 1.5rem; }
  .cookie-actions { width: 100%; justify-content: center; }
}

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--navy);
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(30,138,138,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(30,138,138,0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero .lead { color: rgba(255,255,255,0.7); max-width: 580px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-diagram { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 420px; opacity: 0.15; }

/* DIAGNOSTIC NODES - CSS art */
.node-diagram { width: 100%; height: 100%; position: relative; }

/* DARK SECTION */
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark .label { color: var(--teal); }

/* MID SECTION */
.section-mid { background: var(--navy-light); }
.section-mid h2, .section-mid h3 { color: var(--white); }
.section-mid p { color: rgba(255,255,255,0.7); }

/* LIGHT SECTION */
.section-light { background: var(--offwhite); }
.section-white { background: var(--white); }

/* SECTION HEADER */
.section-header { margin-bottom: 3.5rem; }
.section-header .label { margin-bottom: 0.75rem; display: block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 620px; font-size: 1.1rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* SYMPTOM CARDS */
.symptom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.symptom-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition);
}
.symptom-card:hover {
  background: rgba(255,255,255,0.07); border-color: rgba(30,138,138,0.4);
  transform: translateY(-2px);
}
.symptom-icon { width: 40px; height: 40px; margin-bottom: 1.2rem; }
.symptom-icon svg { width: 100%; height: 100%; }
.symptom-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.symptom-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; }

/* DIAGNOSIS BLOCK */
.diagnosis-block {
  border-left: 3px solid var(--teal);
  padding: 2.5rem 3rem;
  background: rgba(30,138,138,0.06);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-top: 2rem;
}
.diagnosis-block p { color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.8; }

/* SERVICE CARDS */
.service-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--teal); transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-number { font-size: 0.75rem; font-weight: 700; color: var(--teal); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--slate); flex: 1; margin-bottom: 1.5rem; }
.service-card .card-link { font-size: 0.85rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 0.3rem; }
.service-card .card-link:hover { gap: 0.6rem; }

/* FULL SERVICE CARDS (services page) */
.service-full {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 3rem;
  margin-bottom: 2rem; transition: box-shadow var(--transition);
}
.service-full:hover { box-shadow: var(--shadow); }
.service-full .service-number { font-size: 0.75rem; }
.service-full h2 { font-size: 1.75rem; margin-bottom: 1.5rem; }
.service-full .sharp-line {
  border-left: 3px solid var(--teal); padding-left: 1.25rem;
  color: var(--navy); font-size: 1rem; font-style: italic; font-weight: 500;
  margin: 1.5rem 0;
}
.service-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.service-meta-block h4 { color: var(--teal); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.service-meta-block p { font-size: 0.95rem; }

/* FOUNDER CARDS */
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.founder-card { display: flex; gap: 2rem; align-items: flex-start; }
.founder-avatar {
  width: 80px; height: 80px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em;
}
.founder-info h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.25rem; }
.founder-role { font-size: 0.8rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.founder-info p { font-size: 0.9rem; color: var(--slate); }

/* ABOUT FOUNDER (full page) */
.founder-full { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-light); }
.founder-full:last-child { border-bottom: none; }
.founder-photo-placeholder {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 0.8rem; text-align: center; padding: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.founder-full h2 { font-size: 1.75rem; margin-bottom: 0.25rem; }
.founder-full .founder-role { margin-bottom: 1.5rem; display: block; }
.founder-full p { margin-bottom: 1rem; }
.placeholder-note { font-size: 0.8rem; color: var(--teal); font-style: italic; background: rgba(30,138,138,0.08); padding: 0.75rem 1rem; border-radius: var(--radius); border-left: 2px solid var(--teal); margin-top: 1rem; }

/* BLOG CARDS */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal); }
.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, rgba(30,138,138,0.3) 100%);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.blog-card-image .blog-icon { opacity: 0.3; }
.blog-card-image svg { width: 48px; height: 48px; fill: none; stroke: var(--white); stroke-width: 1.5; }
.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 0.75rem; display: block; }
.blog-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; color: var(--slate); flex: 1; margin-bottom: 1.25rem; }
.blog-card .card-link { font-size: 0.85rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 0.3rem; }

/* BLOG FEATURED */
.blog-featured {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 3rem; margin-bottom: 3rem; display: grid;
  grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.blog-featured .blog-tag { color: var(--teal); }
.blog-featured h2 { color: var(--white); font-size: 1.75rem; margin-bottom: 1rem; }
.blog-featured p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.blog-featured-visual {
  height: 280px;
  background: rgba(30,138,138,0.15);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(30,138,138,0.2);
}

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-bullets { list-style: none; }
.contact-bullets li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.95rem; }
.contact-bullets li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }

.form-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--border-light);
  border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 0.9rem;
  color: var(--navy); background: var(--offwhite); transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,138,138,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--slate-light); margin-top: 1rem; }
.form-submit { width: 100%; }

/* STATS ROW */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 2rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--teal); letter-spacing: -0.03em; display: block; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

/* PHILOSOPHY POINTS */
.philosophy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.philosophy-item { padding: 1.75rem; border: 1px solid var(--border-light); border-radius: var(--radius-lg); }
.philosophy-item h3 { color: var(--navy); font-size: 1rem; margin-bottom: 0.5rem; }
.philosophy-item p { font-size: 0.9rem; }

/* CTA SECTION */
.cta-section {
  background: var(--navy); padding: 6rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(30,138,138,0.15) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); max-width: 700px; margin: 0 auto 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* DIVIDER */
.gold-line { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1.5rem 0; }
.gold-line.center { margin: 1.5rem auto; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--navy); padding: 8rem 0 5rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(30,138,138,0.1) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px) 0 0 / 60px 60px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 640px; }

/* BREADCRUMB */
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { margin: 0 0.5rem; }

/* FOOTER */
.footer { background: var(--navy); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); max-width: 260px; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--teal); }

/* BADGE */
.badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.85rem; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.badge-teal { background: rgba(30,138,138,0.15); color: var(--teal); border: 1px solid rgba(30,138,138,0.3); }
.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }

/* TEAL LINE DECORATION */
.teal-em { color: var(--teal); }

/* --- Article Detail Pages --- */
.article-header { padding: 8rem 0 4rem; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.article-header .container { position: relative; z-index: 2; }
.article-meta { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.article-meta .label { margin-bottom: 0; }
.article-title { font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.article-lead { font-size: 1.25rem; line-height: 1.6; color: rgba(255,255,255,0.8); max-width: 800px; margin-bottom: 2rem; }

.article-body { padding: 5rem 0; font-size: 1.125rem; line-height: 1.7; color: var(--slate); }
.article-content { max-width: 800px; margin: 0 auto; }
.article-content h2 { font-size: 2rem; margin: 3rem 0 1.5rem; color: var(--navy); }
.article-content h3 { font-size: 1.5rem; margin: 2rem 0 1rem; color: var(--navy); }
.article-content p { margin-bottom: 1.5rem; }
.article-content ul, .article-content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.article-content li { margin-bottom: 0.75rem; }
.article-content blockquote { margin: 3rem 0; padding: 2rem; background: var(--offwhite); border-left: 4px solid var(--teal); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; font-style: italic; font-size: 1.25rem; color: var(--navy); }
.article-content .takeaway-box { margin: 4rem 0; padding: 2.5rem; background: var(--navy); color: var(--white); border-radius: var(--radius-lg); }
.article-content .takeaway-box h3 { color: var(--teal); margin-top: 0; }
.article-content .takeaway-box ul { list-style: none; padding: 0; }
.article-content .takeaway-box li { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.article-content .takeaway-box li::before { content: "✓"; color: var(--teal); font-weight: 700; }

.article-hero-image { width: 100%; height: auto; border-radius: var(--radius-lg); margin-bottom: 4rem; box-shadow: var(--shadow-lg); }

.article-footer { border-top: 1px solid var(--border-light); padding-top: 4rem; margin-top: 4rem; display: flex; justify-content: space-between; align-items: center; }

@media (max-width: 768px) {
  .article-header { padding: 6rem 0 3rem; }
  .article-title { font-size: 2.25rem; }
  .article-lead { font-size: 1.1rem; }
  .article-body { padding: 3rem 0; font-size: 1rem; }
}

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .grid-2, .founder-grid, .founder-full, .contact-grid, .blog-featured { grid-template-columns: 1fr; }
  .symptom-grid, .blog-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .service-meta { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy); padding: 1.5rem 2rem;
    border-top: 1px solid var(--border); gap: 1.25rem;
  }
  .hero-diagram { display: none; }
  .blog-featured { gap: 2rem; }
  .blog-featured-visual { display: none; }
}
