:root {
  --brand: #635bff;
  --brand-2: #7c3aed;
  --text: #1d2444;
  --text-secondary: #374151;
  --muted: var(--text-secondary);
  --bg: #f7f8ff;
  --surface: #ffffff;
  --border: rgba(99, 91, 255, 0.16);
  --ring: rgba(99, 91, 255, 0.34);
  --shadow-soft: 0 14px 36px rgba(27, 33, 86, 0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1100px;
  --transition: 150ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(1100px 560px at -10% -10%, rgba(99, 91, 255, 0.12), transparent 62%),
    radial-gradient(900px 480px at 110% -4%, rgba(124, 58, 237, 0.1), transparent 62%),
    var(--bg);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.12rem;
}

p {
  line-height: 1.6;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: 2.6rem 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(247, 248, 255, 0.86);
  border-bottom: 1px solid rgba(99, 91, 255, 0.1);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(99, 91, 255, 0.24);
  background: rgba(99, 91, 255, 0.06);
}

.hero-wrap {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  display: grid;
  gap: 0.85rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero-subtitle {
  color: var(--muted);
  max-width: 62ch;
}

.hero-image,
.hero-image * {
  background: transparent !important;
}

.hero-image{
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative;
  display:flex;
  justify-content:center;
  margin: 24px 0 18px;
  filter: drop-shadow(0 35px 85px rgba(0,0,0,.18));
}

.hero-image::before,
.hero-image::after{
  content:none !important;
}

.hero-image img{
  width: 100%;
  max-width: 520px;
  height: auto;
  background: transparent !important;
}

.hero-actions {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.65rem;
  max-width: 320px;
}

.hero-proof {
  margin-top: 0.35rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.trust-stack {
  margin-top: 1.65rem;
  margin-bottom: 0.45rem;
  justify-items: center;
  text-align: center;
}

.trust-line {
  margin: 1.25rem 0 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  color: #232936;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.35;
}

.trust-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.trust-star {
  width: 100%;
  height: 100%;
  display: block;
  fill: #f5b301;
  stroke: #111827;
  stroke-width: 1.05;
  filter: drop-shadow(0 1px 1px rgba(17, 24, 39, 0.18));
}

@media (max-width: 480px) {
  .trust-stack {
    margin-top: 1.5rem;
    margin-bottom: 0.38rem;
  }

  .trust-line {
    margin: 1rem 0 1.05rem;
    font-size: 0.94rem;
    gap: 0.45rem;
  }

  .trust-icon {
    width: 18px;
    height: 18px;
  }
}

.offers-top {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  position: relative;
  z-index: 3;
}

#select-offer {
  scroll-margin-top: 96px;
}

.offers-nav {
  position: relative;
  display: inline-flex;
  gap: 0.5rem;
}

.formulas-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  margin-right: 0.25rem;
  color: var(--brand);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
  transition: opacity var(--transition);
}

.formulas-trigger:hover {
  opacity: 0.78;
  text-decoration: underline;
}

.formulas-trigger:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 8px;
}

.formulas-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  max-width: 320px;
  margin-top: 0.45rem;
  padding: 0.35rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
  z-index: 9999;
}

.offers-shell {
  position: relative;
  z-index: 1;
}

.formulas-dropdown.is-open {
  display: block;
}

.formulas-item {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  text-align: left;
  color: #3f4882;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.formulas-item:hover,
.formulas-item:focus-visible {
  background: rgba(99, 91, 255, 0.1);
  color: #2f3570;
  outline: none;
}

.formula-target {
  border-color: rgba(99, 91, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.18), var(--shadow-soft);
}

.offers-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font: inherit;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.offers-arrow:hover {
  transform: translateY(-1px);
}

.offers-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 84vw);
  gap: 0.9rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.2rem;
  overscroll-behavior-x: contain;
  padding: 0.15rem 0.1rem 0.85rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(99, 91, 255, 0.35) rgba(255, 255, 255, 0.7);
}

.offers-track::-webkit-scrollbar {
  height: 8px;
}

.offers-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.35);
}

.offers-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.76);
}

