/* ═══════════════════════════════════════════
   HOMEPAGE — romanielvetia.ch
   ═══════════════════════════════════════════ */

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(150deg, #080f1e 0%, #0d1a34 40%, #1A2B4A 100%);
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200,16,46,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,175,90,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,90,.3), transparent);
}
.hero-section .container {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,90,.1);
  border: 1px solid rgba(212,175,90,.25);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 28px;
}
.hero-title {
  color: #FFFFFF;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 22px;
  max-width: 800px;
}
.hero-title .accent { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.hero-stat {}
.hero-stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
}

/* ── LEAD MAGNET BAR ── */
.leadmagnet-bar {
  background: linear-gradient(135deg, #14532d 0%, #166534 50%, #15803d 100%);
  padding: 28px 0;
  border-top: 2px solid #22c55e;
}
.leadmagnet-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .leadmagnet-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.leadmagnet-text { color: var(--white); flex: 1; }
.leadmagnet-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.leadmagnet-text span { font-size: .88rem; opacity: .8; }
.leadmagnet-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.leadmagnet-form input {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.2);
  font-size: .95rem;
  outline: none;
  background: rgba(255,255,255,.12);
  color: var(--white);
  min-width: 230px;
  transition: border-color .2s;
}
.leadmagnet-form input::placeholder { color: rgba(255,255,255,.5); }
.leadmagnet-form input:focus { border-color: rgba(255,255,255,.6); }
.leadmagnet-form .btn {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}
.leadmagnet-form .btn:hover {
  background: #C8A048;
  border-color: #C8A048;
  transform: translateY(-1px);
}

/* ── QUIZ ── */
.quiz-section {
  background: linear-gradient(150deg, #0a1020 0%, #0d1830 100%);
  padding: 96px 0;
}
.quiz-section .section-label { color: var(--gold); background: rgba(212,175,90,.1); }
.quiz-section h2 { color: var(--white); }
.quiz-section .section-title p { color: rgba(255,255,255,.55); }
.quiz-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}
.quiz-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.quiz-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #f0c878);
  border-radius: 2px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.quiz-progress-text { font-size: .78rem; color: rgba(255,255,255,.4); white-space: nowrap; font-weight: 600; }
