:root {
  --black: #080808;
  --dark: #0f0f0f;
  --dark-2: #171717;
  --dark-3: #1f1f1f;
  --cream: #e8e2d6;
  --cream-soft: #c4bfb4;
  --gold: #1e5fb8;
  --gold-light: #3a7fd4;
  --white: #f2efe8;
  --gray: #6b6b6b;
  --gray-dark: #3a3a3a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ═══ HEADER ═══ */
.header {
  padding: 20px 24px 16px;
  text-align: center;
}
.header__logo-link {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.3s var(--ease);
}
.header__logo-link:hover { opacity: 0.8; }
.header__logo-img {
  display: block;
  height: 72px;
  width: auto;
  margin: 0 auto;
}

/* ═══ HERO ═══ */
.hero {
  padding: 32px 28px 28px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.hero__kicker {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 0.2s forwards;
}
.hero__title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 0.4s forwards;
}
.hero__title strong { font-weight: 600; }
.hero__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 0.6s forwards;
}

/* ═══ DIVIDER ═══ */
.divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  opacity: 0.3;
}

/* ═══ SECTION LABEL ═══ */
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}

/* ═══ PHOTO GALLERY (swipe + mouse drag) ═══ */
.gallery {
  padding: 4px 0 16px;
  max-width: 520px;
  margin: 0 auto;
}
.gallery__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
  text-align: center;
  padding: 0 28px;
}
.gallery__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 0 16px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.gallery__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.gallery__track::-webkit-scrollbar { display: none; }

.gallery__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 16px;
  box-sizing: border-box;
}
.gallery__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(30,95,184,0.15);
  background: var(--dark-2);
}
.gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
.gallery__caption {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}
.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0 28px;
  flex-wrap: wrap;
}
.gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-dark);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  padding: 0;
}
.gallery__dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}
.gallery__hint {
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: var(--gray);
  margin-top: 10px;
}

/* ═══ COMPARISON ═══ */
.comparison {
  padding: 32px 28px;
  max-width: 520px;
  margin: 0 auto;
}
.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comparison__col {
  padding: 24px 20px;
  border-radius: 12px;
}
.comparison__col--without {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.04);
}
.comparison__col--with {
  background: linear-gradient(160deg, rgba(30,95,184,0.08), rgba(30,95,184,0.02));
  border: 1px solid rgba(30,95,184,0.15);
}
.comparison__col-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.comparison__col--without .comparison__col-title { color: var(--gray); }
.comparison__col--with .comparison__col-title { color: var(--gold); }

.comparison__col-item {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.comparison__col-item:last-child { border-bottom: none; }
.comparison__col--without .comparison__col-item { color: var(--cream); }
.comparison__col--with .comparison__col-item { color: var(--cream); }
.comparison__col-item .icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
}
.comparison__col--without .icon { color: #cc3333; }
.comparison__col--with .icon { color: var(--gold); }

/* ═══ WHY US ═══ */
.why-us {
  padding: 48px 28px;
  max-width: 520px;
  margin: 0 auto;
}
.why-us__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 32px;
  text-align: center;
}
.why-us__title strong { font-weight: 600; }
.why-us__item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.why-us__item:last-child { border-bottom: none; }
.why-us__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(30,95,184,0.1), rgba(30,95,184,0.03));
  border: 1px solid rgba(30,95,184,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.why-us__content { flex: 1; }
.why-us__item-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.why-us__item-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.7;
}

/* ═══ TRUST STATEMENT ═══ */
.trust-statement {
  padding: 24px 28px 12px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.trust-statement__line {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 14px;
}
.trust-statement__line strong {
  font-weight: 600;
  color: var(--white);
}
.trust-statement__line--alt {
  font-style: italic;
  color: var(--gold);
  font-size: 36px;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 0;
}

/* ═══ REVIEWS ═══ */
.reviews {
  padding: 12px 0 28px;
  max-width: 100%;
  position: relative;
}
.reviews__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.reviews__google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.reviews__google svg {
  width: 14px;
  height: 14px;
}
.reviews__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 28px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.reviews__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 280px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(30,95,184,0.2);
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__info {
  flex: 1;
  min-width: 0;
}
.review-card__name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}
.review-card__meta {
  font-size: 11px;
  color: var(--gray);
  font-weight: 300;
}
.review-card__stars {
  color: #f4b400;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.review-card__text {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.65;
  flex: 1;
}
.reviews__hint {
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: var(--gray);
  margin-top: 6px;
}
.reviews__cta {
  text-align: center;
  margin-top: 20px;
}
.reviews__cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  transition: opacity 0.3s;
}
.reviews__cta a:hover { opacity: 0.7; }
.reviews__cta svg {
  width: 12px;
  height: 12px;
}

