:root {
  --black-pure: #050608;
  --black-rich: #f4eee3;
  --black-soft: #fbf7f0;
  --navy-deep: #1f3048;
  --champagne: #1c2431;
  --champagne-soft: #3d4d64;
  --gold: #c9a84c;
  --gold-light: #eed28f;
  --gold-dark: #7d6220;
  --gray-100: rgba(28, 36, 49, 0.94);
  --gray-300: rgba(28, 36, 49, 0.84);
  --gray-500: rgba(28, 36, 49, 0.74);
  --gray-700: rgba(28, 36, 49, 0.2);
  --danger: #ff7a59;
  --success: #85d8a6;
  --grad-gold: linear-gradient(135deg, #c9a84c 0%, #f0d080 52%, #c9a84c 100%);
  --grad-dark: linear-gradient(180deg, #081019 0%, #0c0f15 100%);
  --shadow-gold: 0 16px 40px rgba(201, 168, 76, 0.22);
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.48);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --top-bar-h: 38px;
  --container-max: 1220px;
  --container-px: clamp(20px, 4vw, 56px);
  --section-py: clamp(76px, 9vw, 132px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --will-change-transform: transform;
  --will-change-opacity: opacity;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #f6efe2 0%, #fcf7ef 42%, #f6efe4 100%);
  color: var(--champagne);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  position: relative;
  z-index: 2;
}

.hero-container {
  padding: 0;
  max-width: 100%;
}

.section {
  position: relative;
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.section-dark {
  background: #fffaf2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-label::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.section-title,
.hero-title,
.cta-final-title {
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--champagne);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 28px;
  line-height: 1.15;
}

.section-title em,
.hero-title em,
.cta-final-title em {
  color: #c79a34;
  font-style: italic;
  font-weight: 400;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 24px;
}

.center-lead {
  max-width: 720px;
  margin: 0 auto;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--grad-gold);
  color: #1b1b16;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: var(--shadow-gold);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 5s infinite;
  z-index: -1;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(201, 168, 76, 0.35);
  filter: brightness(1.05);
}

.btn-xl {
  min-height: 58px;
  padding-inline: 30px;
}

.top-alert-bar {
  position: sticky;
  top: 0;
  z-index: 1100;
  min-height: var(--top-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: linear-gradient(90deg, #b7892d 0%, #f1d48d 50%, #b7892d 100%);
  color: #16110a;
  text-align: center;
}

.top-alert-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  justify-content: center;
}

.top-alert-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8d1700;
  box-shadow: 0 0 0 6px rgba(173, 30, 0, 0.15);
  animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.72; }
}

#header,
.mobile-drawer,
.drawer-overlay {
  display: none !important;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--top-bar-h));
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-layout {
  display: flex;
  align-items: center;
  position: relative;
  min-height: calc(100vh - var(--top-bar-h));
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 860px;
  padding: 42px 34px 34px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-brand {
  margin-bottom: 14px;
  color: #18263d;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-brand-gold {
  color: var(--gold);
  font-size: 10px;
}

.hero-date {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-date span,
.hero-lot-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 35px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(255, 251, 244, 0.85);
  color: var(--navy-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.08);
}

.hero-lot-chip {
  width: fit-content;
  margin-bottom: 18px;
}

.lot-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
}

.hero-title {
  font-size: clamp(2.5rem, 3.8vw, 3.5rem);
  max-width: clamp(620px, 47vw, 760px);
  margin-bottom: 18px;
  color: #172234;
  font-weight: 700;
  text-shadow: none;
  line-height: 0.95;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-gold {
  background: linear-gradient(to right, #d4af37 20%, #ffdf73 40%, #ffdf73 60%, #d4af37 80%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 400;
  font-style: italic;
  animation: shine-text 6s linear infinite;
}

@keyframes shine-text {
  to {
    background-position: 200% center;
  }
}

.hero-sub {
  max-width: clamp(560px, 42vw, 680px);
  color: rgba(23, 34, 52, 0.96);
  font-size: clamp(0.95rem, 1.15vw, 1.2rem);
  line-height: 1.42;
  margin-bottom: 24px;
}

.hero-proof-strip {
  display: none;
}

.hero-proof-item {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.16);
}

.hero-proof-item strong {
  display: block;
  color: var(--navy-deep);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.hero-proof-item span {
  color: var(--gray-500);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}

.hero-actions .btn-primary,
.lot-progress {
  width: min(100%, 460px);
}

.hero-price-line,
.progress-label,
.offer-note,
.cta-final-seats {
  color: rgba(23, 34, 52, 0.82);
  font-size: 0.9rem;
}

.hero-price-line strong,
.progress-label,
.cta-final-seats strong {
  color: var(--navy-deep);
}

.next-lot-copy { display: none; }

.progress-bar {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(28, 36, 49, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  margin-bottom: 10px;
}

.hero-progress {
  margin-top: 14px;
}

.hero-progress-text {
  margin-top: 10px;
}

.progress-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #d6a84d, #f4dc96);
  transition: width 0.5s ease;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media-frame {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  background: #d8d3c9;
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.05);
  animation: hero-zoom 12s ease-out forwards;
  will-change: transform;
}

@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(248, 244, 236, 0.99) 0%, rgba(248, 244, 236, 0.96) 28%, rgba(248, 244, 236, 0.88) 48%, rgba(248, 244, 236, 0.65) 65%, rgba(248, 244, 236, 0.35) 82%, rgba(248, 244, 236, 0.15) 100%),
    linear-gradient(180deg, rgba(248, 244, 236, 0.12) 0%, rgba(248, 244, 236, 0.25) 100%);
}

