/* ============================================================
   LUBAO LLC — Main Stylesheet
   Brand System v2 · February 2026
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  /* Foundation */
  --charcoal:        #1C2127;
  --charcoal-mid:    #272D35;
  --charcoal-light:  #323940;
  --slate:           #495462;
  --medium-gray:     #7E8894;
  --cool-gray:       #A8B0B9;

  /* Surface */
  --light-gray:      #E9ECF0;
  --off-white:       #F5F6F8;
  --white:           #FFFFFF;

  /* Accent */
  --accent:          #1A8A6E;
  --accent-dark:     #147259;
  --accent-light:    #22A884;
  --accent-pale:     #E6F5F0;
  --accent-glow:     rgba(26, 138, 110, 0.12);

  /* Warm secondary */
  --warm:            #D4854A;
  --warm-pale:       #FDF3EB;

  /* Status */
  --success:         #2E8B57;
  --error:           #C54B4B;
  --warning:         #D4944A;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 120px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration: 0.2s;
}


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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--accent-dark); }

::selection {
  background: var(--accent-pale);
  color: var(--charcoal);
}


/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: 720px;
}

.container--wide {
  max-width: 1280px;
}

.section {
  padding: var(--space-5xl) 0 var(--space-4xl);
}

.section--sm {
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--white {
  background: var(--white);
}


/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
}

.h1 {
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.h1 strong { font-weight: 600; }

.h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 300;
}
.h2 strong { font-weight: 600; }

.h3 {
  font-size: 20px;
  font-weight: 600;
}

.h4 {
  font-size: 17px;
  font-weight: 600;
}

.overline {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section--dark .overline { color: var(--accent-light); }

.subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
  max-width: 600px;
}

.section--dark .subtitle { color: var(--medium-gray); }

.body-lg {
  font-size: 18px;
  line-height: 1.7;
}

.body-sm {
  font-size: 14px;
  line-height: 1.6;
}

.caption {
  font-size: 13px;
  color: var(--medium-gray);
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-slate { color: var(--slate); }
.text-muted { color: var(--medium-gray); }
.text-white { color: var(--white); }
.mx-auto { margin-left: auto; margin-right: auto; }


/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28, 33, 39, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 var(--space-lg);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo svg {
  height: 24px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--white);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--cool-gray);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--duration) var(--ease);
  padding: 4px 0;
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__ctas {
  display: flex;
  gap: 10px;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}

.nav__toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  padding: var(--space-xl);
  flex-direction: column;
  gap: var(--space-md);
  z-index: 999;
}

.nav__mobile-menu.is-open {
  display: flex;
}

.nav__mobile-menu a {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--cool-gray);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--charcoal-light);
}

.nav__mobile-menu a:hover { color: var(--white); }

.nav__mobile-menu .btn {
  margin-top: var(--space-md);
  text-align: center;
  justify-content: center;
}


/* === BUTTONS === */
.btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.btn--secondary {
  background: var(--charcoal);
  color: var(--white);
}
.btn--secondary:hover {
  background: var(--charcoal-mid);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--light-gray);
}
.btn--outline:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-dark);
  padding: 12px 14px;
}
.btn--ghost:hover { color: var(--charcoal); }
.btn--ghost svg { transition: transform var(--duration) var(--ease); }
.btn--ghost:hover svg { transform: translateX(3px); }

.btn--sm {
  font-size: 13px;
  padding: 10px 20px;
}

.btn--lg {
  font-size: 15px;
  padding: 14px 32px;
}

.btn--nav {
  font-size: 12px;
  padding: 8px 18px;
  border-radius: 7px;
}

.btn--full {
  width: 100%;
}


/* === HERO === */
.hero {
  padding-top: calc(64px + var(--space-5xl));
  padding-bottom: var(--space-5xl);
}

.hero__tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: var(--space-xl);
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: var(--space-xl);
}

.hero__trust {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--light-gray);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--medium-gray);
}

.hero__trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}


/* === PATH CARDS (Schedule / Sign Up) === */
.path-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.path-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  background: var(--white);
  text-decoration: none;
  color: var(--charcoal);
  transition: all var(--duration) var(--ease);
}