/* ═══ PRICING ═══ */
.pricing {
  padding: 32px 28px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.pricing__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
}
.pricing__card {
  background: var(--dark-2);
  border: 1px solid rgba(30, 95, 184, 0.1);
  border-radius: 16px;
  padding: 40px 28px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.pricing__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.5;
}
.pricing__card-tag {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
}
.pricing__old {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 8px;
}
.pricing__old s {
  color: var(--cream-soft);
  font-weight: 400;
}
.pricing__amount {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.pricing__amount span {
  font-size: 24px;
  font-weight: 400;
  vertical-align: super;
  margin-left: 2px;
  color: var(--cream-soft);
}
.pricing__note {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}
.pricing__early {
  background: linear-gradient(160deg, rgba(30,95,184,0.06), rgba(30,95,184,0.02));
  border: 1px solid rgba(30,95,184,0.18);
  border-radius: 16px;
  padding: 32px 28px;
  margin-bottom: 32px;
}
.pricing__early-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing__early-amount {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.pricing__early-amount span {
  font-size: 20px;
  vertical-align: super;
  color: var(--cream-soft);
}
.pricing__early-detail {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.6;
}
.pricing__early-detail strong {
  color: var(--gold);
  font-weight: 500;
}

/* ═══ CTA ═══ */
.cta-block {
  padding: 0 28px 32px;
  max-width: 520px;
  margin: 0 auto;
}
.cta-primary {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 16px 48px rgba(30,95,184,0.15);
}
.cta-alt {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--gray-dark);
  border-radius: 6px;
  margin-top: 12px;
  transition: all 0.4s var(--ease);
}
.cta-alt:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══ INCLUDED ═══ */
.included {
  padding: 32px 28px;
  max-width: 520px;
  margin: 0 auto;
}
.included__item {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.included__item:last-child { border-bottom: none; }
.included__dash {
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 10px;
}
.included__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.7;
}
.included__text strong {
  font-weight: 500;
  color: var(--white);
}

/* ═══ PROCESS ═══ */
.process {
  padding: 32px 28px;
  max-width: 520px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.process__step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}
.process__num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  width: 36px;
  line-height: 1;
  padding-top: 2px;
}
.process__step-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.process__step-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

/* ═══ VALUE / MATH ═══ */
.value {
  padding: 36px 28px;
  max-width: 520px;
  margin: 0 auto;
  border-top: 1px solid rgba(30,95,184,0.08);
}
.value__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 28px;
}
.value__title strong { font-weight: 600; }
.value__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.85;
  margin-bottom: 20px;
}
.value__text strong {
  font-weight: 500;
  color: var(--cream);
}
.value__math {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 28px 24px;
  margin: 32px 0;
}
.value__math-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-soft);
}
.value__math-row + .value__math-row {
  border-top: 1px solid rgba(255,255,255,0.04);
}
.value__math-row span:last-child {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--white);
}
.value__math-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  margin-top: 8px;
  border-top: 1px solid rgba(30,95,184,0.2);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}
.value__math-total span:last-child {
  font-family: var(--serif);
  font-size: 22px;
}
.value__closing {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-top: 36px;
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══ FAQ ═══ */
.faq {
  padding: 32px 28px;
  max-width: 520px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
}
.faq__q-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  padding-right: 20px;
}
.faq__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: all 0.3s var(--ease);
}
.faq__icon::before {
  width: 12px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__item.open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__item.open .faq__a { max-height: 200px; }
.faq__a-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ═══ FORM ═══ */
.form-section {
  padding: 36px 28px;
  max-width: 520px;
  margin: 0 auto;
  border-top: 1px solid rgba(30,95,184,0.1);
}
.form-section__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}
.form-section__sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  text-align: center;
  margin-bottom: 36px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark-2);
  border: 1px solid var(--gray-dark);
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: all 0.3s var(--ease);
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(30,95,184,0.1);
}
.form-input.error {
  border-color: #8b4545;
  animation: shake 0.5s ease;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* GDPR consent */
.form-gdpr {
  position: relative;
  margin: 4px 0 20px;
}
.form-gdpr__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-gdpr__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.form-gdpr__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--gray-dark);
  background: var(--dark-2);
  margin-top: 1px;
  position: relative;
  transition: all 0.25s var(--ease);
}
.form-gdpr__box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 9px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s var(--ease);
}
.form-gdpr__input:checked + .form-gdpr__label .form-gdpr__box {
  background: var(--gold);
  border-color: var(--gold);
}
.form-gdpr__input:checked + .form-gdpr__label .form-gdpr__box::after {
  transform: rotate(45deg) scale(1);
}
.form-gdpr__input:focus-visible + .form-gdpr__label .form-gdpr__box {
  box-shadow: 0 0 0 2px rgba(30,95,184,0.3);
}
.form-gdpr__text {
  font-size: 12px;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.6;
}
.form-gdpr__text a {
  color: var(--gold);
  border-bottom: 1px solid rgba(30,95,184,0.3);
  transition: border-color 0.3s var(--ease);
}
.form-gdpr__text a:hover { border-bottom-color: var(--gold); }