.quiz-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.5;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  font-weight: 500;
  text-align: left;
  transition: all .2s;
  background: rgba(255,255,255,.03);
  cursor: pointer;
}
.quiz-option:hover { border-color: rgba(212,175,90,.4); background: rgba(212,175,90,.06); color: #fff; }
.quiz-option.selected { border-color: var(--gold); background: rgba(212,175,90,.1); color: var(--gold); }
.quiz-option.correct  { border-color: #22c55e; background: rgba(34,197,94,.08); color: #4ade80; }
.quiz-option.wrong    { border-color: #ef4444; background: rgba(239,68,68,.08); color: #f87171; }
.quiz-explanation {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(212,175,90,.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  display: none;
  line-height: 1.6;
}
.quiz-explanation.show { display: block; }
.quiz-nav { display: flex; justify-content: flex-end; margin-top: 28px; }
.quiz-result { text-align: center; display: none; }
.quiz-result.show { display: block; }
.quiz-score {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.quiz-score-label { color: rgba(255,255,255,.5); margin-bottom: 24px; font-size: .9rem; }
.quiz-result-msg { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 28px; line-height: 1.65; }

/* ── PROBLEME / SOLUTII ── */
.probleme-section { background: var(--warm); padding: 96px 0; }
.probleme-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .probleme-grid { grid-template-columns: repeat(3,1fr); } }
.problema-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.problema-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.problema-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--gray-light);
}
.problema-icon { font-size: 2.2rem; margin-bottom: 10px; }
.problema-header h3 { font-size: 1.05rem; margin-bottom: 5px; color: var(--navy); }
.problema-header p { font-size: .83rem; color: var(--gray); margin: 0; line-height: 1.5; }
.problema-items { padding: 20px 28px; }
.problema-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: .87rem;
  color: var(--gray-dark);
  line-height: 1.4;
}
.problema-item:last-child { border-bottom: none; }
.problema-item .icon-x  { color: #ef4444; flex-shrink: 0; font-style: normal; }
.problema-item .icon-ok { color: #22c55e; flex-shrink: 0; font-style: normal; }

/* ── GHIDURI ── */
.ghiduri-section { background: #fff; padding: 96px 0; }
.ghiduri-grid { display: grid; gap: 18px; }
@media (min-width: 640px)  { .ghiduri-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .ghiduri-grid { grid-template-columns: repeat(3,1fr); } }
.ghid-card {
  border: 1.5px solid var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  background: var(--white);
}
.ghid-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(200,16,46,.1);
  transform: translateY(-3px);
}
.ghid-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, #243B6A 100%);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ghid-number {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}
.ghid-card-title {
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
}
.ghid-card-body { padding: 18px 22px; flex: 1; display: flex; flex-direction: column; }
.ghid-card-hook {
  font-size: .82rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.5;
  flex: 1;
}
.ghid-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--gray-light);
  padding-top: 14px;
}
.ghid-price { font-size: 1.05rem; font-weight: 800; color: var(--navy); }

/* Pachete */
.pachete-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .pachete-grid { grid-template-columns: repeat(3,1fr); } }
.pachet-card {
  border: 2px solid var(--gray-light);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all .25s;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.pachet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pachet-card.featured {
  border-color: var(--red);
  box-shadow: 0 8px 40px rgba(200,16,46,.12);
}
.pachet-best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  padding: 5px 18px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pachet-name { font-size: 1.1rem; font-weight: 900; color: var(--navy); margin-bottom: 6px; text-align: center; }
.pachet-ghiduri { font-size: .82rem; color: var(--gray); margin-bottom: 24px; text-align: center; }
.pachet-price-wrap { margin-bottom: 28px; text-align: center; }
.pachet-discount { margin-bottom: 8px; }
.pachet-features { margin-bottom: 28px; flex: 1; }
.pachet-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: .87rem;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-light);
  line-height: 1.4;
}
.pachet-feature:last-child { border: none; }
.pachet-feature::before { content: '✓'; color: #22c55e; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* Bonusuri */
.bonus-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .bonus-grid { grid-template-columns: repeat(3,1fr); } }
.bonus-card {
  background: var(--warm);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid var(--gray-light);
}
.bonus-icon { font-size: 2rem; margin-bottom: 12px; }
.bonus-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: .95rem; }
.bonus-desc { font-size: .83rem; color: var(--gray); line-height: 1.55; }
.bonus-note { text-align: center; margin-top: 24px; font-size: .85rem; color: var(--gray); }
.bonus-note strong { color: #16a34a; }

/* ── TOOLS SECTION ── */
.tools-section { background: var(--warm); padding: 96px 0; }

/* Calculator */
.calc-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.calc-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .calc-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .calc-grid { grid-template-columns: repeat(4,1fr); } }
.calc-results {
  display: none;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-light);
}
.calc-results.show { display: block; }
.calc-net-big {
  text-align: center;
  margin-bottom: 28px;
}
.calc-net-big .label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-bottom: 6px; }
.calc-net-big .amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
  letter-spacing: -.02em;
}
.calc-net-big .currency { font-size: 1.4rem; }
.calc-breakdown {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .calc-breakdown { grid-template-columns: repeat(3,1fr); } }
.calc-breakdown-item {
  background: var(--warm);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.calc-breakdown-item .bd-label { font-size: .75rem; color: var(--gray); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.calc-breakdown-item .bd-value { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.calc-breakdown-item.deductii .bd-value { color: var(--red); }

/* Comparator cantoane */
.canton-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.canton-toggle {
  padding: 8px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray);
  transition: all .2s;
}
.canton-toggle.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.canton-toggle:hover:not(.active) { border-color: var(--navy); color: var(--navy); }
.comparator-table-wrap { overflow-x: auto; border-radius: 16px; border: 1.5px solid var(--gray-light); }
.comparator-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.comparator-table th {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  text-align: right;
  font-weight: 700;
  font-size: .78rem;
  white-space: nowrap;
}
.comparator-table th:first-child { text-align: left; }
.comparator-table td {
  padding: 12px 16px;
  text-align: right;
  border-bottom: 1px solid var(--gray-light);
  white-space: nowrap;
  color: var(--gray-dark);
}
.comparator-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); }
.comparator-table tr:last-child td { border-bottom: none; }
.comparator-table .best  { color: #16a34a; font-weight: 800; }
.comparator-table .worst { color: var(--red); }

/* ── JOBURI ── */
.joburi-section { background: var(--white); padding: 96px 0; }
.joburi-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.job-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all .2s;
}
.job-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(200,16,46,.08); }
.job-icon {
  width: 50px; height: 50px;
  background: var(--warm);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.job-info { flex: 1; min-width: 0; }
.job-title { font-weight: 700; color: var(--navy); margin-bottom: 5px; font-size: .95rem; }
.job-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.job-meta span { font-size: .8rem; color: var(--gray); }
.job-canton { font-weight: 600; color: var(--navy); }
.job-salary { font-size: .92rem; font-weight: 800; color: var(--red); white-space: nowrap; text-align: right; }

/* ── SERVICII ── */
.servicii-section {
  background: linear-gradient(150deg, #080f1e 0%, #0d1a34 50%, #1A2B4A 100%);
  padding: 96px 0;
}
.servicii-section h2 { color: #fff; }
.servicii-section .section-title p { color: rgba(255,255,255,.55); }
.servicii-section .section-label { color: var(--gold); background: rgba(212,175,90,.1); }
.servicii-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .servicii-grid { grid-template-columns: repeat(3,1fr); } }
.serviciu-card {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: all .25s;
}
.serviciu-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(212,175,90,.3);
  transform: translateY(-4px);
}
.serviciu-card.featured {
  border-color: var(--gold);
  background: rgba(212,175,90,.05);
  box-shadow: 0 0 0 1px rgba(212,175,90,.2);
}
.serviciu-name { font-size: .7rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.serviciu-title { font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: 6px; }
.serviciu-subtitle { font-size: .83rem; color: rgba(255,255,255,.45); margin-bottom: 28px; line-height: 1.5; }
.serviciu-price { font-size: 2.4rem; font-weight: 900; color: var(--gold); margin-bottom: 4px; line-height: 1; letter-spacing: -.02em; }
.serviciu-price small { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.4); }
.serviciu-desc { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 28px; margin-top: 6px; }
.serviciu-features { flex: 1; margin-bottom: 28px; }
.serviciu-feature {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.4;
}
.serviciu-feature:last-child { border: none; }
.serviciu-feature::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ── TESTIMONIALE ── */
.testimoniale-section { background: var(--white); padding: 96px 0; }
.testimoniale-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .testimoniale-grid { grid-template-columns: repeat(3,1fr); } }
.testimonial-card {
  background: var(--warm);
  border-radius: 20px;
  padding: 36px 30px;
  border: 1.5px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.testimonial-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  font-family: Georgia, serif;
  opacity: .7;
}
.testimonial-text {
  font-size: .92rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--red));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .88rem; color: var(--navy); }