@media (min-width: 1024px) {
  .hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-layout {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-title {
    max-width: clamp(620px, 47vw, 760px);
    font-size: clamp(42px, 4.5vw, 56px);
    line-height: 0.95;
    margin-bottom: 18px;
  }

  .hero-title em {
    font-size: clamp(44px, 4.2vw, 54px);
    line-height: 1.02;
  }

  .hero-sub {
    max-width: clamp(560px, 42vw, 680px);
    font-size: 22px;
    line-height: 1.42;
    margin-bottom: 24px;
  }

  .hero-actions {
    margin-top: 0;
  }

  .hero-media-overlay {
    background:
      linear-gradient(90deg, rgba(248, 244, 236, 0.99) 0%, rgba(248, 244, 236, 0.96) 28%, rgba(248, 244, 236, 0.88) 48%, rgba(248, 244, 236, 0.65) 65%, rgba(248, 244, 236, 0.35) 82%, rgba(248, 244, 236, 0.15) 100%),
      linear-gradient(180deg, rgba(248, 244, 236, 0.12) 0%, rgba(248, 244, 236, 0.25) 100%);
  }
}

.hero-floating-card,
.floating-label { display: none; }

.marquee-bar {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(255, 255, 255, 0.5);
  margin-top: -24px;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 32px;
  padding: 14px 0;
  animation: marquee-run 20s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  color: #9b751b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes marquee-run {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
}

.market-card,
.operation-card,
.proof-card,
.program-card,
.offer-panel,
.faq-item,
.hero-proof-item {
  backdrop-filter: blur(10px);
}

.pricing-card {
  max-width: 580px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(255, 252, 245, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(28, 36, 49, 0.12);
}

.pricing-label-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing-urgency {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 90, 90, 0.15);
  color: #e74c3c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 90, 0.3);
}

.pricing-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 36, 49, 0.7);
}

.pricing-highlight {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c9a84c;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 20px;
  color: #1f3048;
}

.pricing-amount .currency {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-right: 4px;
}

.pricing-amount .price-number {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
}

.pricing-amount .decimal {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-left: 4px;
}

.pricing-payment {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 20px;
  height: auto;
  display: block;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: rgba(28, 36, 49, 0.7);
}

.pricing-cta {
  width: 100%;
  min-height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a84c 0%, #eed28f 55%, #d7a620 100%);
  color: #0f172a;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 35px rgba(201, 168, 76, 0.28);
  margin-bottom: 24px;
}

.pricing-progress {
  margin-bottom: 24px;
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  margin-bottom: 8px;
  overflow: hidden;
}

.progress-fill {
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, #c9a84c, #eed28f);
  border-radius: 999px;
}

.progress-text {
  font-size: 0.85rem;
  color: rgba(28, 36, 49, 0.6);
  text-align: center;
}

.lot-info {
  margin-bottom: 16px;
  text-align: center;
}

.lot-info-text {
  font-size: 0.8rem;
  color: rgba(28, 36, 49, 0.5);
  font-style: italic;
}

.pricing-divider {
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  margin-bottom: 24px;
}

.pricing-benefits {
  margin-bottom: 0;
}

.benefits-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 36, 49, 0.7);
  text-align: center;
  margin-bottom: 16px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(28, 36, 49, 0.85);
}