.form-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--gray-dark);
  color: var(--gray);
}
.form-submit:disabled:hover {
  background: var(--gray-dark);
  transform: none;
  box-shadow: none;
}
.form-submit {
  width: 100%;
  padding: 18px 24px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--gold-light);
}
.form-privacy {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-dark);
  text-align: center;
  margin-top: 16px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}
.form-success.show { display: block; }
.form-success__line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.form-success__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}
.form-success__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 40px 28px 110px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.footer__logo-link {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.3s var(--ease);
}
.footer__logo-link:hover { opacity: 0.6; }
.footer__logo-img {
  display: block;
  height: 56px;
  width: auto;
  margin: 0 auto 16px;
  opacity: 0.75;
}
.footer__info {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.8;
}
.footer__links {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.footer__links a,
.footer__links-btn {
  color: var(--gray);
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: color 0.3s var(--ease);
  text-decoration: none;
}
.footer__links a:hover,
.footer__links-btn:hover { color: var(--gold); }
.footer__links-sep { color: var(--gray-dark); }

/* ═══ STICKY BAR ═══ */
.sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(30,95,184,0.12);
  max-width: 520px;
  margin: 0 auto;
}
.sticky__main {
  flex: 2;
  display: block;
  padding: 18px 20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.sticky__main:hover { background: var(--gold-light); }
.sticky__call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 16px;
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 1px solid rgba(30,95,184,0.1);
  transition: all 0.3s var(--ease);
}
.sticky__call:hover { color: var(--gold); }
.sticky__call svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ TABLET (768px+) ═══ */
@media (min-width: 768px) {
  .header { padding: 28px 40px 20px; }
  .header__logo-img { height: 84px; }

  .hero { padding: 56px 40px 40px; max-width: 680px; }
  .hero__kicker { font-size: 48px; margin-bottom: 22px; max-width: 560px; }
  .hero__title { font-size: 54px; }
  .hero__desc { font-size: 16px; max-width: 480px; }

  .divider { height: 48px; }

  .gallery { max-width: 900px; }
  .gallery__track { padding: 0 0 16px 0; }
  .gallery__slide { flex: 0 0 50%; padding: 0 10px; }
  .gallery__caption { font-size: 13px; }

  .comparison { max-width: 760px; padding: 48px 40px; }
  .comparison__grid { gap: 20px; }
  .comparison__col { padding: 32px 28px; }
  .comparison__col-item { font-size: 14px; padding: 10px 0; }

  .trust-statement { max-width: 720px; padding: 36px 40px 16px; }
  .trust-statement__line { font-size: 22px; }
  .trust-statement__line--alt { font-size: 40px; }

  .reviews { padding: 24px 0 40px; }
  .reviews__label { font-size: 11px; margin-bottom: 28px; }
  .reviews__track { padding: 0 40px 24px; gap: 20px; }
  .review-card { flex: 0 0 320px; padding: 26px 24px; }

  .pricing { max-width: 760px; padding: 48px 40px; }
  .pricing__card { padding: 48px 36px; }
  .pricing__amount { font-size: 76px; }
  .pricing__early { padding: 40px 36px; }
  .pricing__early-amount { font-size: 56px; }

  .cta-block { max-width: 640px; display: flex; gap: 14px; padding: 0 40px 40px; }
  .cta-primary, .cta-alt { flex: 1; margin-top: 0; }

  .included { max-width: 760px; padding: 48px 40px; }
  .included__text { font-size: 16px; }

  .process { max-width: 760px; padding: 48px 40px; }

  .value { max-width: 720px; padding: 56px 40px; }
  .value__title { font-size: 32px; }

  .faq { max-width: 720px; padding: 48px 40px; }
  .faq__q-text { font-size: 15px; }

  .form-section { max-width: 640px; padding: 56px 40px; }
  .form-section__title { font-size: 32px; }

  .footer { padding: 56px 40px 110px; }

  .sticky { max-width: 560px; border-radius: 12px 12px 0 0; overflow: hidden; }
}