.testimonial-location { font-size: .78rem; color: var(--gray); }
.stars { color: #F59E0B; font-size: .85rem; margin-bottom: 3px; }

/* ── FAQ ── */
.faq-section { background: var(--warm); padding: 96px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.accordion-item {
  border: 1.5px solid var(--gray-light);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--white);
  transition: border-color .2s;
}
.accordion-item:hover { border-color: rgba(200,16,46,.2); }
.accordion-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  background: transparent;
  transition: color .2s;
}
.accordion-header.active { color: var(--red); }
.accordion-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1.5px solid var(--gray-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  color: var(--gray);
  transition: transform .25s, border-color .2s;
}
.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
  border-color: var(--red);
  color: var(--red);
}
.accordion-body {
  display: none;
  padding: 0 24px 22px;
  font-size: .9rem;
  color: var(--gray-dark);
  line-height: 1.75;
}
.accordion-body.active { display: block; }

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, #9b0c22 0%, var(--red) 60%, #d41230 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-9.5zm-2 4.5h-1v-1h-1v1H9v-1H8v1H6v-6h12v6h-2v-1zm10-4.5V18H0v5h5v5H0v5h20v-9.5zM0 0v5h5V0H0zm6 6v5h5V6H6zm6 6v5h5v-5h-5zm6 6v5h5v-5h-5z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-final .container-sm { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; margin-bottom: 16px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-final p  { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 36px; line-height: 1.65; }
.cta-final .btn-gold { box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.cta-final .btn-secondary {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  backdrop-filter: blur(4px);
}
.cta-final .btn-secondary:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
