/* ===== AI Setup LA — Main Stylesheet V3 ===== */
/* Mobile-first responsive design */

:root {
  --navy: #0f1b2d;
  --navy-light: #1a2a42;
  --navy-mid: #243654;
  --gold: #d4a544;
  --gold-light: #e8c06a;
  --gold-dark: #b8892e;
  --amber: #f0b429;
  --warm-white: #faf8f5;
  --warm-gray: #f0ece6;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --text-on-dark: #e8e4de;
  --white: #ffffff;
  --border: #e0dbd3;
  --shadow: rgba(15, 27, 45, 0.12);
  --shadow-lg: rgba(15, 27, 45, 0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--navy);
  font-weight: 700;
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.65rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li { margin-bottom: 0.35rem; }

/* ===== Fade-in Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media print {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== Utilities ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--navy);
  color: var(--text-on-dark);
}

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

.section-warm {
  background: var(--warm-gray);
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.section-dark .section-header p {
  color: var(--text-on-dark);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

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

.btn-white:hover {
  background: var(--warm-gray);
  border-color: var(--warm-gray);
  color: var(--navy);
}

/* ===== Header / Nav ===== */
.site-header {
  background: var(--navy);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px var(--shadow-lg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--gold);
}

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

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-light);
  padding: 1rem;
  list-style: none;
  flex-direction: column;
  gap: 0;
}

.nav-links.active {
  display: flex;
}

.nav-links li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-on-dark);
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-cta {
  display: none;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy-mid) 100%);
  padding: 4rem 0 3.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 165, 68, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-on-dark);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* ===== Trust Badges (in hero) ===== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(232, 228, 222, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== Pillars (3 columns) ===== */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-lg);
}

.pillar-icon {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.pillar h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.pillar p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===== Cards (legacy, keep for blog) ===== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-lg);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.section-dark .card {
  background: var(--navy-light);
  border-color: var(--navy-mid);
}

.section-dark .card p {
  color: var(--text-on-dark);
}

/* ===== Persona Tabs ===== */
.persona-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.persona-tab {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.persona-tab:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.persona-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.persona-panel {
  display: none;
}

.persona-panel.active {
  display: block;
}

.persona-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}

.persona-lead {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Capability Groups */
.capability-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.capability-group h4 {
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.persona-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0.5rem;
}

.persona-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: 0.95rem;
}

.persona-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.persona-tagline {
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.persona-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* ===== Experience Timeline ===== */
.experience-timeline {
  max-width: 700px;
  margin: 0 auto;
}

.exp-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 2.5rem;
}

.exp-step:last-child {
  padding-bottom: 0;
}

.exp-step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0.3;
}

.exp-step:last-child::before {
  display: none;
}

.exp-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.exp-step-content {
  flex: 1;
  padding-top: 0.25rem;
}

.exp-step-content h3 {
  margin-bottom: 0.5rem;
}

.exp-step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===== Service Tiers ===== */
.tiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  border: 2px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.tier-featured {
  border-color: var(--gold);
}

.tier-label {
  display: inline-block;
  background: var(--warm-gray);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.tier-featured .tier-label {
  background: var(--gold);
  color: var(--navy);
}

.tier-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex: 1;
}

.tier-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: 0.95rem;
}

.tier-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.tier-cta {
  width: 100%;
  text-align: center;
}

/* Monthly Care Plans */
.care-plans {
  text-align: center;
  padding-top: 1rem;
}

.care-plans h3 {
  margin-bottom: 0.5rem;
}

.care-plans > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.care-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.care-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 6px var(--shadow);
}

.care-card h4 {
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.care-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.care-cta {
  margin-top: 0.5rem;
}

/* ===== Areas Served ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.area-tag {
  background: rgba(212, 165, 68, 0.1);
  border: 1px solid rgba(212, 165, 68, 0.25);
  color: var(--gold-light);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
  font-size: 0.9rem;
}

.areas-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gold-light);
}

.areas-note a {
  color: var(--gold);
}

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
  line-height: 1.4;
  font-family: inherit;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-form {
  max-width: 100%;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--navy-mid);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--navy-light);
  color: var(--white);
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(232, 228, 222, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 68, 0.15);
}

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

.form-group select {
  appearance: auto;
}

.form-group select option {
  background: var(--navy-light);
  color: var(--white);
}

.form-submit {
  width: 100%;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-option {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--navy-mid);
}

.contact-option h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-option p {
  color: var(--text-on-dark);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-email {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-trust {
  background: rgba(212, 165, 68, 0.08);
  border: 1px solid rgba(212, 165, 68, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.contact-trust p {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.contact-trust p:last-child {
  margin-bottom: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

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

.footer-col ul li a {
  color: var(--text-on-dark);
  font-size: 0.9rem;
}

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

.footer-col p {
  font-size: 0.9rem;
  color: var(--text-on-dark);
}

.footer-bottom {
  border-top: 1px solid var(--navy-mid);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  margin: 0;
}

.footer-bottom a {
  color: var(--gold);
}

/* ===== Blog ===== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-lg);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img span {
  font-size: 3rem;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-body .meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.blog-card-body h3 {
  margin-bottom: 0.5rem;
}

.blog-card-body h3 a {
  color: var(--navy);
}

.blog-card-body h3 a:hover {
  color: var(--gold-dark);
}

.blog-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.read-more {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.read-more:hover {
  color: var(--gold);
}

/* ===== Blog Article ===== */
.article-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 3.5rem 0 2.5rem;
  color: var(--white);
}

.article-header .meta {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.article-header h1 {
  color: var(--white);
  max-width: 800px;
}

.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.article-body h3 {
  margin-top: 1.75rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.25rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--warm-gray);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-light);
}

.article-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.article-cta p {
  color: var(--text-on-dark);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--gold-light);
}

.article-header .breadcrumbs a {
  color: var(--gold-light);
}

/* ===== Page Header (for blog listing) ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 3.5rem 0 2.5rem;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
}

.page-header p {
  color: var(--text-on-dark);
  font-size: 1.1rem;
}

/* ===== Skip Link (Accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 10000;
  font-weight: 600;
}

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

/* ===== Use Case Blocks (legacy, keep for blog) ===== */
.use-case {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 8px var(--shadow);
}

.use-case h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.use-case .quote {
  font-style: italic;
  color: var(--gold-dark);
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

/* ===== Steps / How It Works (legacy, keep for blog) ===== */
.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.step-content h3 {
  margin-bottom: 0.35rem;
}

.step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== Testimonials (legacy, keep for blog) ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.testimonial blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE — Tablet ===== */
@media (min-width: 640px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }

  .hero h1 { font-size: 2.8rem; }

  .hero-buttons {
    flex-direction: row;
  }

  .trust-badges {
    gap: 1.5rem;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

/* ===== RESPONSIVE — Desktop ===== */
@media (min-width: 960px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 5.5rem 0;
  }

  h1 { font-size: 2.8rem; }

  .hero {
    padding: 6rem 0 5rem;
  }

  .hero h1 { font-size: 3.2rem; }

  /* Nav desktop */
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    background: none;
    padding: 0;
    flex-direction: row;
    gap: 0.25rem;
    align-items: center;
  }

  .nav-links li a {
    padding: 0.5rem 1rem;
  }

  .nav-cta {
    display: inline-block;
  }

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

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

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

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

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

  .areas-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

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

  .contact-grid {
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
