/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section--light { background: var(--light); }
.section--navy { background: var(--navy); }
.section--teal { background: var(--teal); }
.section--dark { background: var(--dark); }

.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.6); }
.section--teal h2, .section--teal h3 { color: var(--white); }
.section--teal p { color: rgba(255,255,255,0.75); }

.section__eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.8rem;
}
.section__title { margin-bottom: 1rem; }
.section__intro { font-size: 1rem; color: var(--body); max-width: 620px; margin-bottom: 3rem; }

/* ── DIVIDER ── */
.rule { width: 40px; height: 3px; background: var(--amber); margin: 1.2rem 0 2rem; display: block; }

/* ── GRID ── */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: 0 6px 28px rgba(27,58,107,0.1); transform: translateY(-2px); }
.card--teal-top { border-top: 3px solid var(--teal); }
.card--amber-top { border-top: 3px solid var(--amber); }
.card--dark { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.card--dark:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.2); }

.card__icon {
  width: 42px; height: 42px;
  background: var(--light);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.card__eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.card h3 { color: var(--navy); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.7rem; font-family: 'DM Sans', sans-serif; }
.card--dark h3 { color: var(--white); }
.card--dark .card__eyebrow { color: var(--amber); }

/* ── SPLIT LAYOUT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split--flip .split__visual { order: -1; }

.split__visual {
  background: var(--navy);
  border-radius: 8px;
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.split__visual::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,124,123,0.18) 0%, transparent 70%);
}
.split__visual-inner {
  position: relative; z-index: 1;
  text-align: center; padding: 2rem;
}
.split__visual-big {
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  line-height: 1.1;
}
.split__stat {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--amber);
  padding: 0.7rem 1.1rem; border-radius: 6px;
}
.split__stat strong { display: block; font-family: 'Raleway', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--ink); line-height: 1; }
.split__stat span { font-family: 'Space Mono', monospace; font-size: 0.75rem; color: rgba(28,28,28,0.7); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── STATS ROW ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--mid); border-radius: 8px; overflow: hidden; }
.stat { padding: 2.5rem 1.5rem; text-align: center; border-right: 1px solid var(--mid); background: var(--white); }
.stat:last-child { border-right: none; }
.stat__num { font-family: 'Raleway', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--navy); display: block; line-height: 1; }
.stat__label { font-size: 0.82rem; color: var(--body); margin-top: 0.4rem; }

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  box-shadow: 0 2px 12px rgba(27,58,107,0.07);
}
.testimonial__quote { font-size: 1rem; font-style: italic; color: var(--ink); margin-bottom: 1rem; line-height: 1.65; }
.testimonial__cite { font-family: 'Space Mono', monospace; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--body); text-transform: uppercase; }

/* ── STEPS ── */
.steps { }
.step {
  display: grid; grid-template-columns: 52px 1fr;
  gap: 1.8rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--mid);
}
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step__num {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--amber);
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step__title { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; font-family: 'DM Sans', sans-serif; }

/* ── ACCORDION ── */
.accordion { border: 1px solid var(--mid); border-radius: 8px; overflow: hidden; }
.accordion__item { border-bottom: 1px solid var(--mid); }
.accordion__item:last-child { border-bottom: none; }
.accordion__trigger {
  width: 100%; text-align: left;
  padding: 1.2rem 1.6rem;
  background: none; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition);
}
.accordion__trigger:hover { background: var(--light); }
.accordion__trigger::after { content: '+'; font-size: 1.3rem; color: var(--teal); transition: transform var(--transition); }
.accordion__trigger.open::after { transform: rotate(45deg); }
.accordion__body { padding: 0 1.6rem; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.accordion__body.open { padding: 0 1.6rem 1.3rem; max-height: 500px; }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; }
.feature-list li {
  padding: 0.55rem 0 0.55rem 1.4rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--body);
  border-bottom: 1px solid var(--mid);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ── CONTACT FORM ── */
.form__group { margin-bottom: 1.4rem; }
.form__label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.45rem; }
.form__input, .form__select, .form__textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--mid); border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--ink); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,124,123,0.12);
}
.form__textarea { min-height: 130px; resize: vertical; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__radio-group { display: flex; flex-direction: column; gap: 0.55rem; }
.form__radio { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; cursor: pointer; color: var(--body); }
.form__radio input { accent-color: var(--teal); width: 15px; height: 15px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  border-top: 3px solid var(--teal);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,124,123,0.12) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1rem; font-weight: 300; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand-the { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 400; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 2px; }
.footer__brand-name { font-family: 'DM Sans', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer__brand-name span { color: var(--teal); }
.footer__brand-tag { font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-top: 3px; }
.footer__desc { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.45); margin-top: 1rem; }
.footer__heading { font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.1rem; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.45rem; }
.footer__links a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__contact-item { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 0.45rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
  font-family: 'Space Mono', monospace; letter-spacing: 0.05em;
}
.footer__bottom a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
  margin-left: 1.5rem;
}
.footer__bottom a:first-child { margin-left: 0; }
.footer__bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.text-teal { color: var(--teal); }
.text-white { color: var(--white); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 2rem; }