.offer-card {
  scroll-snap-align: start;
  border: 1px solid rgba(99, 91, 255, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 29, 74, 0.07);
  padding: 1.7rem 1.5rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.offer-subtitle {
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 600;
}

.offer-mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.offer-mini-badge {
  border-radius: 999px;
  border: 1px solid rgba(99, 91, 255, 0.24);
  background: rgba(99, 91, 255, 0.08);
  color: #3f4882;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.26rem 0.6rem;
}

.offer-mini-badge-premium {
  border-color: rgba(99, 91, 255, 0.36);
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.2), rgba(124, 58, 237, 0.13));
  color: #2f3570;
  box-shadow: 0 6px 14px rgba(99, 91, 255, 0.14);
}

.offer-mini-badge-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  border-color: rgba(99, 91, 255, 0.4);
  background: rgba(99, 91, 255, 0.12);
  color: #332f73;
}

.offer-mini-badge-icon {
  color: #635bff;
  font-size: 0.72rem;
  line-height: 1;
}

.offer-price {
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.offer-card p {
  color: var(--muted);
  line-height: 1.62;
}

.offer-rating {
  margin-top: 0.1rem;
  color: #635bff;
  font-weight: 700;
  font-size: 0.83rem;
}

.offer-rating span {
  color: var(--text-secondary);
  font-weight: 600;
}

.offer-quality-badge {
  margin-top: 0.4rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(99, 91, 255, 0.2);
  background: rgba(99, 91, 255, 0.06);
  box-shadow: 0 8px 18px rgba(28, 34, 84, 0.06);
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
}

.offer-quality-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(99, 91, 255, 0.12);
  color: #4b44d6;
}

.offer-quality-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.offer-quality-title {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
}

.offer-quality-subtitle {
  margin-top: 0.12rem;
  color: var(--text-secondary);
  font-size: 0.74rem;
  line-height: 1.3;
}

.offer-promise-badge {
  margin-top: 0.42rem;
  padding: 0.62rem 0.72rem;
  border-radius: 14px;
  border: 1px solid rgba(99, 91, 255, 0.22);
  background: rgba(99, 91, 255, 0.06);
  box-shadow: 0 8px 18px rgba(29, 35, 87, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
}

.offer-promise-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(99, 91, 255, 0.12);
  color: #4b44d6;
  flex: 0 0 auto;
}

.offer-promise-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.offer-promise-title {
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.25;
}

.offer-promise-subtitle {
  margin-top: 0.12rem;
  color: var(--text-secondary);
  font-size: 0.74rem;
  line-height: 1.3;
}

.offer-125-badge {
  margin-top: 0.42rem;
  padding: 0.62rem 0.72rem;
  border-radius: 14px;
  border: 1px solid rgba(99, 91, 255, 0.22);
  background: rgba(99, 91, 255, 0.06);
  box-shadow: 0 8px 18px rgba(29, 35, 87, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.offer-125-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(99, 91, 255, 0.12);
  color: #4b44d6;
  flex: 0 0 auto;
}

.offer-125-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.offer-125-content {
  display: grid;
  gap: 0.3rem;
}

.offer-125-title {
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.2;
}

.offer-125-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.offer-125-pill {
  border-radius: 999px;
  border: 1px solid rgba(99, 91, 255, 0.24);
  background: rgba(99, 91, 255, 0.09);
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.18rem 0.48rem;
}

.offer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.offer-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.62;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #635bff;
  font-weight: 800;
}

[data-formula-card="true"] .offer-subtitle,
[data-formula-card="true"] .offer-list {
  display: none;
}

.offer-actions {
  margin-top: auto;
  display: grid;
  gap: 0.55rem;
}

.offer-btn {
  min-height: 48px;
}

.offer-btn-secondary {
  min-height: 46px;
}

.faq {
  padding-top: 2.2rem;
}

.faq-head {
  margin-bottom: 1rem;
}

.faq-head p {
  color: var(--muted);
}

