/* ===== SERVIZIO CIVILE 2026 — Campaign Page ===== */

/* Campaign palette + tokens */
:root {
  --sc-dark: #102423;
  --sc-dark-deep: #0d1814;
  --sc-coral: #FF6B5B;
  --sc-coral-hover: #FF8274;
  --sc-coral-glow: rgba(255, 107, 91, 0.15);
  --sc-cream: #F7F4F0;
  --sc-cream-warm: #F0EBE5;
  --sc-white: #FFFFFF;
  --sc-mint: #E8F5E9;
  --sc-mint-dark: #C8E6C9;
  --sc-text: #1a1a1a;
  --sc-text-muted: #5A6B66;
  --sc-text-light: rgba(255, 255, 255, 0.9);
  --sc-border: rgba(255, 255, 255, 0.1);
  --sc-radius: 16px;
  --sc-radius-sm: 10px;
  --sc-radius-pill: 100px;
  --sc-font-body: 'DM Sans', sans-serif;
  --sc-font-mono: 'Space Mono', monospace;
  --sc-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page-level override: DM Sans as base font */
.sc-page {
  font-family: var(--sc-font-body);
  color: var(--sc-white);
  background: var(--sc-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.sc-page *,
.sc-page *::before,
.sc-page *::after {
  box-sizing: border-box;
}

/* ===== MATERIAL ICONS BASE ===== */
.sc-mi {
  font-size: 22px;
  vertical-align: middle;
  line-height: 1;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.sc-mi--sm {
  font-size: 16px;
}

.sc-mi--stat {
  font-size: 32px;
  color: var(--sc-coral);
  display: block;
  margin-bottom: 0.5rem;
}

.sc-mi--pill {
  font-size: 20px;
  opacity: 0.7;
}

.sc-mi--opt {
  font-size: 24px;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  opacity: 0.6;
}

.sc-mi--feature {
  font-size: 36px;
  color: var(--sc-coral);
  display: block;
  margin-bottom: 0.75rem;
}

/* ===== SCROLL REVEAL ===== */
.sc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.sc-reveal.visible {
  opacity: 1;
  transform: none;
}

.sc-reveal-delay-1 { transition-delay: 0.1s; }
.sc-reveal-delay-2 { transition-delay: 0.2s; }
.sc-reveal-delay-3 { transition-delay: 0.3s; }

/* ===== HERO ===== */
.sc-hero {
  background: var(--sc-dark);
  color: var(--sc-white);
  padding: 9rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle grain texture */
.sc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Decorative gradient orb */
.sc-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 91, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.sc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

/* Urgency badge */
.sc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--sc-coral);
  color: var(--sc-white);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.65rem 1.5rem;
  border-radius: var(--sc-radius-pill);
  margin-bottom: 2rem;
  animation: sc-pulse 2.5s ease-in-out infinite;
}

@keyframes sc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

.sc-hero__title {
  font-family: var(--sc-font-body);
  font-size: clamp(2.75rem, 9vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--sc-white);
}

.sc-hero__title .sc-highlight {
  color: var(--sc-coral);
}

.sc-hero__subtitle {
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  color: var(--sc-white);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.sc-hero__subtitle strong {
  color: var(--sc-white);
  opacity: 1;
}

.sc-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--sc-white);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--sc-radius-pill);
  margin-bottom: 2rem;
}

.sc-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sc-coral);
  color: var(--sc-white);
  font-family: var(--sc-font-body);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.2rem 2.75rem;
  border-radius: var(--sc-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--sc-transition);
  box-shadow: 0 4px 20px rgba(255, 107, 91, 0.3);
}

.sc-hero__cta:hover {
  background: var(--sc-coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 91, 0.4);
}

.sc-hero__cta:active {
  transform: translateY(0) scale(0.98);
}

/* ===== HIGHLIGHTS GRID ===== */
.sc-highlights {
  background: var(--sc-dark);
  padding: 3rem 2rem 2rem;
}

.sc-highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.sc-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--sc-radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--sc-transition), box-shadow var(--sc-transition);
}

.sc-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.09);
}

.sc-stat-card__number {
  font-family: var(--sc-font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--sc-coral);
  letter-spacing: -0.02em;
  line-height: 1;
}

