/* ============================================
   Owner Listing Services - Design System CSS
   ============================================ */

/* --- CSS Custom Properties (Design System Tokens) --- */
:root {
  /* Colors */
  --color-charcoal: #2C2C2C;
  --color-teal: #3ABFBF;
  --color-teal-dark: #2FA3A3;
  --color-teal-tint: #E8F8F8;
  --color-white: #FFFFFF;
  --color-offwhite: #F7F9FA;
  --color-gray: #888888;
  --color-border: #E5E7EB;
  --color-dark-bg-muted: #CCCCCC;
  --color-success: #2ECC71;
  --color-warning: #F0AD4E;
  --color-error: #E74C3C;
  /* Gold accent — featured-tier badge only. Bridges to Collective gold-accent theme. */
  --color-gold-tint: #F4E4A8;
  --color-gold-border: #C9A659;
  --color-gold-text: #6B4F12;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad-desktop: 80px;
  --section-pad-mobile: 48px;
  --content-max: 1200px;
  --narrow-max: 720px;
  --gutter-desktop: 24px;
  --gutter-mobile: 16px;
  --page-pad-desktop: 64px;
  --page-pad-mobile: 20px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-nav: 0 2px 8px rgba(0,0,0,0.06);

  /* Transitions */
  --transition-fast: 200ms 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: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-teal);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-teal-dark);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-charcoal);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

h3, h4 {
  text-wrap: balance;
}

p.text-gray,
.hero__card .text-large,
.hero__card .text-small {
  text-wrap: pretty;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-charcoal);
}

h4 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-charcoal);
}

p {
  margin-bottom: 16px;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

.text-large {
  font-size: 18px;
}

.text-small {
  font-size: 14px;
  line-height: 1.5;
  text-wrap: balance;
}

.text-caption {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-wrap: balance;
}

.text-gray {
  color: var(--color-gray);
  text-wrap: pretty;
}

.text-teal {
  color: var(--color-teal);
}

.text-white {
  color: var(--color-white);
}

.text-center {
  text-align: center;
}

.text-dark-bg-muted {
  color: var(--color-dark-bg-muted);
  text-wrap: balance;
}

/* --- Layout --- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-mobile);
}

.container--narrow {
  max-width: var(--narrow-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-mobile);
}

/* FAQ container: same 720px max-width as narrow, but tighter desktop side
   padding so the longest FAQ summary text fits on a single line at 1200px+
   without bumping past the DS narrow-max convention. Desktop padding override
   below in the @media (min-width: 768px) block. */
.container--faq {
  max-width: var(--narrow-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-mobile);
}

.section {
  padding: var(--section-pad-mobile) 0;
}

.section--white {
  background-color: var(--color-white);
}

.section--offwhite {
  background-color: var(--color-offwhite);
}

.section--charcoal {
  background-color: var(--color-charcoal);
}

.section--teal-tint {
  background-color: var(--color-teal-tint);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-teal);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 8px;
  height: auto;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
  height: 72px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition-fast);
}

.nav--scrolled {
  box-shadow: var(--shadow-nav);
}

.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-mobile);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  max-height: 40px;
  width: auto;
}

.nav__logo {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.nav-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-lockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--color-border);
}


.nav-lockup__name {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  line-height: 1;
  white-space: nowrap;
}

.nav-lockup__tagline {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--color-teal);
  line-height: 1;
  white-space: nowrap;
}

.nav-wordmark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #2C2C2C;
  letter-spacing: 0px;
  text-decoration: none;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-charcoal);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: var(--page-pad-mobile);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border-radius: 0 0 12px 12px;
  z-index: 99;
  padding: 16px 0;
  min-width: 200px;
}

.nav__mobile-menu.open {
  display: block;
}

.nav__mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  min-height: 48px;
  line-height: 24px;
  border-bottom: 1px solid var(--color-border);
}

.nav__mobile-menu a:last-of-type:not(.mobile-menu__cta) {
  border-bottom: none;
}

.nav__mobile-menu a:hover,
.nav__mobile-menu a.active {
  color: var(--color-teal);
  background-color: var(--color-offwhite);
}

.nav__mobile-menu .mobile-menu__cta {
  margin: 8px 16px 0;
  text-align: center;
  width: auto;
  display: block;
  color: var(--color-white);
}

.nav__mobile-menu .mobile-menu__cta:hover {
  color: var(--color-white);
  background-color: var(--color-teal-dark);
}