.faq-tabs {
  margin-bottom: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-tab {
  border-radius: 999px;
  border: 1px solid rgba(99, 91, 255, 0.2);
  background: #fff;
  color: var(--text-secondary);
  font: inherit;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.45rem 0.82rem;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.faq-tab.is-active,
.faq-tab[aria-selected="true"] {
  background: rgba(99, 91, 255, 0.1);
  border-color: rgba(99, 91, 255, 0.42);
  color: #3a4280;
  box-shadow: 0 8px 18px rgba(99, 91, 255, 0.12);
}

.faq-accordion {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
  transition: background-color var(--transition);
}

.faq-trigger:hover {
  background: rgba(99, 91, 255, 0.04);
}

.faq-chevron {
  color: var(--brand);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 180ms ease;
}

.faq-item.is-open .faq-panel {
  max-height: 420px;
}

.faq-panel > * {
  margin: 0;
}

.faq-panel p,
.faq-panel ul {
  padding: 0 1.1rem;
}

.faq-panel p {
  color: var(--muted);
}

.faq-panel ul {
  margin: 0.55rem 0;
  color: var(--text-secondary);
  padding-left: 2.1rem;
  display: grid;
  gap: 0.34rem;
}

.faq-panel p:last-child {
  padding-bottom: 1rem;
}

.faq-advantage-section {
  padding-top: 1rem;
}

.faq-advantage {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem;
}

.faq-advantage h3 {
  margin-bottom: 0.55rem;
}

.faq-advantage ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.faq-advantage li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-secondary);
}

.faq-advantage li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #635bff;
  font-weight: 800;
}

.social-block {
  padding-top: 1.8rem;
}

