/* ============================================
   ON THE DAY — Marketing Pages
   Clean & Professional + Warm & Human
   Premium visual polish
   ============================================ */

/* ── Light Hero ── */
.hero.hero--light {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--warm-bg);
  color: var(--warm-text);
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 0;
}

/* Subtle mesh gradient background */
.hero.hero--light::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 30%, rgba(34, 197, 94, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(52, 211, 153, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Dot pattern overlay for texture */
.hero.hero--light::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.hero--light .hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-20) 0 var(--space-16);
}

.hero--light .hero__content {
  max-width: 100%;
}

.hero--light .hero__title {
  color: var(--warm-text);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: var(--space-6);
  font-weight: 700;
}

.hero--light .hero__title span {
  background: linear-gradient(135deg, var(--otd-green-600) 0%, var(--otd-green-500) 40%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero--light .hero__description {
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 520px;
  color: var(--warm-text-secondary);
}

.hero--light .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--otd-green-50), #ecfdf5);
  color: var(--otd-green-700);
  border: 1px solid var(--otd-green-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-5);
  letter-spacing: 0.01em;
}

.hero--light .hero__badge i {
  color: var(--otd-green-500);
}

.hero--light .hero__buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero--light .hero__stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--warm-border);
}

.hero--light .hero__stat {
  text-align: left;
}

.hero--light .hero__stat-value {
  color: var(--otd-green-600);
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  letter-spacing: -0.03em;
}

.hero--light .hero__stat-label {
  color: var(--warm-text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
  font-weight: var(--font-medium);
}

.hero--light .hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Hero Buttons on Light */
.hero--light .btn.btn--primary {
  background: linear-gradient(135deg, var(--otd-green-500) 0%, var(--otd-green-600) 100%);
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.3), 0 1px 3px rgba(0,0,0,0.08);
  border: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero--light .btn.btn--primary:hover {
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4), 0 2px 6px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.hero--light .btn.btn--secondary {
  background: var(--white);
  color: var(--warm-text);
  border: 1.5px solid var(--warm-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.hero--light .btn.btn--secondary:hover {
  background: var(--white);
  border-color: var(--otd-green-300);
  color: var(--otd-green-700);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ── Trust Strip ── */
.trust-strip {
  background: linear-gradient(180deg, var(--warm-green-strip), #f0fdf4);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--otd-green-100);
  border-bottom: 1px solid var(--otd-green-100);
  position: relative;
}

.trust-strip__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--otd-green-800);
  white-space: nowrap;
}

.trust-strip__item i {
  color: var(--otd-green-500);
  font-size: 16px;
}

/* ── Section Variants ── */
.section.section--warm-alt {
  background: var(--warm-bg-alt);
  color: var(--warm-text);
  position: relative;
}

/* Subtle dot pattern on alt sections */
.section.section--warm-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.section.section--warm-green {
  background: linear-gradient(180deg, #f0fdf4 0%, var(--warm-green-strip) 50%, #f0fdf4 100%);
  position: relative;
}

.section.section--green-cta {
  background: linear-gradient(135deg, #166534 0%, var(--otd-green-700) 40%, #059669 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decorative circles on CTA */
.section.section--green-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.section.section--green-cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

/* ── Problem Section ── */
.problem-text {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto var(--space-14);
  text-align: center;
  color: var(--warm-text);
}

.problem-text .text-danger {
  background: linear-gradient(135deg, #dc2626, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pain Point Cards (light) */
.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Green accent top bar */
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--otd-green-400), var(--otd-green-500));
  opacity: 0;
  transition: opacity 300ms ease;
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
}

.pain-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--otd-green-50), #ecfdf5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--otd-green-600);
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
  border: 1px solid var(--otd-green-100);
}

.pain-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
  color: var(--warm-text);
}

.pain-card__description {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-14);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--warm-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.03em;
}

.section-header .lead {
  color: var(--warm-text-secondary);
  font-size: var(--text-lg);
  max-width: 550px;
  margin: 0 auto;
}

/* ── How It Works (3-card grid) ── */
.how-it-works__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Connecting line between number circles — centered at circle midpoint */
.how-it-works__cards::before {
  content: '';
  position: absolute;
  /* 68px = card padding-top (40px) + half circle height (28px) */
  top: 68px;
  /* Start/end at center of first/last column */
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--otd-green-200), var(--otd-green-400), var(--otd-green-200));
  z-index: 2;
}

