/* ═══════════════════════════════════════════════════════════════
   PRONTO ONLINE — style.css
   Design system: inMetamorfosi (navy + orange)
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --dark:        #0c1127;
  --dark-2:      #111b36;
  --dark-card:   #192040;
  --dark-border: rgba(255,255,255,.08);
  --orange:      #f97316;
  --orange-dark: #ea6c0e;
  --orange-glow: rgba(249,115,22,.18);
  --white:       #ffffff;
  --muted:       #94a3b8;
  --muted-2:     #64748b;
  --light-bg:    #f5f7ff;
  --light-card:  #ffffff;
  --light-border:#e2e8f0;
  --text-dark:   #0f172a;
  --text-mid:    #374151;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.20);
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
}

em { font-style: italic; color: var(--orange); }

/* ── CONTAINER ───────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.06);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ── NOTICE BAR ───────────────────────────────────────────────── */
.notice-bar {
  background: var(--orange);
  color: var(--white);
  padding: 10px 16px;
  text-align: center;
  font-size: .875rem;
  font-weight: 500;
  position: relative;
  z-index: 100;
}
.notice-inner { max-width: 960px; margin: 0 auto; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(12,17,39,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  font-size: 1.2rem;
}
.logo-rocket { font-size: 1.4rem; }
.logo-text { color: var(--white); }
.logo-accent { color: var(--orange); }
.logo-by {
  font-size: .7rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--dark-2);
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner { position: relative; }

.hero-badge {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.35);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 36px;
}
.hero-subtitle strong { color: var(--white); }

/* ── HERO SOCIAL PROOF ───────────────────────────────────────── */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 10px 20px 10px 10px;
  margin-bottom: 28px;
}

.social-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--av-bg);
  border: 2.5px solid #111b36;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 800;
  color: var(--white);
  margin-left: -10px;
  position: relative;
  transition: transform var(--transition);
  cursor: default;
}
.avatar:first-child { margin-left: 0; }
.avatar:hover { transform: scale(1.15); z-index: 10; }

.social-text {
  text-align: left;
  line-height: 1.35;
}

.social-stars {
  color: #fbbf24;
  font-size: .9rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 2px;
}

.social-quote {
  font-size: .78rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 2px;
}

.social-meta {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.stat {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
}
.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--dark-border);
  flex-shrink: 0;
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker {
  background: var(--orange);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 32px;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track span {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  flex-shrink: 0;
}

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

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 88px 0; }
.section-light { background: var(--light-bg); }
.section-dark  { background: var(--dark-2); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}
.section-light .section-title { color: var(--text-dark); }
.section-dark  .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-light .section-subtitle { color: var(--text-mid); }
.section-dark  .section-subtitle { color: var(--muted); }

/* ── CARDS GRID 3 ────────────────────────────────────────────── */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-dark {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--white);
}
.card-light {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.card-dark h3 { color: var(--white); }
.card-light h3 { color: var(--text-dark); }

.card p {
  font-size: .92rem;
  line-height: 1.65;
}
.card-dark p { color: var(--muted); }
.card-light p { color: var(--text-mid); }

.card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,.35);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}

/* ── PRICE SUMMARY ───────────────────────────────────────────── */
.price-summary {
  background: var(--dark-card);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.price-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.price-vat {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}

.price-note {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 24px;
}

.price-sub {
  font-size: .8rem;
  color: var(--muted-2);
  margin-top: 12px;
}

/* ── FEATURED GRID (differenziatori) ─────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card-featured {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: transform var(--transition);
}
.card-featured:hover { transform: translateY(-4px); }

.card-featured-accent {
  background: linear-gradient(145deg, #1a2756 0%, #192040 100%);
  border-color: rgba(249,115,22,.4);
  box-shadow: 0 0 40px rgba(249,115,22,.12);
}

.featured-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(249,115,22,.15);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}

.featured-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.card-featured h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.featured-tagline {
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}

.card-featured p:not(.featured-tagline) {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.featured-highlight {
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.3);
  color: var(--orange);
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
}

/* ── COMPARISON TABLE ────────────────────────────────────────── */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--light-card);
  font-size: .92rem;
}

