/* ========================================
   HONEST 1 CAREGIVING LLC
   Style: Option C — Bold & Confident
   ======================================== */

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

:root {
  /* Refined purple palette — toned down for professional feel */
  --deep: #2D1F4E;          /* Deep aubergine — primary brand */
  --deeper: #1F1438;        /* Even deeper, for footer */
  --bright: #6B5BBA;         /* Muted violet — for accents/links */
  --mint: #C9A961;           /* Warm gold — replaces mint, pairs with purple */
  --paper: #FFFFFF;
  --bg: #F7F4F0;             /* Warm cream background */
  --soft: #EDE5DC;           /* Warmer soft tone */
  --line: #E5DDD3;
  --ink: #1A1525;            /* Near-black with purple undertone */
  --muted: #6B6478;          /* Warm muted gray */
  --accent: #6B5BBA;
  --error: #B0413E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 700; letter-spacing: -0.05em; }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }

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

/* ========================================
   NAV
   ======================================== */
.nav {
  background: var(--paper);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}
.logo-img { 
  height: 60px; 
  width: auto;
  display: block;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--deep);
}

/* Footer logo - medium size, with subtle white tint to logo */
.footer .logo-img { 
  height: 80px;
  filter: brightness(1.1) contrast(0.95);
}
.footer .logo-text { color: white; }

/* Mobile: smaller logo */
@media (max-width: 600px) {
  .logo-img { height: 48px; }
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--bright); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bright);
}

.nav-cta {
  background: var(--deep);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--bright); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  background: var(--deep);
  color: white;
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(43,127,255,0.25), transparent 60%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hero-tag {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 12px var(--mint); }
  50% { box-shadow: 0 0 20px var(--mint); }
}
.hero-tag-divider { color: rgba(255,255,255,0.3); }
.hero-tag-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.hero-tag-link:hover { color: white; }

.hero h1 { color: white; margin-bottom: 2rem; }
.hero h1 .accent-mint { color: var(--mint); }

.hero-meta-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 560px;
}
.hero-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Buttons */
.btn-mint, .btn-ghost-light, .btn-deep, .btn-outline-deep, .btn-white {
  padding: 1.1rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-mint {
  background: var(--mint);
  color: var(--deep);
}
.btn-mint:hover { background: white; transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-deep {
  background: var(--deep);
  color: white;
}
.btn-deep:hover { background: var(--bright); transform: translateY(-2px); }
.btn-outline-deep {
  background: transparent;
  color: var(--deep);
  border: 2px solid var(--deep);
}
.btn-outline-deep:hover { background: var(--deep); color: white; }
.btn-white {
  background: white;
  color: var(--deep);
}
.btn-white:hover { background: var(--mint); }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-stat { padding-right: 2rem; }
.hero-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.25rem;
  font-weight: 600;
  color: white;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-stat-num .small { font-size: 1.5rem; color: var(--mint); }
.hero-stat-label {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  max-width: 220px;
}

/* Hero image strip */
.hero-image-strip {
  margin-top: 4rem;
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
}
.hero-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,42,71,0.4), transparent 30%);
}
.hero-image-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--paper);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}
.hero-image-tag-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-tag-text {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.3;
}
.hero-image-tag-text strong { display: block; font-weight: 600; font-size: 1rem; }

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  background: var(--deep);
  color: white;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(43,127,255,0.25), transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.page-hero h1 { color: white; margin-bottom: 1.5rem; max-width: 900px; }
.page-hero h1 .accent-mint { color: var(--mint); }
.page-hero-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  line-height: 1.55;
}

/* ========================================
   SECTIONS
   ======================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 7rem 0; }

@media (max-width: 768px) {
  section { padding: 4rem 0; }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--bright);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--bright);
  border-radius: 50%;
}

/* Pathways */
.pathways { background: var(--bg); }
.pathways-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 5rem;
}
.pathways-header h2 .accent { color: var(--bright); }
.pathways-header p { color: var(--muted); font-size: 1.1rem; }

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pathway-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border: 1px solid var(--line);
}
.pathway-card:hover {
  background: var(--deep);
  color: white;
  transform: translateY(-4px);
  border-color: var(--deep);
}
.pathway-card-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--soft);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  transition: color 0.3s;
}
.pathway-card:hover .pathway-card-num { color: var(--mint); }
.pathway-card h3 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.pathway-card:hover h3 { color: white; }
.pathway-card p {
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 2rem;
  line-height: 1.6;
  transition: color 0.3s;
}
.pathway-card:hover p { color: rgba(255,255,255,0.8); }
.pathway-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: gap 0.3s;
  color: var(--bright);
}
.pathway-card:hover .pathway-card-link { color: var(--mint); gap: 0.8rem; }