.how-it-works__card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6) var(--space-6);
  text-align: center;
  position: relative;
  z-index: 3;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  overflow: hidden;
}

.how-it-works__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
}

.how-it-works__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--otd-green-500), #059669);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin: 0 auto var(--space-6);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.how-it-works__card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--warm-text);
  margin-bottom: var(--space-3);
}

.how-it-works__card p {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Triptych / Three Paths (override layout.css) ── */
/* ── Triptych — Clean Full-Content Cards ── */
.triptych {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  height: auto !important;
}

.triptych__panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-5) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms ease,
              border-color 300ms ease;
}

/* Left accent bar */
.triptych__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  transition: width 300ms ease, box-shadow 300ms ease;
  z-index: 1;
}

.triptych__panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06), 0 4px 8px rgba(0,0,0,0.03);
}

.triptych__panel:hover::before {
  width: 5px;
}

.triptych__panel--workers::before {
  background: linear-gradient(180deg, var(--otd-green-400), var(--otd-green-600));
}
.triptych__panel--workers:hover::before {
  box-shadow: 4px 0 16px rgba(34,197,94,0.15);
}
.triptych__panel--workers:hover {
  border-color: var(--otd-green-100);
}

.triptych__panel--employers::before {
  background: linear-gradient(180deg, var(--slate-400), var(--slate-600));
}
.triptych__panel--employers:hover::before {
  box-shadow: 4px 0 16px rgba(100,116,139,0.12);
}
.triptych__panel--employers:hover {
  border-color: var(--slate-200);
}

.triptych__panel--homeowners::before {
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
}
.triptych__panel--homeowners:hover::before {
  box-shadow: 4px 0 16px rgba(139,92,246,0.15);
}
.triptych__panel--homeowners:hover {
  border-color: #e9d5ff;
}

/* Title row — icon + heading inline */
.triptych__title-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.triptych__title-row i {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.triptych__panel--workers .triptych__title-row i {
  color: var(--otd-green-600);
  background: var(--otd-green-50);
}

.triptych__panel--employers .triptych__title-row i {
  color: var(--slate-600);
  background: var(--slate-50);
}

.triptych__panel--homeowners .triptych__title-row i {
  color: #7c3aed;
  background: #f5f3ff;
}

.triptych__title-row h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--warm-text);
  letter-spacing: -0.02em;
  margin: 0;
}

/* Tagline */
.triptych__tagline {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Bullets */
.triptych__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.triptych__bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--warm-text);
  line-height: 1.4;
}

.triptych__bullets li i {
  color: var(--otd-green-500);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* Link */
.triptych__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--otd-green-600);
  margin-top: auto;
  transition: gap 300ms ease, color 200ms ease;
}

.triptych__panel:hover .triptych__link {
  gap: 10px;
  color: var(--otd-green-700);
}

.triptych__link i {
  font-size: 0.7rem;
  transition: transform 300ms ease;
}

.triptych__panel:hover .triptych__link i {
  transform: translateX(3px);
}

/* ── Testimonials ── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--otd-green-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}

/* Star rating decoration */
.testimonial-card::before {
  content: '\2605\2605\2605\2605\2605';
  display: block;
  color: #f59e0b;
  font-size: var(--text-sm);
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.testimonial-card__quote {
  font-size: 15px;
  color: var(--warm-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--otd-green-50);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--otd-green-500), #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: var(--font-semibold);
  color: var(--warm-text);
  font-size: var(--text-sm);
}

.testimonial-card__role {
  color: var(--warm-text-muted);
  font-size: var(--text-xs);
}