.benefit-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #eed28f);
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(31, 48, 72, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  width: 100%;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

.cookie-text a {
  color: #eed28f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-text a:hover {
  color: #c9a84c;
}

.cookie-accept {
  padding: 8px 20px;
  background: linear-gradient(135deg, #c9a84c 0%, #eed28f 55%, #d7a620 100%);
  color: #0f172a;
  border: none;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.cookie-banner.hidden {
  display: none;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(28, 36, 49, 0.9);
}

.legal-updated {
  font-size: 0.9rem;
  color: rgba(28, 36, 49, 0.6);
  margin-bottom: 32px;
  font-style: italic;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f3048;
  margin-bottom: 16px;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.legal-section ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #c9a84c;
  font-weight: 700;
}

.legal-section strong {
  font-weight: 600;
  color: #1f3048;
}

.legal-footer {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 767px) {
  .cookie-content {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-text {
    text-align: center;
    font-size: 0.8rem;
  }

  .cookie-accept {
    width: 100%;
  }

  .legal-section h2 {
    font-size: 1.25rem;
  }

  .legal-section p {
    font-size: 0.95rem;
  }
}

.market-card {
  padding: 32px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, rgba(251, 246, 236, 0.92), rgba(247, 239, 226, 0.96));
  border: 1px solid rgba(201, 168, 76, 0.16);
}

.market-kicker {
  display: inline-block;
  color: #a97f22;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.market-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  margin-bottom: 18px;
}

.market-card p {
  color: var(--gray-300);
  margin-bottom: 18px;
}

.market-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.market-list li {
  padding-left: 18px;
  position: relative;
  color: var(--gray-300);
}

.market-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.operation-grid,
.proof-grid,
.program-grid {
  display: grid;
  gap: 20px;
}

.operation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operation-card,
.proof-card,
.pricing-card {
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  z-index: 0;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--champagne);
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 20px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #eed28f);
  color: #1f3048;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 700;
}

.operation-card:hover,
.proof-card:hover,
.program-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.28);
}

.operation-step,
.program-number,
.proof-role {
  display: inline-block;
  color: #a97f22;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.operation-card h3,
.proof-card h3,
.program-card h3,
.offer-main h3 {
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--champagne);
  position: relative;
  z-index: 1;
}

.operation-card p,
.proof-card p,
.program-card p,
.offer-main p {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.proof-value {
  display: block;
  margin-top: 20px;
  color: #8d6715;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.22), transparent 32%),
    linear-gradient(160deg, rgba(255, 253, 248, 0.98), rgba(246, 238, 226, 0.98));
  border: 1px solid rgba(201, 168, 76, 0.14);
}

.offer-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-items {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.offer-items span {
  padding-left: 18px;
  position: relative;
  color: var(--gray-300);
}

.offer-items span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}

.offer-side {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(201, 168, 76, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.offer-lot {
  color: #9b751b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-price {
  display: grid;
  gap: 6px;
}

.offer-price-label {
  color: rgba(23, 34, 52, 0.78);
  font-size: 0.84rem;
}

.price-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  color: var(--champagne);
}

.btn-ticket {
  width: 100%;
}

.payment-methods {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto 8px;
}

.offer-meta {
  display: grid;
  gap: 8px;
}

.offer-meta span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: #18263d;
  font-size: 0.82rem;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-body {
  padding: 0 24px 22px;
  color: rgba(23, 34, 52, 0.88);
}

.section-cta-final {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.16), transparent 36%),
    linear-gradient(180deg, #f8f1e5, #f2eadf);
}

.cta-final-content {
  max-width: 880px;
  text-align: center;
  margin: 0 auto;
}

.cta-final-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 18px;
}

.cta-final-sub {
  max-width: 740px;
  margin: 0 auto 28px;
  color: rgba(23, 34, 52, 0.88);
  font-size: 1.06rem;
  line-height: 1.8;
}