.comparison-table th {
  background: var(--text-dark);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--light-border);
  color: var(--text-dark);
  vertical-align: middle;
}
.comparison-table td strong { color: var(--text-dark); }
.comparison-table td small {
  display: block;
  color: var(--muted-2);
  font-size: .8rem;
  margin-top: 2px;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover:not(.row-highlight) { background: #f8faff; }

.row-highlight { background: #fff7f0 !important; }
.row-highlight td { border-bottom: none; }
.row-highlight td:first-child { border-left: 3px solid var(--orange); }

.yes  { color: #16a34a; font-weight: 700; }
.no   { color: #dc2626; }
.zero { color: var(--orange); font-size: 1.05rem; }

/* ── STEPS ───────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(249,115,22,.15);
}

.step-content { flex: 1; }

.step-time {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.step h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}

.step p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(249,115,22,.3));
  margin-top: 29px;
  flex-shrink: 0;
}

.formula-box {
  background: rgba(249,115,22,.08);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.formula-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.formula-text {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}

.formula-sub {
  font-size: .85rem;
  color: var(--muted);
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.testimonial {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #fbbf24);
  color: var(--white);
  font-size: .8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: .9rem;
  color: var(--white);
}
.testimonial-author span {
  font-size: .78rem;
  color: var(--muted);
}

.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .9rem;
}
.rating-stars { color: #fbbf24; font-size: 1.1rem; }
.rating-score { font-weight: 800; color: var(--white); font-size: 1.1rem; }
.rating-source { color: var(--muted); }
.rating-count { color: var(--muted-2); }

/* ── URGENCY ─────────────────────────────────────────────────── */
.section-urgent {
  background: linear-gradient(135deg, #1a0a00 0%, #2a1500 50%, #1a0a00 100%);
  border-top: 1px solid rgba(249,115,22,.3);
  border-bottom: 1px solid rgba(249,115,22,.3);
}

.urgency-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.urgency-eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.urgency-inner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.urgency-inner > p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: .95rem;
  line-height: 1.7;
}

.urgency-bar-wrap {
  background: rgba(0,0,0,.3);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
}

.urgency-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.urgency-bar-pct { color: var(--orange); font-weight: 700; }

.progress-bar {
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #fbbf24);
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

.urgency-warning {
  font-size: .82rem;
  color: var(--orange);
  font-weight: 600;
}

.urgency-note {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ── FORM ────────────────────────────────────────────────────── */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.form-left h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.form-left > p {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.form-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-mid);
}
.guarantee-icon { flex-shrink: 0; }

.form-price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 20px;
  background: #fff7f0;
  border: 1px solid rgba(249,115,22,.3);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.form-price-label { font-size: .85rem; color: var(--text-mid); font-weight: 600; }
.form-price-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.form-price-value small { font-size: .9rem; font-weight: 500; color: var(--muted-2); }

.form-price-iva {
  font-size: .75rem;
  color: var(--muted-2);
  margin-top: -16px;
  margin-bottom: 20px;
}

.form-guarantee-badge {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.badge-icon { font-size: 1.6rem; flex-shrink: 0; }
.form-guarantee-badge strong { display: block; font-size: .9rem; color: var(--text-dark); margin-bottom: 4px; }
.form-guarantee-badge p { font-size: .82rem; color: var(--text-mid); line-height: 1.55; }

/* Form fields */
.contact-form {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group:last-of-type { margin-bottom: 0; }

label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

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

input::placeholder, textarea::placeholder {
  color: #aab0c2;
}

textarea { resize: vertical; min-height: 90px; }

select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--orange);
}
.form-check label {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a { color: var(--orange); text-decoration: underline; }

.form-footer-note {
  font-size: .75rem;
  color: var(--muted-2);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.form-success {
  display: none;
  background: var(--light-card);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.form-success.visible { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 12px; }
.form-success p { color: var(--text-mid); font-size: .95rem; line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto 40px;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-question[aria-expanded="true"] { color: var(--orange); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--orange);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding-bottom: 22px;
}
.faq-answer p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 32px;
}
.faq-cta p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: .9rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: #08101f;
  padding: 60px 0 32px;
  border-top: 1px solid var(--dark-border);
}

.footer-top {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand { flex: 1; min-width: 220px; }
.footer-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-brand a { color: var(--orange); }

.footer-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: .85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--muted-2);
  line-height: 1.6;
}
.footer-bottom p + p { margin-top: 8px; }

/* ── STICKY CTA ──────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(12,17,39,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--dark-border);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-cta.visible { transform: translateY(0); }

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sticky-inner p {
  font-size: .88rem;
  color: var(--muted);
  flex: 1;
}
.sticky-inner p strong { color: var(--white); }

/* ── SCROLL FADE ANIMATION ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps {
    flex-direction: column;
    align-items: flex-start;
  }
  .step { flex-direction: row; text-align: left; padding: 0; }
  .step-number { margin-bottom: 0; margin-right: 20px; }
  .step-connector { width: 2px; height: 40px; margin: 0 0 0 29px; background: linear-gradient(180deg, var(--orange), rgba(249,115,22,.2)); }

  .hero-stats { flex-direction: column; gap: 0; }
  .stat-divider { width: 100%; height: 1px; }

  .footer-top { flex-direction: column; gap: 32px; }
}

@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 56px; }

  .hero-social-proof { padding: 8px 16px 8px 8px; gap: 10px; }
  .avatar { width: 32px; height: 32px; font-size: .6rem; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

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

  .nav-inner .logo-by { display: none; }
  .nav-cta { padding: 10px 16px; font-size: .85rem; }

  .cards-grid-3 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }

  .contact-form { padding: 24px 20px; }

  .sticky-inner p { display: none; }

  .comparison-table th,
  .comparison-table td { padding: 12px 14px; font-size: .82rem; }
}