.sc-stat-card__label {
  font-size: 1.125rem;
  color: var(--sc-text-light);
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ===== COSA FARAI — Pills (compact) ===== */
.sc-activities {
  background: var(--sc-dark);
  padding: 0 2rem 2rem;
}

.sc-section-title {
  font-family: var(--sc-font-body);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--sc-white);
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.sc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
}

.sc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--sc-radius-pill);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--sc-white);
  transition: all var(--sc-transition);
  white-space: nowrap;
}

.sc-pill:hover {
  border-color: var(--sc-coral);
  background: rgba(255, 107, 91, 0.12);
}

/* ===== BONUS BAR (compact) ===== */
.sc-bonus {
  background: var(--sc-dark-deep);
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-bonus__title {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sc-coral);
  text-align: center;
  margin-bottom: 1rem;
}

.sc-bonus__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.sc-bonus-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--sc-radius-pill);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sc-white);
}

/* ===== FEATURE CARDS (post-form, condensed) ===== */
.sc-features {
  background: var(--sc-dark);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-features__subtitle {
  font-size: 1.25rem;
  color: var(--sc-text-light);
  text-align: center;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

.sc-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.sc-feature-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--sc-radius);
  padding: 2rem;
  transition: transform var(--sc-transition), box-shadow var(--sc-transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.09);
}

.sc-feature-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sc-white);
  margin-bottom: 0.5rem;
}

.sc-feature-card__text {
  font-size: 1.1875rem;
  color: var(--sc-text-light);
  line-height: 1.65;
}

.sc-feature-card__text strong {
  color: var(--sc-white);
  font-weight: 600;
}

/* ===== FORM WIZARD ===== */
.sc-wizard {
  background: var(--sc-dark);
  padding: 3rem 2rem 4rem;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Progress bar */
.sc-progress {
  width: 100%;
  max-width: 520px;
  margin-bottom: 2rem;
}

.sc-progress__bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.sc-progress__fill {
  height: 100%;
  background: var(--sc-coral);
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-progress__label {
  font-size: 0.9375rem;
  color: var(--sc-text-light);
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 500;
}

/* Form element needs full width */
.sc-wizard form {
  width: 100%;
  max-width: 520px;
}

/* Step container */
.sc-wizard__steps {
  width: 100%;
  position: relative;
}

.sc-step {
  display: none;
  animation: sc-stepIn 0.35s ease forwards;
}

.sc-step.active {
  display: block;
}

@keyframes sc-stepIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.sc-step__question {
  font-family: var(--sc-font-body);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--sc-white);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.sc-step__hint {
  font-size: 1.125rem;
  color: var(--sc-text-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.sc-step__hint--warn {
  color: var(--sc-coral);
}

/* Option cards (radio/checkbox) */
.sc-options {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sc-option {
  position: relative;
  cursor: pointer;
  display: block;
}

.sc-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sc-option__card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sc-radius-sm);
  padding: 1.125rem 1.375rem;
  color: var(--sc-white);
  font-size: 1.1875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.sc-option__card:active {
  transform: scale(0.97);
}

/* Indicator dot/check */
.sc-option__check {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  transition: all 0.2s ease;
}

/* Checkbox variant: rounded square */
.sc-option--checkbox .sc-option__check {
  border-radius: 6px;
}

/* Selected state */
.sc-option input:checked ~ .sc-option__card {
  border-color: var(--sc-coral);
  background: rgba(255, 107, 91, 0.1);
}

.sc-option input:checked ~ .sc-option__card .sc-mi--opt {
  opacity: 1;
  color: var(--sc-coral);
}

.sc-option input:checked ~ .sc-option__card .sc-option__check {
  border-color: var(--sc-coral);
  background: var(--sc-coral);
}

.sc-option input:checked ~ .sc-option__card .sc-option__check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--sc-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.sc-option--checkbox input:checked ~ .sc-option__card .sc-option__check::after {
  width: 10px;
  height: 6px;
  background: none;
  border-left: 2px solid var(--sc-white);
  border-bottom: 2px solid var(--sc-white);
  border-radius: 0;
  transform: translate(-50%, -60%) rotate(-45deg);
}

/* Disabled checkbox state */
.sc-option.sc-option--disabled .sc-option__card {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Hover */
@media (hover: hover) {
  .sc-option:not(.sc-option--disabled) .sc-option__card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
  }

  .sc-option input:checked ~ .sc-option__card:hover {
    border-color: var(--sc-coral-hover);
    background: rgba(255, 107, 91, 0.14);
  }
}

/* Text inputs (step 5) */
.sc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sc-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sc-input-group label {
  font-size: 1.125rem;
  color: var(--sc-text-light);
  font-weight: 500;
}

.sc-label-with-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.sc-hint-inline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.sc-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sc-radius-sm);
  padding: 1rem 1.125rem;
  color: var(--sc-white);
  font-family: var(--sc-font-body);
  font-size: 1.125rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.sc-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.sc-input:focus {
  border-color: var(--sc-coral);
}

/* ===== CONTACT PREFERENCE CHIPS ===== */
.sc-contact-chips {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.sc-contact-chip {
  cursor: pointer;
  position: relative;
}

.sc-contact-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sc-contact-chip__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--sc-radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--sc-white);
  font-size: 1.0625rem;
  font-weight: 500;
  transition: all 0.2s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.sc-contact-chip input:checked + .sc-contact-chip__inner {
  border-color: var(--sc-coral);
  background: rgba(255, 107, 91, 0.12);
  color: var(--sc-coral);
}

.sc-contact-chip input:checked + .sc-contact-chip__inner .sc-mi {
  color: var(--sc-coral);
}

@media (hover: hover) {
  .sc-contact-chip__inner:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
  }
}

/* Wizard buttons */
.sc-wizard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--sc-coral);
  color: var(--sc-white);
  font-family: var(--sc-font-body);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.125rem 2.25rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all var(--sc-transition);
  margin-top: 1.25rem;
  box-shadow: 0 4px 20px rgba(255, 107, 91, 0.3);
}