/* Mobile CTA Bar */
.mobile-cta-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--color-teal);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
  height: 56px;
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  min-width: 160px;
  min-height: 48px;
  line-height: 1;
  white-space: nowrap;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-teal-dark);
  color: var(--color-white);
}

.btn--secondary {
  background-color: var(--color-white);
  color: var(--color-charcoal);
  border: 2px solid var(--color-teal);
}

.btn--secondary:hover {
  background-color: var(--color-teal-tint);
  color: var(--color-charcoal);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-teal);
  border: 1px solid rgba(58, 191, 191, 0.4); /* teal at 40% alpha */
  padding: 14px 28px;
}

.btn--ghost:hover {
  background-color: var(--color-teal-tint);
  border-color: var(--color-teal);
  color: var(--color-teal);
  text-decoration: none;
}

.btn--dark-bg {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.btn--dark-bg:hover {
  background-color: #44d0d0;
  color: var(--color-white);
}

.btn--ghost-dark {
  background-color: transparent;
  color: var(--color-teal);
  border: none;
}

.btn--ghost-dark:hover {
  color: #44d0d0;
  text-decoration: underline;
}

.btn--secondary-dark {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--secondary-dark:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--nav,
.nav__links a.btn--nav,
.nav__links .btn--nav {
  padding: 10px 20px;
  min-width: auto;
  font-size: 14px;
  background-color: var(--color-teal);
  color: var(--color-white);
  border: none;
  border-bottom: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn--nav:hover,
.nav__links a.btn--nav:hover,
.nav__links .btn--nav:hover {
  background-color: var(--color-teal-dark);
  color: var(--color-white);
  border-bottom: none;
}

.btn--full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Cards --- */
.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.card--static:hover {
  box-shadow: var(--shadow-card);
  transform: none;
}

.card--featured {
  border-top: 4px solid var(--color-teal);
  background-color: var(--color-offwhite);
  position: relative;
}

.card--step {
  text-align: left;
  height: 100%;
}

.card--step:hover {
  box-shadow: var(--shadow-card);
  transform: none;
}

/* --- Badge --- */
.badge {
  display: inline-block;
  background-color: var(--color-teal-tint);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 4px;
  line-height: 1.4;
}

/* Featured pricing card uses a subtle gold "Most Popular" badge.
   Bridges visually to the Collective's gold-accent theme (Phase 1b). */
.card--featured .pricing-card__badge .badge {
  background-color: var(--color-gold-tint);
  color: var(--color-gold-text);
  border: 1px solid var(--color-gold-border);
  padding: 3px 11px; /* compensate 1px border so visual size matches */
}

/* --- Step Number --- */
.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-teal);
  line-height: 1;
  margin-bottom: 16px;
  text-align: center;
}

/* --- Grid Layouts --- */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter-mobile);
  align-items: stretch;
}

.grid-3 > li {
  display: flex;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter-mobile);
  align-items: stretch;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter-mobile);
  align-items: stretch;
}

/* --- Hero Section --- */
.hero {
  padding: var(--section-pad-mobile) 0;
}

/* Split hero with blurred background */
.hero--split {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: var(--section-pad-mobile) 0;
  overflow: hidden;
}

/* Blurred background image layer */
.hero__bg-blur {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(10px);
  transform: scale(1.08); /* prevent blur edges from showing */
}

/* Very light tint overlay on top of blur */
.hero__bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.11);
}

/* Two-column inner layout — matches nav bounds exactly */
.hero__split-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-mobile);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Left column - text */
.hero__split-left {
  display: flex;
  flex-direction: column;
}

/* White content card */
.hero__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
  min-height: auto;
  height: 100%;
}

.hero__card .trust-badges {
  margin-top: 4px;
  flex-wrap: nowrap;
  gap: 20px;
}

.hero__card h1 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
}

.hero__card .text-large {
  font-size: 16px;
  line-height: 1.55;
}

.hero__card .text-small {
  font-size: 13px;
  color: var(--color-gray);
}

/* Right column - sharp photo (hidden on mobile) */
.hero__split-right {
  display: none;
  align-items: stretch;
  justify-content: center;
}

.hero__photo {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  object-fit: cover;
  object-position: center 60%;
}

/* Text color overrides for light background */
.hero__text--light h1 {
  color: var(--color-charcoal);
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 0;
}

.hero__text--light .text-large {
  color: var(--color-charcoal);
  margin-bottom: 0;
}