/* ═══ DESKTOP (1024px+) ═══ */
@media (min-width: 1024px) {
  .header { padding: 32px 48px 24px; }
  .header__logo-img { height: 96px; }

  .hero { padding: 72px 48px 48px; max-width: 840px; }
  .hero__kicker { font-size: 56px; margin-bottom: 26px; max-width: 720px; }
  .hero__title { font-size: 68px; letter-spacing: -1px; }
  .hero__desc { font-size: 17px; max-width: 560px; line-height: 1.9; }

  .divider { height: 56px; }

  /* Gallery: 3-up on desktop */
  .gallery { max-width: 1240px; padding: 16px 0 32px; }
  .gallery__label { font-size: 11px; margin-bottom: 24px; }
  .gallery__track { padding: 0 0 20px 0; }
  .gallery__slide { flex: 0 0 33.3333%; padding: 0 12px; }
  .gallery__img { border-radius: 14px; }
  .gallery__caption { font-size: 13px; margin-top: 12px; }
  .gallery__hint { display: none; }

  .comparison { max-width: 960px; padding: 64px 48px; }
  .comparison__grid { gap: 28px; }
  .comparison__col { padding: 40px 32px; border-radius: 14px; }
  .comparison__col-title { font-size: 11px; margin-bottom: 22px; }
  .comparison__col-item { font-size: 15px; padding: 12px 0; gap: 12px; }

  .trust-statement { max-width: 840px; padding: 48px 48px 24px; }
  .trust-statement__line { font-size: 24px; line-height: 1.55; margin-bottom: 18px; }
  .trust-statement__line--alt { font-size: 48px; margin-top: 24px; }

  /* Reviews: 3 cards visible, centered */
  .reviews { padding: 32px 0 56px; }
  .reviews__track {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px 28px;
    gap: 24px;
  }
  .review-card {
    flex: 0 0 calc((100% - 144px) / 3);
    min-width: 300px;
    padding: 28px 26px;
    border-radius: 14px;
  }
  .review-card__name { font-size: 14px; }
  .review-card__text { font-size: 14px; line-height: 1.7; }
  .reviews__hint { display: none; }

  /* Pricing: side-by-side cards */
  .pricing { max-width: 1000px; padding: 64px 48px; }
  .pricing__label { margin-bottom: 40px; }
  .pricing__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .pricing__card,
  .pricing__early {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 36px;
  }
  .pricing__amount { font-size: 84px; }
  .pricing__early-amount { font-size: 64px; }
  .pricing__early-title { font-size: 17px; }

  .cta-block {
    max-width: 720px;
    gap: 16px;
    padding: 0 48px 56px;
  }
  .cta-primary { padding: 20px 24px; font-size: 13px; }
  .cta-alt { padding: 18px 24px; }

  /* Included: 2-column grid */
  .included { max-width: 1000px; padding: 64px 48px; }
  .included__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 40px;
  }
  .included__item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .included__text { font-size: 15px; }

  /* Process: 4-column on wide desktop */
  .process { max-width: 1100px; padding: 64px 48px; }
  .process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .process__step {
    flex-direction: column;
    gap: 16px;
    padding: 0;
    align-items: flex-start;
  }
  .process__num { font-size: 40px; }

  .value { max-width: 800px; padding: 72px 48px; }
  .value__title { font-size: 38px; margin-bottom: 32px; }
  .value__text { font-size: 16px; }
  .value__math { padding: 32px 28px; }
  .value__math-row { font-size: 15px; padding: 12px 0; }
  .value__math-row span:last-child { font-size: 18px; }
  .value__math-total span:last-child { font-size: 26px; }
  .value__closing { font-size: 20px; max-width: 480px; margin-top: 44px; }

  .faq { max-width: 800px; padding: 64px 48px; }
  .faq__q-text { font-size: 16px; }
  .faq__a-text { font-size: 15px; }

  .form-section { max-width: 720px; padding: 72px 48px; }
  .form-section__title { font-size: 34px; margin-bottom: 10px; }
  .form-section__sub { margin-bottom: 44px; font-size: 15px; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-input { font-size: 15px; padding: 15px 18px; }

  .footer { padding: 72px 48px 48px; }
  .footer__logo-img { height: 64px; }
  .footer__info { font-size: 13px; }

  /* Sticky bar: floating pill in corner */
  .sticky {
    max-width: 440px;
    right: 24px;
    left: auto;
    bottom: 24px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(30,95,184,0.15);
    overflow: hidden;
  }
  .sticky__main { padding: 16px 20px; font-size: 12px; white-space: nowrap; }
  .sticky__call { padding: 16px 18px; font-size: 12px; white-space: nowrap; }
}

