/* ============================================================
   index-version2.css — page-specific styles
   Uses tokens from design-system.css
   ============================================================ */

/* ── Typography override for this page ─────────────────────── */

.usa-landing-page,
.usa-landing-page * {
  font-family: var(--font-sans);
}

.usa-hero-title,
.usa-landing-page h1,
.usa-landing-page h2 {
  font-family: var(--font-serif);
  color: var(--color-ink);
}

/* ── Header: transparent at top, solid on scroll ────────────── */

.site-header {
  background: radial-gradient(circle at top left, #EEF2FF 0, #F9FAFB 48%, #FFFFFF 100%) !important;
  box-shadow: none !important;
  transition: box-shadow 0.3s ease;
}

.site-header .top-bar {
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  transition: border-color 0.3s ease;
}

.site-header .main-header {
  background: transparent !important;
}

.site-header.is-scrolled {
  background: #f8fafc !important;
  box-shadow: var(--shadow-md) !important;
}

.site-header.is-scrolled .top-bar {
  background: #f8fafc !important;
  border-bottom: 1px solid var(--color-border) !important;
}

.site-header.is-scrolled .main-header {
  background: #f8fafc !important;
}

@media (max-width: 768px) {
  .site-header {
    background: #EEF2FF !important;
    box-shadow: none !important;
  }
  .site-header.is-scrolled {
    background: #EEF2FF !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
  }
  .site-header .main-header {
    padding: 0.6rem 0 !important;
  }
  .site-header .main-nav .logo img {
    width: 110px !important;
    height: auto !important;
  }
  .site-header .mobile-menu-toggle {
    padding: 0.4rem !important;
  }
}

/* ── Nav tweaks ──────────────────────────────────────────────── */

/* Hide the top bar entirely on this page */
.site-header .top-bar {
  display: none !important;
}

/* Language selector when moved into main nav */
.nav-actions .language-selector {
  margin-left: 0;
}

#btn-request-demo-nav {
  display: none !important;
}

/* Log In: terracotta text, medium weight, no box */
.nav-actions .nav-link:first-child {
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--color-terracotta) !important;
  font-weight: var(--font-weight-semibold);
  transition: color 0.2s;
}

.nav-actions .nav-link:first-child:hover {
  color: var(--color-deep-terra) !important;
  background: transparent !important;
}

/* ── Value-props / how-step cards ────────────────────────────── */

.how-step-card {
  background: var(--color-bg) !important;
  text-align: center;
}

.how-step-card h3 {
  font-family: var(--font-sans);
  color: var(--color-ink) !important;
}

.how-step-card .step-action {
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
  margin: 0.4rem 0;
  font-size: var(--font-size-xs);
}

.step-badge {
  background: var(--color-terracotta) !important;
  color: #fff !important;
}

.how-step-card:hover .step-badge {
  background: var(--color-deep-terra) !important;
  color: #fff !important;
}

.how-step-card:hover .value-prop-video-wrapper {
  box-shadow: 0 0 0 4px var(--color-terracotta) !important;
}

/* ── Nav hover color override ────────────────────────────────── */

.site-header .main-nav .nav-container .nav-link:hover,
.site-header .main-nav .nav-container .nav-link.active {
  color: var(--color-terracotta) !important;
}

/* ── Utility classes (were in _header_usa.php) ───────────────── */

.mt-5 { margin-top: 4rem; }
.mb-5 { margin-bottom: 5rem; }
.mb-1 { margin-bottom: 0; }

/* ── Hero accent colors ──────────────────────────────────────── */

.usa-hero-badge {
  color: var(--color-terracotta) !important;
  background: rgba(194, 85, 42, 0.06) !important;
}

.usa-hero-btn-primary {
  background: var(--color-terracotta) !important;
  border-color: var(--color-terracotta) !important;
  color: #fff !important;
}

.usa-hero-btn-primary:hover {
  background: var(--color-deep-terra) !important;
  border-color: var(--color-deep-terra) !important;
  color: #fff !important;
}

.usa-hero-btn-secondary {
  color: var(--color-terracotta) !important;
  border-color: var(--color-terracotta) !important;
}