.social-proof {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.social-proof strong {
  color: var(--text);
}

.final-cta-card {
  padding: clamp(1.3rem, 3.6vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(140deg, rgba(99, 91, 255, 0.09), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

.final-cta-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.btn {
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  padding: 0.86rem 1.05rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(122deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 24px rgba(99, 91, 255, 0.28);
}

.btn-secondary {
  color: var(--brand);
  background: #fff;
  border: 1px solid rgba(99, 91, 255, 0.24);
}

.btn:focus-visible,
.brand:focus-visible,
.offers-arrow:focus-visible,
.offers-track:focus-visible,
.faq-tab:focus-visible,
.faq-trigger:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.footer {
  padding: 1.2rem 0 1.8rem;
}

.footer-inner {
  border-top: 1px solid rgba(29, 36, 68, 0.12);
  padding-top: 1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-meta {
  color: var(--text-secondary);
  font-size: 0.83rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.offer-modal-open {
  overflow: hidden;
}

.offer-modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  background: rgba(19, 24, 58, 0.45);
  backdrop-filter: blur(8px);
  z-index: 10010;
}

.offer-modal-overlay.is-open {
  display: flex;
}

.offer-modal {
  width: 100%;
  min-height: auto;
  max-height: 90vh;
  background: #fff;
  padding: 1.25rem 1.15rem 1.35rem;
  overflow-y: auto;
}

.offer-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand);
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.offer-modal-head {
  margin-top: 1rem;
}

.offer-modal-title {
  font-size: clamp(1.35rem, 4vw, 1.95rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.offer-modal-price {
  margin-top: 0.6rem;
  font-size: clamp(1.32rem, 3.8vw, 1.8rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.offer-modal-price-row {
  margin-top: 0.85rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.offer-modal-price-row .offer-modal-price {
  margin-top: 0;
}

.hours-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin-bottom: 0.45rem;
}

.hours-filter-btn,
.hour-badge {
  border: 1px solid rgba(99, 91, 255, 0.2);
  background: #fff;
  color: #564db8;
  border-radius: 11px;
  min-width: 58px;
  min-height: 40px;
  padding: 0.42rem 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.hours-filter-btn:hover,
.hour-badge:hover {
  background: rgba(99, 91, 255, 0.08);
  border-color: rgba(99, 91, 255, 0.3);
  color: #4c43b2;
}

.hours-filter-btn:focus-visible,
.hour-badge:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgba(99, 91, 255, 0.12);
}

.hours-filter-btn.is-active,
.hours-filter-btn.is-selected,
.hour-badge.is-active,
.hour-badge.is-selected {
  background: #635bff;
  border-color: #5a51f7;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 5px 12px rgba(99, 91, 255, 0.2);
}

@media (max-width: 480px) {
  .offer-card {
    padding: 1.55rem 1.2rem;
    gap: 0.82rem;
  }

  .offer-modal {
    padding: 1.35rem 1.2rem 1.45rem;
  }

  .hours-filter {
    gap: 0.56rem;
  }

  .hours-filter-btn,
  .hour-badge {
    min-width: 56px;
    min-height: 40px;
    padding: 0.38rem 0.64rem;
    font-size: 0.84rem;
    flex: 0 0 auto;
  }

  .offer-modal-content {
    margin-top: 1.2rem;
    gap: 0.95rem;
  }

  .offer-conditions-trigger {
    padding: 0.78rem 0.12rem;
  }

  .offer-conditions-panel,
  .offer-profile-panel {
    padding: 0 0.12rem 0.9rem;
  }
}

.offer-delay-main {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.79rem;
  line-height: 1.45;
}

.offer-delay-sub {
  margin: 0.3rem 0 0;
  color: var(--text-secondary);
  font-size: 0.75rem;
  line-height: 1.35;
}

.offer-delay-link {
  display: inline-block;
  margin-top: 0.28rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.offer-delay-link:hover {
  text-decoration: underline;
}

.offer-modal-actions {
  margin-top: 1.65rem;
  display: grid;
  gap: 0.8rem;
}

.offer-modal-btn {
  min-height: 52px;
}

.offer-modal-btn-secondary {
  color: var(--brand);
  background: #fff;
  border: 1px solid rgba(99, 91, 255, 0.26);
}

.modal-faq-hint {
  margin: 1.25rem 0 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
}

.modal-faq-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.modal-faq-link:hover {
  text-decoration: underline;
}

.offer-modal-content {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.15rem;
}

.offer-modal-content .offer-subtitle {
  display: block;
  color: var(--text-secondary);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.55;
}

.offer-modal-content .offer-list {
  display: grid;
  gap: 0.68rem;
}

.offer-conditions {
  margin-top: 1.05rem;
  border: 0;
  border-bottom: 1px solid rgba(99, 91, 255, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.offer-conditions + .offer-conditions {
  margin-top: 0.75rem;
}

.offer-conditions-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 0.78rem 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.offer-conditions-trigger:hover {
  background: rgba(99, 91, 255, 0.05);
}

.offer-conditions-trigger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  background: rgba(99, 91, 255, 0.05);
}

.offer-conditions-chevron {
  color: var(--brand);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.offer-conditions-trigger[aria-expanded="true"] .offer-conditions-chevron {
  transform: rotate(180deg);
}

.offer-conditions-panel {
  padding: 0 0.2rem 1.05rem;
}

.offer-conditions-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.offer-conditions-panel li {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.55;
}

.offer-profile-panel {
  padding: 0 0.2rem 1.05rem;
}

.offer-profile-subtitle {
  margin: 0.15rem 0 0.55rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.offer-profile-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.offer-profile-panel li {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.55;
}

.offer-profile-panel li strong {
  color: var(--text);
  font-weight: 700;
}

.offer-profile-panel li p {
  margin: 0.2rem 0 0;
}

@media (min-width: 760px) {
  .offer-modal-overlay {
    align-items: center;
    padding: 1.5rem;
  }

  .offer-modal {
    max-width: 720px;
    min-height: auto;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 52px rgba(17, 21, 54, 0.22);
    padding: 1.25rem;
  }

  .offer-modal-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 760px) {
  .hero-actions,
  .final-cta-actions {
    grid-template-columns: auto;
    justify-content: flex-start;
  }

  .offers-track {
    grid-auto-columns: minmax(320px, 36vw);
  }

  .offer-actions {
    grid-template-columns: 1fr;
  }

  .faq-head {
    margin-bottom: 1.2rem;
  }

  .faq-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 0.2rem;
  }
}

@media (max-width:768px){
  .section.hero {
    padding: 1.4rem 0 1.2rem;
  }

  .hero-wrap {
    padding: 1.05rem 1rem;
    gap: 0.65rem;
  }

  .hero-image{
    margin: 16px 0 14px;
  }

  .hero-image img{
    max-width: 520px;
    max-height: 240px;
    width: 100%;
    object-fit: contain;
  }
}