/* fadeUp animations in critical CSS */

/* ── NEWSLETTER FORM IN FOOTER ── */
.footer__nl-form { margin-top: 0.1rem; }
.footer__nl-form form { display: flex; gap: 8px; width: 100%; }
.footer__nl-form input[type="email"] {
  flex: 1;
  min-width: 0;
  background: rgba(100,149,237,0.15);
  border: 1px solid rgba(100,149,237,0.4);
  border-radius: 6px;
  padding: 0.72rem 0.9rem;
  color: var(--white);
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background 0.2s;
}
.footer__nl-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.footer__nl-form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(100,149,237,0.25);
}
.footer__nl-form button {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
  border-radius: 4px;
  padding: 0.5rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.footer__nl-form button:hover { background: #0a6665; border-color: #0a6665; }
.footer__nl-form button:active { transform: scale(0.97); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split--flip .split__visual { order: 0; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stats .stat:nth-child(2) { border-right: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 680px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .form__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 2rem; gap: 1.2rem;
    border-bottom: 1px solid rgba(14,124,123,0.3);
  }
  .hamburger { display: flex; background: none; border: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(even) { border-right: none; }
}

/* ── COMPARISON TABLE ── */
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 2rem 0; }
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 0.85rem;
  min-width: 700px;
}
.compare-table th {
  font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 1rem; text-align: left;
  background: var(--navy); color: rgba(255,255,255,0.5);
}
.compare-table th:first-child { color: var(--amber); }
.compare-table th.col-highlight { background: var(--teal); color: var(--white); }
.compare-table td {
  padding: 0.85rem 1rem; vertical-align: top;
  border-bottom: 1px solid var(--mid); color: var(--body);
  line-height: 1.5;
}
.compare-table td:first-child { font-weight: 600; color: var(--navy); font-size: 0.82rem; white-space: nowrap; }
.compare-table td.col-highlight { background: rgba(14,124,123,0.05); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--light); }
.compare-table tr:hover td.col-highlight { background: rgba(14,124,123,0.08); }
.compare-badge { display: inline-block; font-size: 0.75rem; font-weight: 600;
  padding: 2px 8px; border-radius: 20px; margin-top: 2px; }
.compare-badge--green { background: rgba(14,124,123,0.12); color: var(--teal); }
.compare-badge--red { background: rgba(192,57,43,0.1); color: #c0392b; }
.compare-badge--amber { background: rgba(232,160,32,0.15); color: #b87d10; }

/* ── PRICING CARDS ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.pricing-card {
  background: var(--white); border: 1px solid var(--mid);
  border-radius: 10px; padding: 2rem; position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(27,58,107,0.1); transform: translateY(-3px); }
.pricing-card--featured {
  border-color: var(--teal); border-top: 3px solid var(--teal);
  box-shadow: 0 4px 24px rgba(14,124,123,0.12);
}
.pricing-card__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white);
  font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 20px; white-space: nowrap;
}
.pricing-card__label {
  font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 0.5rem;
}
.pricing-card__price {
  font-family: 'Raleway', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--navy); line-height: 1; margin-bottom: 0.2rem;
}
.pricing-card__price span { font-size: 1rem; font-weight: 400; color: var(--body); }
.pricing-card__desc { font-size: 0.85rem; color: var(--body); line-height: 1.6; margin: 0.8rem 0 1.2rem; }
.pricing-card__list { list-style: none; }
.pricing-card__list li {
  font-size: 0.85rem; color: var(--body); padding: 0.4rem 0 0.4rem 1.2rem;
  border-bottom: 1px solid var(--mid); position: relative;
}
.pricing-card__list li:last-child { border-bottom: none; }
.pricing-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ── TIMELINE PHASES ── */
.phases { margin: 2rem 0; }
.phase {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 2rem; margin-bottom: 0; padding: 1.8rem 0;
  border-bottom: 1px solid var(--mid); position: relative;
}
.phase:last-child { border-bottom: none; }
.phase::before {
  content: ''; position: absolute; left: 59px; top: 0; bottom: 0;
  width: 2px; background: var(--mid); z-index: 0;
}
.phase:last-child::before { display: none; }
.phase__marker {
  text-align: center; position: relative; z-index: 1;
}
.phase__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--amber);
  font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.4rem; border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}
.phase__time {
  font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal);
}
.phase h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.phase ul { list-style: none; }
.phase ul li {
  font-size: 0.88rem; color: var(--body); padding: 0.25rem 0 0.25rem 1.2rem;
  position: relative;
}
.phase ul li::before { content: '—'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ── DEMAND CALCULATOR WIDGET ── */
.demand-widget {
  background: var(--light); border: 1px solid var(--mid);
  border-left: 3px solid var(--teal); border-radius: 0 10px 10px 0;
  padding: 2rem 2.5rem; margin: 2rem 0;
}
.demand-widget__title {
  font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 1rem;
}
.demand-row { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(27,58,107,0.08); }
.demand-row:last-of-type { border-bottom: none; }
.demand-row p { margin: 0; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.demand-row .badge {
  font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; white-space: nowrap;
}
.badge--teal { background: rgba(14,124,123,0.12); color: var(--teal); }
.badge--amber { background: rgba(232,160,32,0.15); color: #b87d10; }
.badge--navy { background: rgba(27,58,107,0.1); color: var(--navy); }

/* ── COST COMPARISON BLOCK ── */
.cost-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.cost-block {
  border-radius: 10px; padding: 1.8rem; border: 1px solid var(--mid);
}
.cost-block--fractional { background: var(--navy); border-color: var(--teal); }
.cost-block--permanent { background: var(--white); }
.cost-block__label {
  font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cost-block--fractional .cost-block__label { color: var(--teal); }
.cost-block--permanent .cost-block__label { color: var(--body); }
.cost-block__total {
  font-family: 'Raleway', sans-serif; font-size: 2.4rem; font-weight: 800;
  line-height: 1; margin-bottom: 0.3rem;
}
.cost-block--fractional .cost-block__total { color: var(--white); }
.cost-block--permanent .cost-block__total { color: var(--navy); }
.cost-block__sub { font-size: 0.82rem; margin-bottom: 1.2rem; }
.cost-block--fractional .cost-block__sub { color: rgba(255,255,255,0.5); }
.cost-block--permanent .cost-block__sub { color: var(--body); }
.cost-breakdown { list-style: none; }
.cost-breakdown li {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cost-block--permanent .cost-breakdown li { border-bottom-color: var(--mid); }
.cost-breakdown li:last-child { border-bottom: none; font-weight: 700; }
.cost-breakdown li span:first-child { color: rgba(255,255,255,0.5); }
.cost-breakdown li span:last-child { color: rgba(255,255,255,0.85); }
.cost-block--permanent .cost-breakdown li span:first-child { color: var(--body); }
.cost-block--permanent .cost-breakdown li span:last-child { color: var(--navy); }

/* ── CHECKLIST SECTION ── */
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; margin: 1.2rem 0; }
.checklist li {
  font-size: 0.88rem; color: var(--body);
  padding: 0.5rem 0 0.5rem 1.6rem; position: relative;
  border-bottom: 1px solid var(--mid);
}
.checklist li:last-child, .checklist li:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 0.9rem; }
.checklist--red li::before { content: '✗'; color: #c0392b; }

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .cost-compare { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .phase { grid-template-columns: 80px 1fr; gap: 1.2rem; }
  .phase::before { left: 39px; }
}
@media (max-width: 680px) {
  .compare-table th, .compare-table td { padding: 0.6rem 0.7rem; font-size: 0.78rem; }
  .phase { grid-template-columns: 1fr; }
  .phase::before { display: none; }
}

/* ── FOCUS STYLES (accessibility) ── */
/* Visible focus ring for keyboard users on all interactive elements */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}
/* Override for dark backgrounds — use amber */
.nav :focus-visible,
.hamburger:focus-visible,
.footer :focus-visible,
.section--navy :focus-visible,
.section--dark :focus-visible,
.hero :focus-visible {
  outline-color: var(--amber);
}
/* Override for buttons with their own background */
.btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
/* Keep existing form focus styles but ensure no outline:none without replacement */
.form__input:focus-visible,
.form__select:focus-visible,
.form__textarea:focus-visible {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,124,123,0.18);
}
/* Accordion trigger focus */
.accordion__trigger:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: -3px;
  background: var(--light);
}