#footer {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 24px var(--container-px);
  background: #f5eee3;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-legal {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--gray-500);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1180px) {
  .operation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid,
  .section-grid,
  .offer-panel,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .hero-media-frame {
    min-height: 560px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: calc(100svh - var(--top-bar-h, 38px));
    max-height: none;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .hero-layout {
    min-height: calc(100svh - var(--top-bar-h, 38px));
    flex-direction: column;
    align-items: flex-start;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 0 !important;
  }

  .hero-media-frame {
    border-radius: 0 !important;
  }

  .hero-brand {
    font-size: 11.5px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    white-space: nowrap;
  }

  .hero-lot-chip {
    display: none;
  }

  .hero-date {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 18px;
    width: 100%;
  }

  .hero-date span {
    padding: 6px 10px;
    font-size: 10.5px;
    line-height: 1;
    min-height: auto;
    white-space: nowrap;
  }

  /*
   * Mobile hero adjustments
   *
   * On small screens the original photo position (78% center) caused
   * the left–aligned copy to encroach too far over the subject’s face.
   * Shifting the object-position slightly to the left preserves more
   * breathing room for the portrait without dramatically changing the
   * composition. Removing the enforced border radius keeps the image
   * flush with the viewport edges.
   */
  .hero-photo-img {
    /* Show a bit more of the right-hand side of the photo on mobile */
    object-position: 70% center;
    border-radius: 0 !important;
  }

  .hero-media-overlay {
    border-radius: 0 !important;
    background:
      linear-gradient(90deg, rgba(248, 244, 236, 0.99) 0%, rgba(248, 244, 236, 0.95) 45%, rgba(248, 244, 236, 0.6) 65%, rgba(248, 244, 236, 0) 100%),
      linear-gradient(180deg, rgba(248, 244, 236, 0) 0%, rgba(248, 244, 236, 0.3) 50%, rgba(248, 244, 236, 0.9) 95%);
  }

  .hero-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 32px 20px 32px 20px !important;
    margin: 0;
    z-index: 5;
    min-height: calc(100svh - var(--top-bar-h, 38px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-title {
    font-size: clamp(25px, 6.5vw, 35px);
    line-height: 0.96;
    max-width: 65% !important;
    margin-top: 0;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(248, 244, 236, 0.4);
    text-align: left;
  }

  .hero-title em {
    font-size: clamp(26px, 6vw, 34px);
    line-height: 1;
    text-shadow: 0 2px 12px rgba(248, 244, 236, 0.5);
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.38;
    max-width: 75% !important;
    margin-top: 0;
    margin-bottom: 22px;
    text-shadow: 0 1px 8px rgba(248, 244, 236, 0.5);
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .testimonial-author {
    padding-top: 16px;
    gap: 12px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .author-name {
    font-size: 0.95rem;
  }

  .program-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
  }

  .program-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0;
  }

  .program-card h3 {
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.1;
  }

  .section-label {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-amount {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .pricing-benefits {
    font-size: 0.85rem;
  }

  .benefit-item {
    font-size: 0.85rem;
    gap: 8px;
  }

  .faq-item {
    padding: 16px 20px;
  }

  .faq-item summary {
    font-size: 0.95rem;
  }

  .faq-body {
    font-size: 0.9rem;
    padding-top: 12px;
  }

  .cta-final-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .cta-final-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 8px;
    padding-bottom: 0;
  }

  .hero-actions .btn-primary {
    width: 100%;
    min-height: 54px;
    border-radius: 999px;
    font-size: 12.5px;
    letter-spacing: 0.045em;
    padding-inline: 18px;
    margin-top: 0;
    position: relative;
    z-index: 2;
  }

  .lot-progress {
    margin-top: 14px;
    position: relative;
    z-index: 2;
  }

  .hero-progress-text {
    margin-top: 8px;
  }

  .pricing-card {
    max-width: none;
    width: 100%;
    border-radius: 24px;
    padding: 24px 20px;
  }

  .pricing-amount .price-number {
    font-size: clamp(3rem, 8vw, 4rem);
  }

  .pricing-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .pricing-trust span:nth-child(2),
  .pricing-trust span:nth-child(4) {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --section-py: 72px;
    --top-bar-h: 42px;
  }

  .top-alert-text {
    font-size: 0.7rem;
  }

  .logo {
    font-size: 0.72rem;
  }

  .hero-title {
    font-size: clamp(23px, 6.5vw, 29px);
    line-height: 0.98;
  }

  .hero-sub,
  .lead,
  .operation-card p,
  .proof-card p,
  .program-card p,
  .offer-main p,
  .cta-final-sub {
    font-size: 0.97rem;
  }

  .hero-date span,
  .hero-lot-chip {
    font-size: 0.66rem;
    min-height: 32px;
    padding: 7px 10px;
  }

  .hero-media-frame {
    min-height: 86dvh;
    border-radius: 26px;
  }

  .hero-photo-img {
    object-position: 78% center;
  }

  .hero-content {
    padding: 20px 20px 20px 20px !important;
    width: 100%;
  }

  .hero-sub {
    font-size: 0.94rem;
    line-height: 1.42;
    text-align: left;
  }

  .hero-actions,
  .lot-progress {
    align-items: flex-start;
    width: 100%;
    text-align: left;
  }

  .hero-actions .btn-primary,
  .lot-progress {
    width: 100%;
  }

  .payment-methods {
    max-width: 300px;
  }

  .hero-price-line {
    width: 100%;
    text-align: left;
  }

  .operation-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .offer-panel,
  .offer-side,
  .market-card,
  .operation-card,
  .proof-card,
  .program-card {
    padding: 20px;
  }

  .offer-side {
    gap: 14px;
    align-items: center;
    text-align: center;
  }

  .offer-price,
  .offer-note {
    text-align: center;
  }

  .btn-ticket {
    max-width: 320px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