.path-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-glow);
  color: var(--charcoal);
}

.path-card--active {
  border-color: var(--accent);
  background: var(--accent-pale);
}

.path-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.path-card__icon--green { background: var(--accent); }
.path-card__icon--dark { background: var(--charcoal); }

.path-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.path-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.path-card__desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}


/* === STEPS (How It Works) === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: var(--light-gray);
}

.step__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.step__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step__desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto;
}


/* === VALUE PROPS === */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--duration) var(--ease);
}

.value-card:hover {
  border-color: var(--accent);
}

.value-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.value-card__icon svg {
  width: 22px;
  height: 22px;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.value-card__desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}


/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:first-child {
  border-top: 1px solid var(--light-gray);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: var(--space-md);
  transition: color var(--duration) var(--ease);
}

.faq-question:hover { color: var(--accent); }

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--medium-gray);
  transition: transform 0.3s var(--ease);
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-answer__inner {
  padding-bottom: var(--space-lg);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 640px;
}

.faq-answer__inner p + p {
  margin-top: var(--space-md);
}


/* === MULTI-STEP FORM === */
.form-container {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.form-progress {
  display: flex;
  border-bottom: 1px solid var(--light-gray);
}

.form-progress__step {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--medium-gray);
  background: var(--off-white);
  border-right: 1px solid var(--light-gray);
  transition: all var(--duration) var(--ease);
}

.form-progress__step:last-child { border-right: none; }

.form-progress__step.is-active {
  background: var(--white);
  color: var(--charcoal);
}

.form-progress__step.is-complete {
  background: var(--accent-pale);
  color: var(--accent-dark);
}

.form-progress__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  background: var(--light-gray);
  color: var(--medium-gray);
  flex-shrink: 0;
}

.form-progress__step.is-active .form-progress__num {
  background: var(--accent);
  color: var(--white);
}

.form-progress__step.is-complete .form-progress__num {
  background: var(--accent);
  color: var(--white);
}

.form-step {
  display: none;
  padding: var(--space-2xl);
}

.form-step.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-step__desc {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: var(--space-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.form-label .required {
  color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--duration) var(--ease);
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--cool-gray);
}

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: var(--error);
}

.form-error {
  font-size: 12px;
  color: var(--error);
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237E8894' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  margin-top: var(--space-xl);
  border-top: 1px solid var(--light-gray);
}

.form-actions .btn-back {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--medium-gray);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--duration) var(--ease);
}

.form-actions .btn-back:hover { color: var(--charcoal); }


/* === REVIEW STEP === */
.review-section {
  margin-bottom: var(--space-xl);
}

.review-section__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--light-gray);
}

.review-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-size: 15px;
}

.review-row dt {
  color: var(--medium-gray);
  font-weight: 400;
}

.review-row dd {
  color: var(--charcoal);
  font-weight: 500;
  text-align: right;
}


/* === FORM SUCCESS === */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-3xl) var(--space-2xl);
}

.form-success.is-active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.form-success__icon svg {
  width: 32px;
  height: 32px;
}

.form-success__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.form-success__desc {
  font-size: 16px;
  color: var(--slate);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.6;
}


/* === SIGNUP FORM – EXTENDED COMPONENTS === */

/* Fieldsets */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
}

.form-fieldset__legend {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-fieldset__desc {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: var(--space-md);
}

.form-hint-inline {
  font-weight: 400;
  color: var(--medium-gray);
  font-size: 13px;
}

.form-hint {
  font-size: 12px;
  color: var(--medium-gray);
  font-style: italic;
  margin-top: 2px;
}

/* Radio Cards (pricing program) */
.radio-card-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--space-md) var(--space-lg);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  background: var(--white);
}

.radio-card:hover {
  border-color: var(--cool-gray);
}

.radio-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-pale);
}

.radio-card input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.radio-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.radio-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.radio-card__desc {
  font-size: 14px;
  color: var(--slate);
}

.radio-card__note {
  font-size: 12px;
  color: var(--warning);
  font-style: italic;
  margin-top: 2px;
}