.usa-hero-btn-secondary:hover {
  background: rgba(194, 85, 42, 0.06) !important;
}

.usa-hero-metric-value,
.pill-value {
  color: var(--color-sage) !important;
}

/* ── Hide Calendly floating badge on this page ───────────────── */

.calendly-badge-widget {
  display: none !important;
}

/* ── Page fade-in (masks FOUC) ───────────────────────────────── */

.usa-landing-page {
  animation: page-fade-in 0.35s ease 0.05s both;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Page layout ─────────────────────────────────────────────── */

.usa-landing-page { background-color: #ffffff; overflow-x: hidden; }

.usa-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F172A;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    background: radial-gradient(circle at top left, #EEF2FF 0, #F9FAFB 48%, #FFFFFF 100%);
}
.usa-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.usa-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    padding: 1.5rem 1.5rem 4rem;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}
.usa-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}
.usa-hero-copy { max-width: 560px; }
.usa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}
.usa-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0 0 1.1rem;
    color: var(--color-ink);
}
.usa-hero-tagline { font-size: 1.05rem; color: #4B5563; margin: 0 0 2rem; line-height: 1.6; }
.usa-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-start;
    margin-bottom: 1.4rem;
    min-width: 0;
    width: 100%;
}
.usa-hero-btn {
    padding: 0.9rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    max-width: 100%;
}
.usa-hero-btn-secondary { background: #FFFFFF; color: #111827; border: 1px solid #E5E7EB; }
.usa-hero-btn-secondary:hover { background: #F9FAFB; border-color: #D1D5DB; color: #111827; transform: translateY(-2px); }
.usa-hero-meta { font-size: 0.9rem; color: #6B7280; margin: 0; }
.usa-hero-visual { display: flex; flex-direction: column; align-items: center; gap: 0; }
.usa-hero-booking-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    max-width: 380px;
    margin-bottom: -0.75rem;
    padding: 0.75rem 1.25rem;
    background: #FFFFFF;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(15,23,42,0.1), 0 0 0 1px rgba(148,163,184,0.15);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.usa-hero-booking-card.usa-hero-booking-exit { transform: translateY(16px); opacity: 0; }
.usa-hero-booking-card.usa-hero-booking-enter { transform: translateY(-8px); opacity: 0; }
.usa-hero-booking-channel { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #6B7280; }
.usa-hero-booking-guest { font-size: 0.95rem; font-weight: 600; color: #111827; }
.usa-hero-booking-amount { font-size: 1rem; font-weight: 700; color: #059669; }
.usa-hero-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: 1.75rem;
    background: linear-gradient(145deg, #FFFFFF 0%, #F9FAFB 40%, #EEF2FF 100%);
    box-shadow: 0 22px 45px rgba(15,23,42,0.12), 0 0 0 1px rgba(148,163,184,0.2);
    padding: 1.4rem 1.4rem 1.6rem;
    box-sizing: border-box;
}
.usa-hero-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.1rem; }
.usa-hero-card-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: #6B7280; }
.usa-hero-card-dot { width: 8px; height: 8px; border-radius: 999px; background: #22C55E; box-shadow: 0 0 0 6px rgba(34,197,94,0.22); }
.usa-hero-card-body { display: flex; flex-direction: column; gap: 1rem; }
.usa-hero-metric { display: flex; flex-direction: column; gap: 0.2rem; }
.usa-hero-metric-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: #9CA3AF; }
.usa-hero-metric-value { font-size: 1.9rem; font-weight: 700; color: #111827; }
.usa-hero-metric-sub { font-size: 0.8rem; color: #9CA3AF; }
.usa-hero-metric-row { display: flex; gap: 0.6rem; }
.usa-hero-metric-pill {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #374151;
}
.pill-label { text-transform: uppercase; letter-spacing: 0.12em; }
.pill-value { font-weight: 600; }
.usa-hero-card-image { margin-top: 0.5rem; border-radius: 1.25rem; overflow: hidden; background: #0F172A; }
.usa-hero-card-image img { width: 100%; height: auto; display: block; }
.usa-hero-title-br { display: none; }

@media (max-width: 768px) {
    .usa-hero { min-height: 0; padding: 0; align-items: flex-start; padding-top: 0.75rem; }
    .usa-hero-inner { padding: 1rem 1rem 1.5rem; width: 100%; max-width: 100%; }
    .usa-hero-layout { grid-template-columns: minmax(0, 1fr); gap: 1.25rem; }
    .usa-hero-copy { max-width: none; text-align: center; }
    .usa-hero-badge { display: none; }
    .usa-hero-title-br { display: block; }
    .usa-hero-title { font-size: 1.65rem; line-height: 1.2; margin: 0 0 0.5rem; text-align: center; }
    .usa-hero-tagline { font-size: 0.8rem; line-height: 1.45; text-align: center; max-width: 23em; margin: 0 auto 1.5rem; }
    .usa-hero-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 0.75rem; }
    .usa-hero-btn { width: auto; min-width: 0; text-align: center; padding: 0.6rem 1.1rem; font-size: 0.9rem; }
    .usa-hero-meta { font-size: 0.75rem; line-height: 1.4; text-align: center; }
    .usa-landing-page .section-header h2,
    .usa-landing-page .usa-faq-title,
    .usa-landing-page .usa-get-started-title,
    .usa-landing-page .benefits-carousel-header h2,
    .usa-landing-page .benefits-content h2,
    .usa-landing-page .usa-section-title,
    .usa-landing-page .integrations .section-header h2,
    .usa-landing-page .usa-cta-section h2,
    .usa-landing-page .usa-integrations-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .usa-hero-inner { padding: 1.25rem 0.875rem 1.75rem; }
    .usa-hero-title { font-size: 1.6rem; }
    .usa-hero-tagline { font-size: 0.9rem; }
    .usa-hero-actions { margin-bottom: 0.75rem; }
    .usa-hero-btn { padding: 0.65rem 1rem; }
    .usa-hero-meta { max-width: 14rem; margin: 0 auto 3rem; }
}

/* ── Value section ───────────────────────────────────────────── */

.usa-value-section { padding: 3rem 0; background: #FbFbFb; }
.usa-section-title { text-align: center; font-size: 1.75rem; color: #1E293B; margin: 0 0 2rem; }
.usa-value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.usa-value-card { background: #fff; padding: 1.5rem; border-radius: 0.75rem; border: 1px solid #e7e2d9; }
.usa-value-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.usa-value-card h3 { font-size: 1.1rem; color: #1E293B; margin: 0 0 0.5rem; }
.usa-value-card p { font-size: 0.9rem; color: #64748b; margin: 0; }

/* ── Integrations ────────────────────────────────────────────── */

.usa-integrations { padding: 4rem 0; background: #FbFbFb; border-top: 1px solid #e7e2d9; }
.usa-integrations-header { text-align: center; margin-bottom: 2.5rem; }
.usa-integrations-title { font-size: 2rem; font-weight: 700; color: #1E293B; margin: 0 0 0.5rem; }
.usa-integrations-subtitle { font-size: 1.1rem; color: #475569; margin: 0 auto; max-width: 560px; }
.usa-integrations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; align-items: center; justify-content: center; max-width: 1100px; margin: 0 auto; }
.usa-integration-item { display: flex; align-items: center; justify-content: center; padding: 2rem 1.5rem; background: #fff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.usa-integration-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.usa-integration-item img { max-width: 100%; height: 48px; width: auto; object-fit: contain; }

.integrations { padding: 3rem 0; background-color: #f5f5f5; }
.integrations .section-header { margin-bottom: 2rem; text-align: center; }
.integrations .section-header h2 { margin-bottom: 0.5rem; }
.integrations .section-header p { margin-top: 0; }
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 20px;
}
.integration-item { display: flex; align-items: center; justify-content: center; padding: 20px; background: #fff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.integration-item:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.integration-item img { max-width: 100%; height: auto; transition: filter 0.3s ease, opacity 0.3s ease; }

@media (max-width: 768px) {
    .integrations-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .usa-integrations-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .usa-integrations-title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .integrations-grid { grid-template-columns: repeat(3, 1fr); }
    .usa-integrations-grid { grid-template-columns: 1fr; }
    .usa-integration-item { padding: 1.5rem; }
    .usa-integration-item img { height: 40px; }
}

/* ── Benefits ────────────────────────────────────────────────── */

.benefits-section { padding: 2rem 0; background: #fff; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.benefits-content h2 { font-size: 1.6rem; color: #1e293b; margin-bottom: 1.25rem; font-weight: 600; line-height: 1.3; }
.benefits-list { display: grid; gap: 0.75rem; }
.benefit-item { display: flex; align-items: flex-start; margin-bottom: 0; }
.check-icon { width: 20px; height: 20px; filter: brightness(0); margin-right: 12px; margin-top: 2px; flex-shrink: 0; }
.benefit-text { flex: 1; }
.benefit-text h4 { margin: 0 0 8px; font-size: 18px; font-weight: 600; }
.benefit-text p { margin: 0; color: #475569; font-size: 0.9rem; line-height: 1.5; }
.benefits-image img { width: 100%; height: auto; border-radius: 1rem; }

.benefits-carousel-section { padding: 4rem 0 5rem; overflow: hidden; }
.benefits-carousel-header { margin-bottom: 2.5rem; text-align: center; }
.benefits-carousel-header h2 { font-size: 1.75rem; color: #1e293b; margin: 0; font-weight: 600; }
.benefits-swiper { position: relative; padding-bottom: 3rem; overflow: visible; }
.benefits-swiper .swiper-wrapper { align-items: stretch; }
.benefits-swiper .swiper-slide { height: auto; box-sizing: border-box; }
.benefits-slide { padding: 0 0.5rem; }
.benefits-swiper .benefits-grid { min-height: 0; padding: 2.5rem; background: #f8fafc; border-radius: 1rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.benefits-swiper .benefits-slide-img { display: flex; align-items: center; justify-content: center; }
.benefits-swiper .swiper-button-prev,
.benefits-swiper .swiper-button-next { color: #1e293b; --swiper-navigation-size: 28px; }
.benefits-swiper .swiper-button-prev::after,
.benefits-swiper .swiper-button-next::after { font-weight: 700; }
.benefits-swiper .swiper-pagination-bullet { background: #94a3b8; opacity: 0.5; }
.benefits-swiper .swiper-pagination-bullet-active { background: #1e293b; opacity: 1; transform: scale(1.2); }

@media (max-width: 767px) {
    .benefits-swiper .benefits-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: left; }
    .benefits-swiper .benefits-grid--reverse .benefits-image { order: -1; }
    .benefits-swiper .benefit-item { justify-content: flex-start; }
    .benefits-swiper .benefit-text p { font-size: 10px; text-align: left; }
    .benefits-swiper .check-icon { width: 16px; height: 16px; }
}

/* ── FAQ ─────────────────────────────────────────────────────── */

.usa-faq-section { padding: 5rem 0; background: #faf9f7; }
.usa-faq-title { font-size: 1.75rem; font-weight: 700; color: #111827; margin: 0 0 2.5rem; text-align: center; }
.usa-faq-list { max-width: 720px; margin: 0 auto; }
.usa-faq-item { border-bottom: 1px solid #e5e7eb; }
.usa-faq-item:first-child { border-top: 1px solid #e5e7eb; }
.usa-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    gap: 1rem;
    transition: color 0.2s ease;
}
.usa-faq-question:hover { color: var(--color-primary); }
.usa-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgb(236 153 72 / 15%);
    position: relative;
    transition: background 0.2s ease, transform 0.2s ease;
}
.usa-faq-question:hover .usa-faq-icon { background: rgba(194,85,42,0.12); }
.usa-faq-icon::before,
.usa-faq-icon::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: var(--color-primary); border-radius: 1px; }
.usa-faq-icon::before { width: 12px; height: 2px; }
.usa-faq-icon::after { width: 2px; height: 12px; transition: opacity 0.2s ease, transform 0.2s ease; }
.usa-faq-question[aria-expanded="true"] .usa-faq-icon::after { opacity: 0; transform: translate(-50%, -50%) scale(0); }
.usa-faq-answer { overflow: hidden; transition: opacity 0.25s ease; }
.usa-faq-answer[hidden] { display: none; }
.usa-faq-answer p { margin: 0 0 1.25rem; padding: 0 0 1.25rem; font-size: 0.95rem; line-height: 1.6; color: #374151; }
.usa-faq-answer p:last-child { margin-bottom: 0; padding-bottom: 0; }
.usa-faq-highlight { color: var(--color-primary); font-weight: var(--font-weight-semibold); }

/* ── Get started / pricing ───────────────────────────────────── */

.usa-get-started-section { padding: 2.5rem 0 3rem; background: #fff; }
.usa-get-started-title { text-align: center; font-size: 1.75rem; color: #1E293B; margin: 0 0 0.35rem; }
.usa-get-started-lead { text-align: center; color: #475569; margin: 0 0 1.5rem; font-size: 0.95rem; }
.usa-get-started-wrap { max-width: 920px; margin: 0 auto; padding: 2rem 2.5rem; background: #fff; border-radius: 1rem; border: 1px solid #e7e2d9; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.usa-pricing-inline { margin-bottom: 0; }
.usa-pricing-inline .usa-pricing-badge { display: inline-block; text-align: center; margin-bottom: 1rem; }
.usa-pricing-in-step { margin-top: 0; }
.usa-get-started-wrap .usa-pricing-note { margin-top: 1rem; margin-bottom: 0; }
.usa-pricing-header { text-align: center; margin-bottom: 1.5rem; }
.usa-pricing-badge { display: inline-block; background: #3A9F4C; color: #78350f; padding: 0.3rem 0.7rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.5rem; }
.usa-pricing-header h2 { font-size: 1.5rem; color: #1E293B; margin: 0 0 0.35rem; }
.usa-pricing-header p { color: #475569; margin: 0; font-size: 0.95rem; }
.usa-pricing-badge-launch { background: #3A9F4C; color: #fff; }
.usa-pricing-inline { text-align: center; }
.usa-pricing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 920px; margin: 0 auto; padding: 0 1rem; align-items: start; }
.usa-pricing-controls-column { display: flex; flex-direction: column; gap: 1.25rem; }
.usa-unit-selector { text-align: left; }
.usa-unit-selector label { display: block; margin-bottom: 0.75rem; font-weight: 600; color: #1E293B; font-size: 1rem; }
.usa-modern-input-group { display: inline-flex; align-items: center; background: #fff; border: 2px solid #e7e2d9; border-radius: 0.75rem; padding: 0.5rem 0.75rem; transition: all 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.05); width: 100%; max-width: 280px; }
.usa-modern-input-group:focus-within { border-color: #3A9F4C; box-shadow: 0 0 0 3px rgba(58,159,76,0.15); }
.usa-input-container { position: relative; display: flex; align-items: center; margin: 0 1rem; min-width: 80px; flex: 1; }
#usaUnitCount { width: 100%; text-align: center; font-size: 1.35rem; font-weight: 600; color: #1E293B; border: none; padding: 0.35rem; background: transparent; -moz-appearance: textfield; outline: none; }
#usaUnitCount::-webkit-outer-spin-button,
#usaUnitCount::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.usa-unit-label { position: absolute; right: 0.25rem; color: #64748b; font-size: 0.8rem; font-weight: 500; pointer-events: none; opacity: 0.7; }
.usa-modern-btn { display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border: none; color: #475569; border-radius: 0.5rem; cursor: pointer; transition: all 0.2s; background: #f3f4f6; flex-shrink: 0; }
.usa-modern-btn:hover { background: #e5e7eb; color: #1E293B; }
.usa-modern-btn:active { transform: scale(0.95); }
.usa-modern-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; background: #e5e7eb; }
.usa-unit-limit-message { margin-top: 0.5rem; font-size: 0.8rem; color: #ef4444; font-weight: 500; min-height: 1rem; opacity: 0; transition: opacity 0.3s; }
.usa-unit-limit-message.show { opacity: 1; }
.usa-launch-value-stack { padding: 1rem 1.25rem; background: #fff; border: 1px solid #e7e2d9; border-radius: 0.75rem; }
.usa-value-stack-title { font-size: 0.95rem; font-weight: 600; color: #1E293B; margin: 0 0 0.6rem; text-align: left; }
.usa-value-stack-list { list-style: none; padding: 0; margin: 0; }
.usa-value-stack-list li { padding: 0.25rem 0; color: #475569; font-size: 0.85rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.25rem; }
.usa-value-stack-list li strong { color: #1E293B; font-weight: 500; }
.usa-value-stack-val { font-size: 0.8rem; color: #3A9F4C; font-weight: 500; }
.usa-pricing-card-column { display: flex; flex-direction: column; }
.usa-plan-card { background: #fff; border: 1px solid #e7e2d9; border-radius: 0.75rem; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; position: relative; transition: all 0.2s; max-width: 28rem; width: 100%; margin: 0 auto; box-sizing: border-box; min-width: 0; }
.usa-plan-card:hover { border-color: #3A9F4C; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.usa-plan-badge { position: absolute; top: -10px; right: 1rem; background: #3A9F4C; color: white; padding: 0.3rem 0.65rem; border-radius: 999px; font-size: 0.75rem; font-weight: 500; }
.usa-plan-card .usa-plan-title { font-size: 1.2rem; font-weight: 600; color: #1E293B; margin: 0 0 0.25rem; }
.usa-plan-card .plan-price { padding: 0.75rem 0; border-bottom: 1px solid #F5F1EA; }
.usa-plan-card .plan-price-was { font-size: 0.9rem; color: #94a3b8; text-decoration: line-through; }
.usa-plan-card .plan-price-was .currency,
.usa-plan-card .plan-price-was .period { font-size: 0.85rem; }
.usa-plan-card .plan-price-now { display: flex; align-items: baseline; gap: 0.1rem; }
.usa-plan-card .plan-price-now .currency { font-size: 1.1rem; font-weight: 500; }
.usa-plan-card .plan-price-now .amount { font-size: 2.25rem; font-weight: 700; color: #1E293B; line-height: 1; }
.usa-plan-card .plan-price-now .period { color: #64748b; font-size: 0.9rem; }
.usa-plan-card .commission { text-align: center; color: #3A9F4C; font-weight: 500; font-size: 0.8rem; margin: 0; }
.usa-plan-card .plan-features { list-style: none; padding: 0; margin: 0 0 0.75rem; flex-grow: 0; }
.usa-plan-card .plan-features li { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.35rem; font-size: 0.85rem; color: #475569; }
.usa-plan-card .feature-icon { width: 14px; height: 14px; flex-shrink: 0; }
.usa-plan-card .btn-block { display: block; text-align: center; padding: 0.6rem 1.25rem; font-weight: 600; font-size: 0.9rem; text-decoration: none; border-radius: 0.5rem; background: #3A9F4C; color: #fff; border: 2px solid #3A9F4C; }
.usa-plan-card .btn-block:hover { background: #2d7d3d; border-color: #2d7d3d; color: #fff; }
.usa-pricing-note { text-align: center; font-size: 0.85rem; color: #475569; margin: 1.25rem 0 0; }
.usa-pricing-note a { color: #3A9F4C; font-weight: 500; }

@media (max-width: 900px) {
    .usa-pricing-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .usa-unit-selector { text-align: center; }
    .usa-modern-input-group { margin: 0 auto; }
    .usa-value-stack-title { text-align: center; }
}
@media (max-width: 700px) {
    .usa-unit-selector label { font-size: 0.95rem; margin-bottom: 0.5rem; }
    .usa-launch-value-stack { padding: 0.875rem 1rem; }
}
@media (max-width: 640px) {
    .usa-modern-input-group { width: 100%; max-width: 280px; }
    .usa-input-container { min-width: 60px; }
    #usaUnitCount { font-size: 1.2rem; }
    .usa-plan-card { padding: 1rem 1.25rem; }
    .usa-plan-card .plan-price-now .amount { font-size: 2rem; }
    .usa-form-grid { grid-template-columns: 1fr; }
    .usa-signup-form-wrap { padding: 1.5rem 1.25rem; }
    .usa-signup-step-actions-between { flex-direction: column-reverse; }
    .usa-signup-form .btn { width: 100%; }
}

/* ── CTA section ─────────────────────────────────────────────── */

.usa-cta-section { background: var(--color-sage); color: var(--color-cream); padding: 4rem 1rem; text-align: center; }
.usa-cta-section h2 { font-family: var(--font-serif); font-size: var(--font-size-2xl); margin: 0 0 0.5rem; color: var(--color-cream); }
.usa-cta-section p { opacity: 0.8; margin: 0 0 1.75rem; font-size: var(--font-size-md); }
.usa-cta-section .btn-lg { display: inline-block; padding: 0.9rem 2rem; font-size: 1rem; font-weight: var(--font-weight-semibold); border-radius: var(--radius-full); text-decoration: none; background: var(--color-primary); color: #fff; border: none; transition: background 0.2s; }
.usa-cta-section .btn-lg:hover { background: var(--color-primary-dark); color: #fff; }

/* ── Signup form ─────────────────────────────────────────────── */

.usa-signup-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 0.5rem; }
.usa-signup-step-dot { width: 2rem; height: 2rem; border-radius: 50%; background: #e7e2d9; color: #64748b; font-size: 0.875rem; font-weight: 600; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.usa-signup-step-dot.active { background: #3A9F4C; color: #fff; }
.usa-signup-step-dot.done { background: #3A9F4C; color: #fff; }
.usa-signup-step-line { width: 2.5rem; height: 2px; background: #e7e2d9; }
.usa-signup-step-label { text-align: center; font-size: 0.95rem; font-weight: 500; color: #64748b; margin: 0 0 1.25rem; }
.usa-signup-form .form-error { background: #fee2e2; color: #991b1b; padding: 0.75rem; border-radius: 0.5rem; margin-bottom: 1rem; font-size: 0.875rem; }
.usa-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
.usa-form-grid-compact { gap: 0.85rem 1rem; }
.usa-form-group { margin-bottom: 0; }
.usa-form-group.usa-form-full { grid-column: 1 / -1; }
.usa-form-group label { display: block; font-weight: 500; color: #1E293B; margin-bottom: 0.35rem; font-size: 0.9rem; }
.usa-form-group input:not([type="checkbox"]),
.usa-form-group select { width: 100%; padding: 0.6rem 0.75rem; border: 1px solid #d1d5db; border-radius: 0.5rem; font-size: 1rem; box-sizing: border-box; }
.usa-form-group input:focus,
.usa-form-group select:focus { outline: none; border-color: #3A9F4C; }
.usa-password-hint { font-size: 0.8rem; color: #64748b; margin: 0.25rem 0 0; }
.usa-checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; cursor: pointer; }
.usa-checkbox-label input[type="checkbox"] { width: auto; flex-shrink: 0; margin: 0; cursor: pointer; }
.usa-checkbox-label a { color: #3A9F4C; }
.usa-signup-form .field-error { color: #dc2626; font-size: 0.75rem; margin-top: 0.25rem; }
.usa-signup-step-actions { margin-top: 1.5rem; display: flex; justify-content: flex-end; gap: 0.75rem; }
.usa-signup-step-actions-between { justify-content: space-between; }
.usa-signup-form .btn { padding: 0.65rem 1.5rem; font-weight: 600; border-radius: 0.5rem; cursor: pointer; font-size: 0.95rem; border: 2px solid #3A9F4C; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.usa-signup-form .btn-primary { background: #3A9F4C; color: #fff; }
.usa-signup-form .btn-primary:hover { background: #2d7d3d; border-color: #2d7d3d; color: #fff; }
.usa-signup-form .btn-outline { background: transparent; color: #3A9F4C; }
.usa-signup-form .btn-outline:hover { background: rgba(58,159,76,0.08); color: #2d7d3d; }

/* ── Toast ───────────────────────────────────────────────────── */

.usa-toast {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%) translateY(1.5rem);
    max-width: calc(100% - 2rem);
    padding: 0.875rem 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 0.95rem;
    color: #1e293b;
    background: #fff;
    border-left: 4px solid #64748b;
}
.usa-toast.show { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.usa-toast.error { border-left-color: #dc2626; }
.usa-toast.success { border-left-color: #3A9F4C; }

/* ── Value props swiper ──────────────────────────────────────── */

.value-props-swiper.swiper { display: block; overflow: visible; }
.value-props-swiper { position: relative; margin-top: 0; padding-top: 3.5rem; padding-bottom: 3.5rem; }
.value-props .section-header { margin-bottom: 1rem; }
.value-props-swiper .swiper-wrapper { align-items: stretch; }
.value-props-swiper .swiper-slide { height: auto; box-sizing: border-box; overflow: visible; }
.value-props-swiper .how-step-card { position: relative; }
.usa-value-props-pagination,
.usa-value-props-prev,
.usa-value-props-next { display: none; }

@media (max-width: 767px) {
    .value-props-swiper.swiper { overflow: hidden; }
    .value-props { margin-top: 2.5rem !important; }
    .value-props .section-header { margin-bottom: 0; padding: 0 1rem; }
    .value-props .section-header h2 { font-size: 1.3rem !important; line-height: 1.3; }
    .value-props-swiper { padding-top: 2rem !important; padding-bottom: 3rem !important; }
    .usa-value-props-pagination,
    .usa-value-props-prev,
    .usa-value-props-next { display: block; }
    .usa-value-props-pagination { position: relative; margin-top: 1.25rem; }
    .usa-value-props-prev,
    .usa-value-props-next { color: var(--color-terracotta); }
    .usa-value-props-prev:after,
    .usa-value-props-next:after { font-size: 1.25rem; font-weight: 700; }
}

/* ── Contact form section ────────────────────────────────────── */
.ss-contact-section { padding: var(--space-16) 0; background: var(--color-bg-soft); }
.ss-contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--space-12); align-items: start; max-width: 960px; margin: 0 auto; }
.ss-contact-copy h2 { font-family: var(--font-serif); font-size: var(--font-size-2xl); color: var(--color-text); margin: 0 0 var(--space-4); line-height: var(--line-height-snug); }
.ss-contact-copy p { color: var(--color-text-muted); font-size: var(--font-size-base); line-height: var(--line-height-normal); margin: 0 0 var(--space-6); }
.ss-contact-trust { list-style: none; padding: 0; margin: 0; }
.ss-contact-trust li { color: var(--color-text-muted); padding: 0.4rem 0 0.4rem 1.75rem; position: relative; font-size: var(--font-size-sm); }
.ss-contact-trust li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent); font-weight: var(--font-weight-bold); }
.ss-contact-form-wrap { background: var(--color-bg); border-radius: var(--radius-lg); border: 1px solid var(--color-border); box-shadow: var(--shadow-md); padding: var(--space-8); }
.ss-contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-6); }
.ss-form-group { display: flex; flex-direction: column; gap: var(--space-1); }
.ss-form-full { grid-column: 1 / -1; }
.ss-form-group label { font-size: var(--font-size-sm); font-weight: var(--font-weight-medium); color: var(--color-text); }
.ss-form-group input { padding: 0.6rem 0.75rem; border: 1px solid var(--color-border); border-radius: var(--radius-md); font-size: var(--font-size-base); font-family: var(--font-sans); outline: none; transition: border-color 0.15s, box-shadow 0.15s; background: var(--color-bg); color: var(--color-text); }
.ss-form-group input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(194, 85, 42, 0.12); }
.ss-contact-submit { width: 100%; padding: 0.75rem; font-size: var(--font-size-base); font-family: var(--font-sans); font-weight: var(--font-weight-semibold); background: var(--color-primary); color: #fff; border: none; border-radius: var(--radius-full); cursor: pointer; transition: background 0.2s; }
.ss-contact-submit:hover { background: var(--color-primary-dark); }
.ss-contact-success { text-align: center; padding: 2.5rem 1rem; }
.ss-contact-success svg { margin-bottom: var(--space-4); }
.ss-contact-success p { font-size: var(--font-size-md); color: var(--color-text); font-weight: var(--font-weight-medium); margin: 0; }

@media (max-width: 768px) {
    .ss-contact-inner { grid-template-columns: 1fr; gap: var(--space-6); padding: 0 var(--space-4); }
    .ss-contact-form-grid { grid-template-columns: 1fr; }
    .ss-contact-copy h2 { font-size: var(--font-size-xl); }
}