/* ── Green CTA Section ── */
.cta-cinematic {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ── Industry Ticker ── */
.ticker-section {
  padding: var(--space-6) 0;
  overflow: hidden;
  background: var(--warm-bg);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.ticker-track {
  display: flex;
  width: max-content;
}

.ticker-track--left {
  animation: ticker-scroll-left 40s linear infinite;
}

.ticker-track--right {
  animation: ticker-scroll-right 35s linear infinite;
}

.ticker-content {
  display: flex;
  gap: var(--space-3);
  padding-right: var(--space-3);
  flex-shrink: 0;
}

.ticker-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  white-space: nowrap;
  background: var(--white);
  color: var(--warm-text-secondary);
  border: 1px solid var(--warm-border);
  transition: transform 200ms ease;
}

.ticker-pill:hover {
  transform: scale(1.05);
}

.ticker-pill--green {
  background: var(--otd-green-50);
  color: var(--otd-green-700);
  border-color: var(--otd-green-100);
}

@keyframes ticker-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ticker-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Tighter Section Spacing ── */
.section { padding: var(--space-14) 0; }
.section--warm-alt { padding: var(--space-12) 0; }
.section-header { margin-bottom: var(--space-8); }
.section-header .lead { margin-top: var(--space-2); }

/* ── Modal styles for marketing pages ── */
.modal .modal__content {
  animation: modalIn 250ms ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal .modal__close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--gray-100);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 200ms, color 200ms;
}
.modal .modal__close:hover {
  background: var(--gray-200);
  color: var(--warm-text);
}

/* Modal form styling for homeowners */
.modal .form-field label {
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  color: var(--warm-text);
}
.modal .form-field input,
.modal .form-field select,
.modal .form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-family: inherit;
  background: var(--white);
  color: var(--warm-text);
  transition: border-color 200ms, box-shadow 200ms;
}
.modal .form-field input:focus,
.modal .form-field select:focus,
.modal .form-field textarea:focus {
  border-color: var(--otd-green-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
  outline: none;
}

.cta-cinematic__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cta-cinematic__desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

.cta-cinematic__button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 18px 40px;
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--otd-green-700);
  background: var(--white);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.cta-cinematic__button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  color: var(--otd-green-800);
}

/* ── Team Note (About page) ── */
.team-note {
  background: var(--warm-bg-alt);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  max-width: 520px;
  margin: var(--space-6) auto 0;
}

/* ── Feature Grid Enhanced ── */
.features--enhanced .features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.features--enhanced .feature-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  position: relative;
  overflow: hidden;
  text-align: left;
  box-shadow: none;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform, opacity;
}

.features--enhanced .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--otd-green-400), #10b981);
  opacity: 0;
  transition: opacity 300ms ease;
}

.features--enhanced .feature-card:hover::before {
  opacity: 1;
}

.features--enhanced .feature-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
}

.features--enhanced .feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--otd-green-50), #ecfdf5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--otd-green-600);
  font-size: var(--text-lg);
  margin: 0 0 var(--space-5);
  border: 1px solid var(--otd-green-100);
}

.features--enhanced .feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

.features--enhanced .feature-card__description {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--warm-text-secondary);
}

/* ── Phone Mockup Enhanced ── */
.phone-mockup--floating {
  animation: float 6s ease-in-out infinite;
}

/* ── Interactive Card Glow (mouse-following gradient) ── */
.feature-card::after,
.how-it-works__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    300px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(34, 197, 94, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
  z-index: 0;
}

.feature-card:hover::after,
.how-it-works__card:hover::after {
  opacity: 1;
}

/* ── Live ticker in trust strip ── */
.trust-strip__ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-3);
  justify-content: center;
}

.trust-strip__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--otd-green-500);
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.trust-strip__live-text {
  font-size: var(--text-xs);
  color: var(--otd-green-700);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-strip__live-text strong {
  color: var(--otd-green-600);
  font-variant-numeric: tabular-nums;
}

/* ── Animated counters: tabular figures ── */
.hero__stat-value {
  font-variant-numeric: tabular-nums;
}

/* ── CTA button shimmer ── */
.cta-cinematic__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: none;
  animation: btn-shimmer 3s ease-in-out infinite;
}