.sc-wizard-btn:hover {
  background: var(--sc-coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 91, 0.4);
}

.sc-wizard-btn:active {
  transform: translateY(0) scale(0.98);
}

.sc-wizard-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.sc-wizard-btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
  font-weight: 500;
  margin-top: 0.625rem;
}

.sc-wizard-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

/* ===== SUCCESS STATE ===== */
.sc-success {
  display: none;
  text-align: center;
  padding: 6rem 2rem;
  color: var(--sc-white);
}

.sc-success.active {
  display: block;
}

.sc-success__icon {
  font-size: 56px;
  color: var(--sc-coral);
  animation: sc-bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  display: block;
  margin-bottom: 1rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

@keyframes sc-bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

.sc-success__title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  animation: sc-fadeUp 0.5s ease 0.2s both;
}

.sc-success__text {
  font-size: 1.1875rem;
  color: var(--sc-text-light);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
  animation: sc-fadeUp 0.5s ease 0.35s both;
}

@keyframes sc-fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* Decorative dots */
.sc-success__dots {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sc-success__dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sc-coral);
  opacity: 0;
  animation: sc-confetti 1.5s ease forwards;
}

@keyframes sc-confetti {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  30% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: translateY(-80px) scale(0.5); }
}

/* ===== MINIMAL HEADER ===== */
.sc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: rgba(16, 36, 35, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-header__logo {
  height: 40px;
  width: auto;
}

/* ===== MINIMAL FOOTER ===== */
.sc-mini-footer {
  background: var(--sc-dark-deep);
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-mini-footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.sc-mini-footer__links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sc-mini-footer__links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.sc-mini-footer p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8125rem;
  margin: 0;
}

/* ===== REQUIRED / OPTIONAL INDICATORS ===== */
.sc-required {
  color: var(--sc-coral);
  font-weight: 700;
}

.sc-optional {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  font-weight: 400;
}

/* ===== INPUT ERROR STATE ===== */
.sc-input--error {
  border-color: var(--sc-coral) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 91, 0.2);
}

/* ===== FOOTER NOTE ===== */
.sc-footer-note {
  background: var(--sc-dark-deep);
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.0625rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== RESPONSIVE ===== */

/* Tablets / larger phones */
@media (min-width: 640px) {
  .sc-features__grid {
    grid-template-columns: 1fr;
  }

  .sc-step__question {
    text-align: center;
  }

  .sc-options {
    max-width: 440px;
    margin: 0 auto;
  }

  .sc-inputs {
    max-width: 440px;
    margin: 0 auto;
  }

  .sc-contact-chips {
    justify-content: center;
  }
}

/* Desktop */
@media (min-width: 768px) {
  .sc-hero {
    padding: 10rem 2rem 5rem;
  }

  .sc-highlights__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 720px;
  }

  .sc-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sc-feature-card {
    padding: 2rem 1.75rem;
  }

  .sc-wizard {
    padding: 3.5rem 2rem 4.5rem;
    min-height: 50vh;
  }
}