/* Inline Radio + Checkbox */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.radio-group--inline {
  flex-direction: row;
  gap: var(--space-lg);
}

.radio-inline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--charcoal);
}

.radio-inline input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.radio-inline em.form-hint {
  font-size: 13px;
  color: var(--medium-gray);
}

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-lg);
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--charcoal);
}

.checkbox-item input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.checkbox-item em {
  font-size: 12px;
  color: var(--medium-gray);
  font-style: normal;
  display: block;
}

.checkbox-item--compact {
  font-size: 13px;
  font-weight: 500;
}

.checkbox-section {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--light-gray);
}

.checkbox-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.checkbox-section__heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: var(--space-sm);
}

/* Month Grid */
.month-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}

/* Percent Row */
.percent-row {
  display: flex;
  align-items: flex-end;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.percent-field {
  flex: 1;
  min-width: 100px;
}

.percent-field__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--medium-gray);
  display: block;
  margin-bottom: 4px;
}

.percent-field__input {
  position: relative;
}

.percent-field__input .form-input {
  padding-right: 30px;
}

.percent-sign {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--medium-gray);
  pointer-events: none;
}

.percent-plus,
.percent-equals {
  font-size: 18px;
  font-weight: 600;
  color: var(--medium-gray);
  padding-bottom: 10px;
}

.percent-total {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 10px;
  min-width: 50px;
  color: var(--medium-gray);
}

.percent-total.is-valid {
  color: var(--success);
}

.percent-total.is-invalid {
  color: var(--error);
}

/* Dollar Prefix Input */
.input-with-prefix {
  position: relative;
}

.input-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--medium-gray);
  pointer-events: none;
}

.form-input--prefixed {
  padding-left: 28px;
}

/* Conditional Section */
.conditional-section {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--accent-pale);
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Split fields (state + zip) */
.form-group--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Toggle section */
.form-toggle-section {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--light-gray);
}


/* === CONTACT CARD === */
.contact-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.contact-card__item:not(:last-child) {
  border-bottom: 1px solid var(--light-gray);
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-pale);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 20px;
  height: 20px;
}

.contact-card__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--medium-gray);
  margin-bottom: 2px;
}

.contact-card__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
}

.contact-card__value a {
  color: var(--accent);
  text-decoration: none;
}

.contact-card__value a:hover {
  text-decoration: underline;
}


/* === SCHEDULE PAGE === */
.schedule-embed {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-placeholder {
  text-align: center;
  max-width: 400px;
}

.schedule-placeholder__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-pale);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.schedule-placeholder__icon svg {
  width: 28px;
  height: 28px;
}


/* === CTA BANNER === */
.cta-banner {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner__title strong { font-weight: 600; }

.cta-banner__desc {
  font-size: 16px;
  color: var(--medium-gray);
  margin-bottom: var(--space-xl);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}


/* === FOOTER === */
.footer {
  background: var(--charcoal);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-top: 1px solid var(--charcoal-light);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.footer__brand svg { height: 22px; width: auto; }

.footer__brand-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
}

.footer__tagline {
  font-size: 14px;
  color: var(--medium-gray);
  max-width: 280px;
  line-height: 1.5;
}

.footer__links {
  display: flex;
  gap: var(--space-2xl);
}

.footer__link-group h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cool-gray);
  margin-bottom: var(--space-md);
}

.footer__link-group a {
  display: block;
  font-size: 14px;
  color: var(--medium-gray);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--duration) var(--ease);
}

.footer__link-group a:hover { color: var(--white); }

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--charcoal-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
}

.footer__copy {
  font-size: 13px;
  color: var(--medium-gray);
  line-height: 1.6;
}

.footer__legal-links {
  display: flex;
  gap: var(--space-lg);
  flex-shrink: 0;
}

.footer__legal-links a {
  font-size: 13px;
  color: var(--medium-gray);
  text-decoration: none;
}

.footer__legal-links a:hover { color: var(--white); }

/* Endorsement statement */
.footer__endorsement {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-top: var(--space-lg);
  max-width: 800px;
}