.hero__text--light .text-small {
  color: var(--color-gray);
  margin-bottom: 0;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.hero__ctas .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 100%;
  font-size: 13px;
  padding: 14px 16px;
}

.btn--secondary-light {
  border-color: var(--color-charcoal);
  color: var(--color-charcoal);
  background: transparent;
}

.btn--secondary-light:hover {
  background: rgba(0,0,0,0.06);
  border-color: var(--color-charcoal);
}

.trust-badges--light li {
  color: var(--color-gray);
}

.trust-badges--light .icon-check {
  color: var(--color-teal);
}

.hero__content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-mobile);
}

.hero__text h1 {
  margin-bottom: 16px;
}

.hero__text .text-large {
  margin-bottom: 8px;
}

.hero__text .text-small {
  margin-bottom: 24px;
}

.hero__image {
  display: none;
  border-radius: 12px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(135deg, var(--color-offwhite) 0%, var(--color-teal-tint) 100%);
  position: relative;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 14px;
  font-style: italic;
}

.trust-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 24px;
}

.trust-badges li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-gray);
}

.trust-badges .icon-check {
  color: var(--color-teal);
  flex-shrink: 0;
}

/* --- Savings Calculator --- */
.calculator {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.calculator h3 {
  margin-bottom: 24px;
  text-align: center;
}

.calculator__input-group {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.calculator__input-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-charcoal);
  white-space: nowrap;
  flex-shrink: 0;
}

.calculator__input-wrap {
  position: relative;
  flex: 1 1 auto;
}

.calculator__input-wrap .dollar-sign {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-gray);
}

.calculator__input-wrap input {
  width: 100%;
  height: 56px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 16px 12px 36px;
  font-family: var(--font-body);
  font-size: 20px;
  text-align: right;
  color: var(--color-charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.calculator__input-wrap input:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(58,191,191,0.15);
}

.calculator__input-wrap input::placeholder {
  color: var(--color-gray);
  font-size: 16px;
}

.calculator__results {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.calculator__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 16px 8px 0;
  font-size: 16px;
}

.calculator__row span:last-child {
  font-weight: 600;
}

.calculator__row--savings {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--color-border);
  font-size: 20px;
}

.calculator__row--savings span:last-child {
  color: var(--color-teal);
  font-weight: 700;
  font-size: 24px;
}

.calculator__row--savings span:last-child.pulse {
  animation: savingsPulse 300ms ease;
}

@keyframes savingsPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.calculator__cta {
  margin-top: 24px;
  text-align: center;
}

.calculator__fine-print {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--color-gray);
  text-wrap: balance;
}

.calculator__error {
  color: var(--color-error);
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
  display: none;
}

/* --- Pricing Cards --- */
.pricing-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.pricing-card__badge {
  min-height: 36px;
  margin-bottom: 12px;
}

.pricing-card__tier {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-card__who {
  font-size: 14px;
  color: var(--color-gray);
  font-style: italic;
  margin-bottom: 12px;
  min-height: 60px;
  text-wrap: balance;
}

.pricing-card__setup {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.pricing-card__price {
  margin-bottom: 12px;
}

.pricing-card__amount {
  font-size: 40px;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1;
}

.pricing-card__period {
  font-size: 16px;
  color: var(--color-gray);
}

/* Upfront total — what the seller actually pays at signup. Reads as a quiet
   factual line beneath the headline price; the bolded number anchors the eye
   while the parenthetical note explains the math without requiring a click. */
.pricing-card__upfront {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-charcoal);
  margin-bottom: 20px;
}

.pricing-card__upfront strong {
  font-weight: 700;
  color: var(--color-charcoal);
}

.pricing-card__upfront-note {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--color-gray);
  font-weight: 400;
}

.pricing-card__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.pricing-card__features {
  flex-grow: 1;
  margin-bottom: 24px;
  text-align: left;
}

.pricing-card .btn--full {
  margin-top: auto;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  padding: 4px 0;
  line-height: 1.5;
}

.pricing-card__features .check {
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Step / Process Cards --- */
.step-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.step-card__desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.6;
  text-align: left;
  text-wrap: pretty;
}

/* --- Social Proof / Trust --- */
.founder-block {
  text-align: center;
}

.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--color-offwhite), var(--color-teal-tint));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 12px;
  overflow: hidden;
}

.founder-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.founder-quote {
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* --- About Brand Section --- */
.about-brand {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.about-brand__photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e4e8ec, var(--color-teal-tint));
}