/* Services */
.services-section { background: white; }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}
.services-header h2 .accent { color: var(--bright); }

.services-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}
.services-feature {
  background: var(--deep);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-feature-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 70%;
  opacity: 0.6;
  mask-image: linear-gradient(to bottom left, black 30%, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom left, black 30%, transparent 70%);
  background-size: cover;
  background-position: center;
}
.services-feature-content {
  position: relative;
  z-index: 1;
  max-width: 380px;
}
.services-feature-content h3 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.services-feature-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.services-feature-link {
  color: var(--mint);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.services-feature-stat {
  position: relative;
  z-index: 1;
}
.services-feature-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
  letter-spacing: -0.05em;
}
.services-feature-stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  max-width: 240px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-item {
  background: var(--bg);
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}
.service-item:hover {
  background: white;
  border-color: var(--bright);
  transform: translateX(8px);
}
.service-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.service-item-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}
.service-item-icon {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bright);
  flex-shrink: 0;
  transition: all 0.3s;
}
.service-item:hover .service-item-icon {
  background: var(--bright);
  color: white;
}
.service-item-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.service-item-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* Quote section */
.quote-section {
  background: var(--deep);
  color: white;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(43,127,255,0.15), transparent 60%);
}
.quote-section .container {
  max-width: 1100px;
  text-align: center;
  position: relative;
}
.quote-mark-big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 8rem;
  color: var(--mint);
  line-height: 0.5;
  margin-bottom: 1rem;
  display: block;
}
.quote-section blockquote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: white;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}
.quote-section blockquote .highlight {
  color: var(--mint);
  font-style: italic;
}
.quote-section .quote-attribution {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CTA section */
.cta-section { background: white; padding: 7rem 0; }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-grid h2 { margin-bottom: 1.5rem; }
.cta-grid h2 .accent { color: var(--bright); }
.cta-grid p {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-image {
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About / values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.value-card:hover { border-color: var(--bright); transform: translateY(-4px); }
.value-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bright);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}
.value-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.value-card p { color: var(--muted); font-size: 0.97rem; line-height: 1.55; }

/* Service detail rows */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { grid-template-columns: 1.5fr 1fr; }
.service-detail-image {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
}
.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-content h2 { font-size: 2.5rem; margin-bottom: 1.25rem; }
.service-detail-content > p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.service-detail-content ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.service-detail-content ul li {
  color: var(--ink);
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-detail-content ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--mint);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230E2A47' stroke-width='4' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* FAQ */
.faq-list { max-width: 900px; margin-top: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
}
.faq-question {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--bright);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-top: 1.25rem;
}

/* ========================================
   FORMS
   ======================================== */
.form-page { background: var(--bg); padding: 4rem 0 7rem; }
.form-container {
  background: white;
  padding: 3.5rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  max-width: 920px;
  margin: 0 auto;
}
.form-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 2rem;
}
.form-section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}
.form-section-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  color: var(--bright);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.form-section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-grid.single { grid-template-columns: 1fr; }
.form-grid.three { grid-template-columns: 2fr 1fr 1fr; }

.form-field { display: flex; flex-direction: column; }
.form-field.span-full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-field label .required { color: var(--error); }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  transition: all 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--bright);
  box-shadow: 0 0 0 3px rgba(43,127,255,0.1);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Inter', sans-serif;
}
.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%230A1929' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.checkbox-item:hover { border-color: var(--bright); background: white; }
.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--bright);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-item span { font-size: 0.95rem; color: var(--ink); }
.checkbox-item:has(input:checked) {
  border-color: var(--bright);
  background: rgba(43,127,255,0.05);
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.form-disclaimer {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 400px;
}
.form-success {
  display: none;
  padding: 2rem;
  background: rgba(0,212,184,0.08);
  border: 1.5px solid var(--mint);
  border-radius: 12px;
  text-align: center;
}
.form-success.active { display: block; }
.form-success h3 {
  color: var(--deep);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--muted); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--deeper);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer .logo-text { color: white; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  max-width: 320px;
  margin-top: 1rem;
}
.footer-col h4 {
  font-size: 0.78rem;
  color: var(--mint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
  }
  .mobile-toggle { display: flex; }
  .hero-meta-row, .pathways-header, .services-header, .services-grid, .cta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pathway-grid, .values-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stat-num { font-size: 2.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-feature { min-height: 400px; padding: 2rem; }
  .services-feature-bg {
    width: 100%;
    height: 50%;
    mask-image: linear-gradient(to bottom, transparent, black 50%);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 50%);
    top: auto;
    bottom: 0;
  }
  .hero-image-strip { height: 320px; }
  .form-container { padding: 2rem 1.5rem; }
  .form-grid, .form-grid.three { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .service-detail, .service-detail.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-detail-content ul { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}