/* === PAGE HEADER (interior pages) === */
.page-header {
  padding-top: calc(64px + var(--space-3xl));
  padding-bottom: var(--space-2xl);
  background: var(--charcoal);
  text-align: center;
}

.page-header .overline {
  color: var(--accent-light);
  margin-bottom: var(--space-md);
}

.page-header .h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-header .subtitle {
  color: var(--medium-gray);
  margin: 0 auto;
}


/* === PROSE (Privacy Policy, Terms) === */
.prose {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin: var(--space-2xl) 0 var(--space-md);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin: var(--space-xl) 0 var(--space-sm);
}

.prose p {
  margin-bottom: var(--space-md);
}

.prose ul, .prose ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.prose li {
  margin-bottom: var(--space-sm);
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
}

.prose strong {
  color: var(--charcoal);
  font-weight: 600;
}


/* === UTILITIES === */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }


/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav__links,
  .nav__ctas {
    display: none;
  }
  .nav__toggle {
    display: block;
  }

  .hero {
    padding-top: calc(64px + var(--space-3xl));
    padding-bottom: var(--space-3xl);
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn { width: 100%; justify-content: center; }

  .hero__trust {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .steps {
    grid-template-columns: 1fr;
  }
  .step:not(:last-child)::after { display: none; }
  .step {
    text-align: left;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--light-gray);
  }
  .step:last-child { border-bottom: none; }
  .step__desc { margin: 0; }

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

  .form-progress {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .form-progress__step {
    border-right: 1px solid var(--light-gray);
    border-bottom: none;
    white-space: nowrap;
    min-width: 0;
    flex: 0 0 auto;
  }
  .form-progress__step:last-child { border-right: none; }

  .form-step { padding: var(--space-lg); }

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

  .form-actions {
    flex-direction: column-reverse;
    gap: var(--space-md);
  }
  .form-actions .btn { width: 100%; justify-content: center; }

  .checkbox-grid { grid-template-columns: 1fr; }
  .month-grid { grid-template-columns: repeat(4, 1fr); }
  .percent-row { flex-direction: column; gap: var(--space-md); }
  .percent-plus, .percent-equals { display: none; }
  .percent-total { align-self: flex-end; }
  .form-group--split { grid-template-columns: 1fr 1fr; }
  .form-progress__step { font-size: 12px; padding: var(--space-sm) var(--space-md); }

  .cta-banner {
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-lg);
  }
  .cta-banner__btns {
    flex-direction: column;
  }

  .footer__inner {
    flex-direction: column;
  }
  .footer__links {
    flex-direction: column;
    gap: var(--space-xl);
  }
  .footer__bottom {
    flex-direction: column;
  }
  .footer__legal-links {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .page-header {
    padding-top: calc(64px + var(--space-2xl));
  }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-3xl) 0 var(--space-2xl); }
  .month-grid { grid-template-columns: repeat(3, 1fr); }
  .radio-card { padding: var(--space-sm) var(--space-md); }
}

/* ============================================================
   SOLUTION PAGES — Shared Styles
   Programs · Products · Equipment
   ============================================================ */

/* Page Hero (shorter than homepage) */
.page-hero {
  padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
  background: var(--off-white);
}
.page-hero__overline {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--space-sm);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300; color: var(--charcoal);
  line-height: 1.2; margin-bottom: var(--space-md);
}
.page-hero__title strong { font-weight: 600; }
.page-hero__subtitle {
  font-size: 17px; color: var(--slate);
  line-height: 1.6; max-width: 640px;
}

/* Program Cards */
.program-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: border-color var(--duration) var(--ease);
}
.program-card:hover { border-color: var(--accent); }
.program-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(26,138,110,0.08);
}
.program-card__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--white); background: var(--accent);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: var(--space-md);
}
.program-card__name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  margin-bottom: 4px;
}
.program-card__savings {
  font-size: 15px; color: var(--accent); font-weight: 500;
  margin-bottom: var(--space-lg);
}
.program-card__desc {
  font-size: 15px; color: var(--slate); line-height: 1.65;
  margin-bottom: var(--space-lg);
}
.program-card__details {
  list-style: none; padding: 0; margin: 0 0 var(--space-lg);
}
.program-card__details li {
  font-size: 14px; color: var(--slate); line-height: 1.5;
  padding: 6px 0 6px 24px; position: relative;
}
.program-card__details li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent-pale);
  border: 2px solid var(--accent);
}
.program-card__meta {
  font-size: 13px; color: var(--medium-gray);
  padding-top: var(--space-md);
  border-top: 1px solid var(--light-gray);
}