@keyframes btn-shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pain-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .how-it-works__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .how-it-works__cards::before {
    display: none;
  }

  .triptych {
    grid-template-columns: 1fr !important;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

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

@media (max-width: 768px) {
  .hero.hero--light {
    padding-top: 80px;
  }

  .hero--light .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-10) 0 var(--space-8);
  }

  .hero--light .hero__buttons {
    justify-content: center;
  }

  .hero--light .hero__stats {
    justify-content: center;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }

  .hero--light .hero__stat {
    text-align: center;
  }

  .hero--light .hero__image {
    order: -1;
  }

  .hero--light .hero__description {
    max-width: 100%;
  }

  .trust-strip__stats {
    flex-direction: column;
    gap: var(--space-3);
  }

  .features--enhanced .features__grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════
   WARM VARIANTS — Shared across marketing pages
   ═══════════════════════════════════════════════ */

/* ── Centered Hero (About, Pricing, FAQ, Contact) ── */
.hero--light-centered .hero__container {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero--light-centered .hero__description {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero--light-centered .hero__buttons {
  justify-content: center;
}

.hero--light-centered .hero__badge {
  margin-left: auto;
  margin-right: auto;
}

/* ── Value Cards (about.html) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--otd-green-400), var(--otd-green-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--otd-green-50), #ecfdf5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: 1.25rem;
  color: var(--otd-green-600);
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--warm-text);
  margin-bottom: var(--space-2);
}

.value-card__text {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  line-height: 1.6;
}

/* ── Stats Grid (about.html) ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-10);
  text-align: center;
}

.stat-item {
  padding: var(--space-6);
}

.stat-item__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--otd-green-600);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ── Cost Cards (employers.html) ── */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.cost-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cost-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.cost-card__label {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.cost-card__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--otd-green-600);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.cost-card__note {
  font-size: var(--text-sm);
  color: var(--warm-text-muted);
  line-height: 1.5;
}

/* ── Pricing Cards (pricing.html) ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card--recommended {
  border-color: var(--otd-green-400);
  box-shadow: 0 0 0 1px var(--otd-green-400);
}

.pricing-card--recommended::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--otd-green-500), var(--otd-green-600));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px;
  text-align: center;
}

.pricing-card__icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--warm-text);
  margin-bottom: var(--space-1);
}

.pricing-card__subtitle {
  font-size: var(--text-sm);
  color: var(--warm-text-muted);
  margin-bottom: var(--space-4);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--otd-green-600);
  margin-bottom: var(--space-1);
}

.pricing-card__price-note {
  font-size: var(--text-xs);
  color: var(--warm-text-muted);
  margin-bottom: var(--space-5);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-card__features li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  border-top: 1px solid var(--warm-border);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.pricing-card__features li i {
  color: var(--otd-green-500);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Subscription Panels (pricing.html) ── */
.subscription-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.pricing-panel {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.pricing-panel__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--warm-text);
  margin-bottom: var(--space-1);
}

.pricing-panel__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--otd-green-600);
  margin-bottom: var(--space-1);
}

.pricing-panel__price span {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--warm-text-muted);
}

.pricing-panel__subtitle {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  margin-bottom: var(--space-5);
}

.pricing-panel__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5) 0;
}

.pricing-panel__features li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.pricing-panel__features li i {
  color: var(--otd-green-500);
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-panel__note {
  font-size: var(--text-xs);
  color: var(--warm-text-muted);
  font-style: italic;
  padding: var(--space-3);
  background: var(--otd-green-50);
  border-radius: var(--radius-md);
}

/* ── FAQ Styles (faq.html) ── */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-6);
}