.about-brand__logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.about-brand__headshot {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.about-brand__caption {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-top: 12px;
  text-align: center;
}

.about-brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-brand__text h2 {
  font-size: 24px;
  margin-bottom: 0;
}

.about-brand__text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-brand__text .btn {
  align-self: center;
  font-size: 13px;
  padding: 12px 20px;
  min-width: auto;
}

/* Hide in-section Meet Founder CTA on mobile/tablet (mobile-cta-bar is visible instead) */
@media (max-width: 1023px) {
  .about-brand__text .btn {
    display: none;
  }
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 56px;
}

/* No global line -- each step (except last) draws its own connector */

.timeline__step {
  position: relative;
  margin-bottom: 48px;
}

.timeline__step:last-child {
  margin-bottom: 0;
}

/* Dashed line from this icon to the next (not on last step) */
.timeline__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 36px;
  bottom: -42px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-teal) 0,
    var(--color-teal) 6px,
    transparent 6px,
    transparent 12px
  );
}



.timeline__dot {
  position: absolute;
  left: -42px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-teal);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-teal);
}

.timeline__icon {
  position: absolute;
  left: -52px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-teal);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--color-offwhite);
  z-index: 1;
}


.timeline__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
}

.timeline__sub {
  font-size: 14px;
  color: var(--color-gray);
  font-style: italic;
  margin-top: 8px;
  text-wrap: pretty;
}

/* --- Two Column Comparison --- */
.comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.comparison__col h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison__col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

.comparison__col .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.icon--check {
  color: var(--color-teal);
}

.icon--x {
  color: #D95757;
}

/* --- Callout Block --- */
.callout {
  padding: var(--section-pad-mobile) 32px;
  border-radius: 12px;
  text-align: center;
}

.callout__icon {
  font-size: 48px;
  color: var(--color-charcoal);
}

.callout h3 {
  margin-bottom: 12px;
}

.callout p {
  max-width: 600px;
  margin: 0 auto 24px;
}

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-text h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: var(--color-gray);
  margin: 0;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item summary:hover {
  color: var(--color-teal);
}

.faq-item summary .faq-icon {
  color: var(--color-teal);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition-fast);
}

.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
}

/* --- Contact Info --- */
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.contact-item__icon {
  width: 24px;
  height: 24px;
  color: var(--color-teal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-item__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray);
  min-width: 100px;
}

.contact-item__value {
  font-size: 16px;
  color: var(--color-charcoal);
}

.contact-item__value a {
  color: var(--color-charcoal);
  text-decoration: none;
}

.contact-item__value a:hover {
  color: var(--color-teal);
}

/* --- Contact Form --- */
.contact-form-card {
  padding: 40px 32px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.contact-form label .required {
  color: var(--color-teal);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(58,191,191,0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-gray);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 479px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px 20px;
  }
}

/* --- Calendly Embed --- */
.calendly-inline-widget {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-white);
}

/* --- Value Props (Contact Page) --- */
.value-prop {
  text-align: center;
  padding: 32px 24px;
}

.value-prop__icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.value-prop h4 {
  margin-bottom: 8px;
}

/* --- What to Expect (Contact Page) --- */
.expect-grid > li {
  display: flex;
}

.expect-step {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--color-offwhite);
  border-radius: 12px;
  height: 100%;
  width: 100%;
}

.expect-step__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.expect-step__number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-teal);
  line-height: 1;
  flex-shrink: 0;
}

.expect-step__time {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-teal);
}

/* --- Commission Anchor Bar --- */
.anchor-bar {
  background-color: var(--color-teal-tint);
  padding: 12px 0;
  text-align: center;
}

.anchor-bar p {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0;
}

/* --- Commitment Callout Bar ---
   Sits beneath the pricing grid. Same visual family as .anchor-bar (teal-tint,
   centered, rounded) but with a card container so it reads as a distinct block
   rather than a section-width strip. */
.commitment-bar {
  background-color: var(--color-teal-tint);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px 28px;
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.commitment-bar__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-teal);
}

.commitment-bar__text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin: 0;
  text-align: left;
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .commitment-bar {
    padding: 24px 40px;
  }
  .commitment-bar__text {
    font-size: 16px;
  }
}

/* --- Add-On Cards --- */
.addon-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.addon-card .btn {
  margin-top: auto;
}

.addon-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-bottom: 8px;
}