/* Product Cards */
.product-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex; flex-direction: column;
  transition: border-color var(--duration) var(--ease);
}
.product-card:hover { border-color: var(--accent); }
.product-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-pale); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
}
.product-card__icon svg { width: 24px; height: 24px; }
.product-card__name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  margin-bottom: 4px;
}
.product-card__tagline {
  font-size: 13px; color: var(--accent); font-weight: 500;
  margin-bottom: var(--space-md);
}
.product-card__desc {
  font-size: 14px; color: var(--slate); line-height: 1.6;
  margin-bottom: var(--space-lg); flex-grow: 1;
}
.product-card__features {
  list-style: none; padding: 0; margin: 0 0 var(--space-lg);
}
.product-card__features li {
  font-size: 13px; color: var(--slate); line-height: 1.4;
  padding: 5px 0 5px 20px; position: relative;
}
.product-card__features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent); font-weight: 600; font-size: 12px;
}
.product-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: var(--space-md);
  border-top: 1px solid var(--light-gray);
}
.product-card__tag {
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 12px;
  background: var(--off-white); color: var(--slate);
}
.product-card__tag--accent {
  background: var(--accent-pale); color: var(--accent);
}

/* Device Cards */
.device-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: border-color var(--duration) var(--ease);
}
.device-card:hover { border-color: var(--accent); }
.device-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--off-white); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-md);
}
.device-card__icon svg { width: 28px; height: 28px; }
.device-card__name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  margin-bottom: 2px;
}
.device-card__type {
  font-size: 12px; color: var(--accent); font-weight: 500;
  margin-bottom: var(--space-sm);
}
.device-card__specs {
  font-size: 12px; color: var(--medium-gray); line-height: 1.5;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

/* Comparison Table */
/* === PLATFORM OVERVIEW GRID === */
.platform-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.platform-category__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--light-gray);
}

.platform-category__title svg {
  color: var(--accent);
  flex-shrink: 0;
}

.platform-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.platform-tile {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

a.platform-tile:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(26,138,110,0.08);
}

.platform-tile strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.platform-tile span {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .platform-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .platform-tiles {
    grid-template-columns: 1fr;
  }
}

.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  text-align: left; padding: 12px 16px;
  background: var(--off-white); color: var(--charcoal);
  border-bottom: 2px solid var(--light-gray);
}
.compare-table td {
  padding: 10px 16px; border-bottom: 1px solid var(--light-gray);
  color: var(--slate);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--accent); font-weight: 600; }
.compare-table .dash { color: var(--cool-gray); }

/* Info Callout */
.info-callout {
  background: var(--accent-pale);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg);
  font-size: 14px; color: var(--slate); line-height: 1.6;
}
.info-callout strong { color: var(--charcoal); }

/* Dark Feature Banner */
.dark-banner {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}
.dark-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 300; color: var(--white);
  line-height: 1.3; margin-bottom: var(--space-md);
}
.dark-banner h3 strong { font-weight: 600; }
.dark-banner p { font-size: 15px; color: var(--cool-gray); line-height: 1.65; }
.dark-banner .check-list { list-style: none; padding: 0; margin: var(--space-md) 0 0; }
.dark-banner .check-list li {
  font-size: 14px; color: var(--cool-gray); line-height: 1.4;
  padding: 5px 0 5px 24px; position: relative;
}
.dark-banner .check-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent-light); font-weight: 600;
}

/* Section Divider */
.section-divider {
  display: flex; align-items: center; gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.section-divider__line { flex: 1; height: 1px; background: var(--light-gray); }
.section-divider__label {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--medium-gray);
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .dark-banner { padding: var(--space-lg); }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   ENHANCED SIGN-UP FORM — Additional Styles
   ============================================================ */

/* --- Radio Card Selectors --- */
.form-radio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.form-radio-card {
  position: relative;
  cursor: pointer;
}

.form-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-radio-card__face {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--duration) var(--ease);
}