/* Large screens */
@media (min-width: 1024px) {
  .sc-hero__title {
    font-size: 5rem;
  }

  .sc-hero__subtitle {
    font-size: 1.5rem;
  }

  .sc-stat-card__number {
    font-size: 3.5rem;
  }

  .sc-stat-card__label {
    font-size: 1.1875rem;
  }

  .sc-section-title {
    font-size: 3rem;
  }

  .sc-step__question {
    font-size: 2.75rem;
  }

  .sc-feature-card__title {
    font-size: 1.625rem;
  }

  .sc-feature-card__text {
    font-size: 1.25rem;
  }

  .sc-mi--stat {
    font-size: 36px;
  }

  .sc-mi--feature {
    font-size: 40px;
  }
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 480px) {
  .sc-header {
    padding: 0.75rem 1.25rem;
  }

  .sc-header__logo {
    height: 34px;
  }

  .sc-hero {
    padding: 7rem 1.25rem 3rem;
    min-height: auto;
  }

  .sc-hero__title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .sc-hero__subtitle {
    font-size: 1.0625rem;
  }

  .sc-hero__cta {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .sc-badge {
    font-size: 0.9375rem;
    padding: 0.5rem 1.125rem;
  }

  .sc-time-pill {
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
  }

  .sc-highlights {
    padding: 2rem 1.25rem 1.5rem;
  }

  .sc-highlights__grid {
    gap: 0.75rem;
  }

  .sc-stat-card {
    padding: 1.125rem;
  }

  .sc-stat-card__number {
    font-size: 2rem;
  }

  .sc-stat-card__label {
    font-size: 0.875rem;
  }

  .sc-mi--stat {
    font-size: 24px;
  }

  .sc-activities {
    padding: 0 1.25rem 1.5rem;
  }

  .sc-section-title {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
  }

  .sc-pill {
    font-size: 0.9375rem;
    padding: 0.5rem 0.875rem;
  }

  .sc-bonus {
    padding: 1.5rem 1.25rem;
  }

  .sc-bonus-chip {
    font-size: 0.9375rem;
    padding: 0.5rem 0.875rem;
  }

  .sc-wizard {
    padding: 2.5rem 1.25rem 3rem;
    min-height: auto;
  }

  .sc-step__question {
    font-size: clamp(1.375rem, 6vw, 1.625rem);
  }

  .sc-option__card {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .sc-wizard-btn {
    font-size: 1.0625rem;
    padding: 0.9375rem 1.5rem;
  }

  .sc-features {
    padding: 3rem 1.25rem;
  }

  .sc-feature-card {
    padding: 1.5rem;
  }

  .sc-feature-card__title {
    font-size: 1.125rem;
  }

  .sc-feature-card__text {
    font-size: 1rem;
  }

  .sc-footer-note {
    padding: 1.5rem 1.25rem;
    font-size: 0.9375rem;
  }

  .sc-success {
    padding: 4rem 1.25rem;
  }

  .sc-success__title {
    font-size: 1.875rem;
  }

  .sc-contact-chip__inner {
    font-size: 0.875rem;
    padding: 0.5rem 0.875rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  .sc-reveal,
  .sc-badge,
  .sc-step,
  .sc-success__icon,
  .sc-success__title,
  .sc-success__text,
  .sc-success__dots span {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .sc-progress__fill {
    transition: none;
  }
}

/* Focus visible for keyboard nav */
.sc-option input:focus-visible ~ .sc-option__card {
  outline: 2px solid var(--sc-coral);
  outline-offset: 2px;
}

.sc-input:focus-visible {
  outline: 2px solid var(--sc-coral);
  outline-offset: 2px;
}

.sc-contact-chip input:focus-visible + .sc-contact-chip__inner {
  outline: 2px solid var(--sc-coral);
  outline-offset: 2px;
}