.addon-card__icon {
  flex-shrink: 0;
}

/* Title sized down vs. global h4 (20px) to fit narrower 4-up columns.
   Allow wrap to two lines; min-height on header keeps alignment across cards. */
.addon-card h4 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 0;
}

.addon-card__rate {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 16px;
  min-height: 32px;
}

.addon-card__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-bottom: 16px;
}

/* Min-heights pin internal rows to the same vertical position across
   all four add-on cards so description tops align horizontally. */
.addon-card__desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 132px;
}

/* Visual Production sub-rate list — short intro + 2 bulleted sub-rates inside __desc. */
.addon-card__intro {
  margin: 0 0 8px 0;
}

.addon-card__sublist {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.addon-card__sublist li {
  margin-bottom: 4px;
}

.addon-card__sublist li:last-child {
  margin-bottom: 0;
}

.addon-card__sublist strong {
  color: var(--color-charcoal);
  font-weight: 600;
}

.addon-card__disclaimer {
  font-size: 12px;
  color: var(--color-gray);
  font-style: italic;
  margin-bottom: 16px;
  text-wrap: balance;
  min-height: 64px;
}

/* On mobile (single-column stack) drop the row-locking heights so cards
   collapse to natural flow. Empty disclaimer space is only meaningful in
   the multi-column grid. */
@media (max-width: 767px) {
  .addon-card h4 {
    white-space: normal;
  }
  .addon-card__header,
  .addon-card__rate,
  .addon-card__desc,
  .addon-card__disclaimer {
    min-height: 0;
  }
}

/* --- Upsell list --- */
.upsell-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.upsell-list li {
  font-size: 14px;
  color: var(--color-gray);
}

.upsell-list li strong {
  color: var(--color-charcoal);
}

/* --- Footer --- */
.footer {
  background-color: var(--color-charcoal);
  padding: 0 0 32px;
  color: var(--color-white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-mobile);
}

/* Mobile spacing: Contact (non-collapsible) sits beneath three bordered
   collapsibles, so it needs its own breathing room. */
.footer__grid > .footer__col:not(.footer__col--collapsible) {
  padding-top: 24px;
}

.footer__col h4 {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--color-dark-bg-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer__col a:hover {
  color: var(--color-white);
}

.footer__col p {
  font-size: 14px;
  color: var(--color-dark-bg-muted);
  line-height: 1.6;
}

/* Collapsible footer columns (mobile accordion) --- */
/* Shared baseline: strip the native disclosure triangle on all viewports. */
.footer__col--collapsible > summary {
  list-style: none;
  cursor: pointer;
}

.footer__col--collapsible > summary::-webkit-details-marker {
  display: none;
}

.footer__col--collapsible > summary::marker {
  display: none;
  content: '';
}

.footer__col--collapsible > summary > h4 {
  margin-bottom: 0;
}

/* Mobile accordion (base: <768px) --- */
.footer__col--collapsible {
  border-bottom: 1px solid #444444;
}

.footer__col--collapsible > summary {
  position: relative;
  padding: 16px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.footer__col--collapsible > summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  color: var(--color-dark-bg-muted);
  transition: transform var(--transition-fast);
}

.footer__col--collapsible[open] > summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.footer__col--collapsible > .footer__links {
  padding-bottom: 16px;
}

.footer__col--collapsible > summary:hover > h4 {
  color: var(--color-teal);
  transition: color var(--transition-fast);
}

.footer__bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 24px var(--page-pad-mobile) 0;
  border-top: 1px solid #444444;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__copyright {
  font-size: 14px;
  color: var(--color-dark-bg-muted);
  text-wrap: balance;
}

.footer__disclaimer {
  font-size: 12px;
  text-wrap: pretty;
  color: var(--color-gray);
  max-width: 600px;
  line-height: 1.6;
}

/* Add bottom padding for mobile CTA bar */
body {
  padding-bottom: 56px;
}

/* ============================================
   Responsive - Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gutter-desktop);
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gutter-desktop);
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gutter-desktop);
  }

  .comparison {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .about-brand {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
  }

  .about-brand__photo {
    max-width: none;
    padding: 5%;
  }

  .about-brand__text h2 {
    font-size: 24px;
  }

  .about-brand__text .btn {
    align-self: flex-start;
    font-size: 14px;
    padding: 12px 24px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Disable accordion visuals at tablet+; JS opens every collapsible so
     content is always visible. Columns read as a normal grid again. */
  .footer__col--collapsible {
    border-bottom: none;
  }

  .footer__col--collapsible > summary {
    cursor: default;
    padding: 0;
    min-height: 0;
    display: block;
  }

  .footer__col--collapsible > summary::after {
    display: none;
  }

  .footer__col--collapsible > summary > h4 {
    margin-bottom: 16px;
  }

  .footer__col--collapsible > summary:hover > h4 {
    color: var(--color-white);
  }

  .footer__col--collapsible > .footer__links {
    padding-bottom: 0;
  }

  .footer__grid > .footer__col:not(.footer__col--collapsible) {
    padding-top: 0;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .container {
    padding: 0 var(--page-pad-desktop);
  }

  .container--narrow {
    padding: 0 var(--page-pad-desktop);
  }

  /* FAQ container at desktop: 40px side padding (vs 64px on narrow) reclaims
     ~48px of content width inside the same 720px max-width, so the longest
     pricing FAQ summary clears 600px and renders on one line. */
  .container--faq {
    padding: 0 40px;
  }


  .desktop-only {
    display: inline;
  }

  .nav-lockup__name {
    font-size: 11px;
  }

  .nav-lockup__tagline {
    font-size: 10px;
  }
}

/* ============================================
   Responsive - Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .section {
    padding: var(--section-pad-desktop) 0;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  /* Nav desktop */
  .nav {
    height: 72px;
  }

  .nav__links {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__mobile-menu {
    display: none;
  }

  .mobile-cta-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  /* Hero two-column */
  .hero--split {
    height: calc(100vh - 72px);
    min-height: 640px;
    padding: 0;
  }

  .hero__split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
  }

  .hero__split-right {
    display: flex;
  }

  .hero__card {
    padding: 36px 40px;
    min-height: 380px;
  }

  .hero__ctas {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero__ctas .btn {
    width: auto;
    font-size: 16px;
    padding: 14px 28px;
  }

  .hero__content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: center;
  }

  .hero__image {
    display: block;
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer {
    padding: 0 0 32px;
  }

  /* Featured pricing card scale */
  .card--featured-scale {
    transform: scale(1.02);
  }

  .card--featured-scale:hover {
    transform: scale(1.02) translateY(-2px);
  }

  .about-brand__text h2 {
    font-size: 28px;
  }

  .about-brand__text .btn {
    font-size: 14px;
    padding: 14px 28px;
  }
}

/* ============================================
   Responsive - Mobile adjustments (below 480px)
   ============================================ */
@media (max-width: 479px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .text-large {
    font-size: 16px;
  }

  .card {
    padding: 24px;
  }

  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 13px;
    padding: 14px 16px;
    white-space: nowrap;
  }

  .btn-group {
    flex-direction: column;
  }

  .calculator {
    padding: 24px 20px;
  }

  .pricing-card__amount {
    font-size: 32px;
  }

  .nav__inner {
    padding: 0 16px;
  }

  .nav {
    height: 64px;
  }

  .calculator__input-group {
    flex-direction: column;
    align-items: stretch;
  }

  .step-card__title {
    justify-content: flex-start;
    text-align: left;
  }

  .pricing-card__badge:empty {
    display: none;
  }

  .hero__card .trust-badges {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Short outcome sentences inside a paragraph: promote to their own line on tight mobile */
  .mobile-break-before {
    display: block;
  }
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Centered narrow content block */
.text-narrow {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.text-narrow--lg {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.text-narrow--sm {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Heading styled as body h3 (for contact page subheadings) */
.h3-body {
  font-size: 24px;
  font-family: var(--font-body);
  font-weight: 600;
}

.text-italic {
  font-style: italic;
}

.btn-group--center {
  justify-content: center;
}

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.desktop-only {
  display: none;
}

/* --- Focus States (Accessibility) --- */
.nav__logo:focus-visible,
.nav__links a:focus-visible,
.nav__hamburger:focus-visible,
.nav__mobile-menu a:focus-visible,
.mobile-cta-bar a:focus-visible,
.faq-item summary:focus-visible,
.footer a:focus-visible,
.active:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

.btn--primary:focus-visible,
.btn--secondary:focus-visible,
.btn--ghost:focus-visible,
.btn--ghost-dark:focus-visible,
.btn--dark-bg:focus-visible,
.btn--nav:focus-visible,
.btn--full:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 2px;
}

/* --- Reduced Motion (Accessibility) --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