.form-radio-card input:checked + .form-radio-card__face {
  border-color: var(--accent);
  background: var(--accent-pale);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-radio-card input:focus-visible + .form-radio-card__face {
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-radio-card__face:hover {
  border-color: var(--cool-gray);
}

.form-radio-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.form-radio-card__desc {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.4;
}

/* --- Sub-radio (inline radios) --- */
.form-inline-radios {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.form-inline-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--charcoal);
}

.form-inline-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* --- Checkbox Groups --- */
.form-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm) var(--space-md);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--charcoal);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease);
}

.form-check:hover {
  background: var(--off-white);
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-check__label {
  line-height: 1.4;
}

.form-check__label small {
  display: block;
  font-size: 12px;
  color: var(--medium-gray);
  margin-top: 2px;
}

/* --- Conditional / collapsible sections --- */
.form-conditional {
  display: none;
  margin-top: var(--space-md);
  padding: var(--space-lg);
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  animation: fadeIn 0.25s ease;
}

.form-conditional.is-visible {
  display: block;
}

/* --- Hint text --- */
.form-hint {
  font-size: 12px;
  color: var(--medium-gray);
  line-height: 1.4;
  margin-top: 2px;
}

/* --- Fieldset / Section within a step --- */
.form-fieldset {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--light-gray);
}

.form-fieldset:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-fieldset__legend {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.form-fieldset__desc {
  font-size: 13px;
  color: var(--medium-gray);
  margin-bottom: var(--space-lg);
}

/* --- Percentage group --- */
.pct-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
  align-items: end;
}

.pct-total {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 0;
  text-align: center;
}

.pct-total.is-valid { color: var(--success); }
.pct-total.is-error { color: var(--error); }

/* --- Yes/No toggle --- */
.form-yn {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
}

.form-yn label {
  padding: 9px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--medium-gray);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  border-right: 1px solid var(--light-gray);
}

.form-yn label:last-child { border-right: none; }

.form-yn input { position: absolute; opacity: 0; width: 0; height: 0; }

.form-yn input:checked + span,
.form-yn label:has(input:checked) {
  background: var(--accent);
  color: var(--white);
}

/* --- Month checkboxes --- */
.month-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}

.month-check {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
}

.month-check input {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

/* --- Owner section repeater --- */
.owner-block {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.owner-block__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--charcoal);
}

/* --- Secure field indicator --- */
.form-label--secure::after {
  content: '🔒';
  font-size: 11px;
  margin-left: 4px;
}

/* --- Progress bar with 7 steps adjustments --- */
.form-progress--7 .form-progress__step {
  padding: var(--space-sm) var(--space-md);
  font-size: 12px;
  gap: 6px;
}

.form-progress--7 .form-progress__num {
  width: 22px;
  height: 22px;
  font-size: 11px;
}

/* --- Equipment category sub-labels --- */
.equip-category {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.equip-category:first-child {
  margin-top: 0;
}

/* --- Wider form container for more fields --- */
.container--form {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

/* --- Address sub-grid --- */
.form-addr-row {
  display: grid;
  grid-template-columns: 1fr 140px 100px;
  gap: var(--space-md);
}

/* --- Mobile overrides for new components --- */
@media (max-width: 768px) {
  .form-radio-cards {
    grid-template-columns: 1fr;
  }
  .pct-row {
    grid-template-columns: 1fr;
  }
  .month-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .form-addr-row {
    grid-template-columns: 1fr;
  }
  .form-check-grid {
    grid-template-columns: 1fr;
  }
  .form-progress--7 .form-progress__step span:not(.form-progress__num) {
    display: none;
  }
  .form-progress--7 .form-progress__step {
    justify-content: center;
    padding: var(--space-sm);
  }
  .form-inline-radios {
    flex-direction: column;
  }
  .owner-block {
    padding: var(--space-lg);
  }
}