.faq-tab {
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  border: 1px solid var(--warm-border);
  background: var(--white);
  color: var(--warm-text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 200ms ease;
}

.faq-tab:hover {
  border-color: var(--otd-green-300);
  color: var(--otd-green-600);
}

.faq-tab--active {
  background: var(--otd-green-500);
  color: white;
  border-color: var(--otd-green-500);
}

.faq-category__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--warm-text);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--otd-green-100);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: box-shadow 200ms ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  font-weight: 500;
  color: var(--warm-text);
  gap: var(--space-3);
  user-select: none;
}

.faq-question i {
  color: var(--warm-text-muted);
  transition: transform 300ms ease;
  flex-shrink: 0;
}

.faq-item--open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.16, 1, 0.3, 1),
              padding 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item--open .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-5) var(--space-4);
}

.faq-answer p {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  line-height: 1.7;
}

/* ── Contact Info (contact.html) ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.contact-info {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--warm-border);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--otd-green-50), #ecfdf5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--otd-green-600);
}

.contact-method__title {
  font-weight: 600;
  color: var(--warm-text);
  margin-bottom: 2px;
}

.contact-method__text {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.contact-form__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--warm-text);
  margin-bottom: var(--space-5);
}

/* ── Process Steps (employers.html how hiring works) ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
  position: relative;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-5) var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.process-step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--otd-green-500), var(--otd-green-600));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--warm-text);
  margin-bottom: var(--space-2);
}

.process-step__text {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  line-height: 1.6;
}

/* ── Hero Bullets (workers/employers) ── */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  line-height: 1.5;
}

.hero-bullets li i {
  color: var(--otd-green-500);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Hero Chip Card (workers/employers) ── */
.hero-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.hero-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--warm-text);
  margin-bottom: var(--space-4);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero-chip {
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
  background: var(--otd-green-50);
  color: var(--otd-green-700);
  font-size: var(--text-xs);
  font-weight: 500;
  border: 1px solid var(--otd-green-100);
}

/* ── Protection Strip (workers/employers) ── */
.protection-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.protection-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.protection-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.protection-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--otd-green-50), #ecfdf5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--otd-green-600);
  font-size: 1.1rem;
}

.protection-item__title {
  font-weight: 600;
  color: var(--warm-text);
  margin-bottom: 2px;
  font-size: var(--text-sm);
}

.protection-item__text {
  font-size: var(--text-xs);
  color: var(--warm-text-secondary);
  line-height: 1.5;
}

/* ── Selling Cards (employers.html) ── */
.selling-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.selling-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.selling-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.selling-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--otd-green-400), var(--otd-green-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.selling-card:hover::after {
  transform: scaleX(1);
}

.selling-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--otd-green-50), #ecfdf5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: 1.25rem;
  color: var(--otd-green-600);
}

.selling-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--warm-text);
  margin-bottom: var(--space-2);
}

.selling-card__text {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  line-height: 1.6;
}

/* ── Quick Actions (homeowners.html) ── */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.action-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.action-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--otd-green-50), var(--otd-green-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 1.5rem;
  color: var(--otd-green-600);
}

.action-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--warm-text);
  margin-bottom: var(--space-2);
}

.action-card__text {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

/* ── Daywork Example Box (pricing.html) ── */
.daywork-example {
  background: var(--otd-green-50);
  border: 1px solid var(--otd-green-100);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-top: var(--space-6);
  text-align: center;
}

.daywork-example p {
  font-size: var(--text-sm);
  color: var(--warm-text-secondary);
  line-height: 1.7;
}

/* ── Perm Recruitment Callout (pricing.html) ── */
.perm-callout {
  text-align: center;
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-xl);
  margin-top: var(--space-8);
}

.perm-callout__price {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--otd-green-600);
}

/* ── Responsive: Warm Variants ── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .values-grid,
  .selling-grid,
  .quick-actions,
  .protection-strip {
    grid-template-columns: 1fr;
  }

  .cost-grid,
  .subscription-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .faq-tabs {
    gap: var(--space-1);
  }

  .faq-tab {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-3);
  }
}