/* ═══ LARGE DESKTOP (1280px+) ═══ */
@media (min-width: 1280px) {
  .hero { padding: 96px 48px 56px; max-width: 900px; }
  .hero__kicker { font-size: 64px; }
  .hero__title { font-size: 76px; }

  .trust-statement__line--alt { font-size: 56px; }

  .value__title { font-size: 42px; }
}

/* ═══ COOKIE CONSENT — dark theme ═══ */
.cookieconsent {
  font-family: var(--sans);
}
.cookieconsent .cc_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  animation: ccFadeIn 0.3s var(--ease);
}
@keyframes ccFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookieconsent .cc-banner {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0;
  padding: 28px 24px 24px;
  background: var(--dark);
  border-top: 1px solid rgba(30, 95, 184, 0.2);
  border-radius: 16px 16px 0 0;
  color: var(--cream);
  max-height: 90vh;
  overflow-y: auto;
  animation: ccSlideUp 0.35s var(--ease);
  box-shadow: 0 -24px 64px rgba(0, 0, 0, 0.5);
}
@keyframes ccSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookieconsent .cc-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.5;
}
.cookieconsent .cc-banner h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.cookieconsent .cc-banner > p {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.cookieconsent .cc-banner_btns {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  margin-top: 20px;
}
.cookieconsent .cc-banner_btn,
.cookieconsent .cc-banner_settings-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.cookieconsent .cc-banner_btn:hover,
.cookieconsent .cc-banner_settings-btn:hover {
  background: var(--gold-light);
}
.cookieconsent .cc-banner_btn-settings,
.cookieconsent .cc-banner_btn-back {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: transparent;
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid var(--gray-dark);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.cookieconsent .cc-banner_btn-settings:hover,
.cookieconsent .cc-banner_btn-back:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cookieconsent .cc-banner_btns2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.cookieconsent .cc-banner_btn-deny {
  padding: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.cookieconsent .cc-banner_btn-deny:hover { color: var(--cream); }
.cookieconsent .cc-banner_btn-privacy-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}
.cookieconsent .cc-banner_btn-privacy-links a:hover { opacity: 0.7; }

/* Settings view */
.cookieconsent .cc-banner_settings {
  margin: 16px 0 8px;
}
.cookieconsent .cc-banner_settings .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 6px;
}
.cookieconsent .cc-banner_settings .form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--gray-dark);
  background: var(--dark-2);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
  margin: 0;
}
.cookieconsent .cc-banner_settings .form-check input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.cookieconsent .cc-banner_settings .form-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 9px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cookieconsent .cc-banner_settings .form-check input[type="checkbox"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookieconsent .cc-banner_settings .form-check label {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  cursor: pointer;
}
.cookieconsent .cc-banner_settings .form-check input[type="checkbox"]:disabled + label {
  cursor: not-allowed;
  color: var(--cream-soft);
}
.cookieconsent .cc-banner_settings > p {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.65;
  margin: 0 0 4px 28px;
}
.cookieconsent .cc-banner_more {
  display: inline-block;
  margin: 10px 0 0 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}
.cookieconsent .cc-banner_more:hover { opacity: 0.7; }

@media (min-width: 768px) {
  .cookieconsent .cc_overlay {
    align-items: center;
    padding: 20px;
  }
  .cookieconsent .cc-banner {
    border-radius: 16px;
    max-width: 520px;
    padding: 36px 32px 28px;
  }
  .cookieconsent .cc-banner h3 { font-size: 26px; }
  .cookieconsent .cc-banner_btns {
    flex-direction: row;
    gap: 12px;
  }
}
