:root {
  --bg: #050509;
  --bg-2: #0c0714;
  --surface: rgba(16, 12, 26, 0.84);
  --surface-strong: rgba(22, 15, 38, 0.94);
  --text: #ffffff;
  --muted: #b8b8c7;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #8b5cf6;
  --blue: #7c3aed;
  --violet: #8b5cf6;
  --gold: #f5c75b;
  --action: #25d366;
  --action-2: #7cff6b;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 152, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 85% 12%, rgba(139, 92, 246, 0.22), transparent 34rem),
    linear-gradient(rgba(139, 92, 246, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 68px 68px, 68px 68px, auto;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(3, 7, 17, 0.34);
  pointer-events: none;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 17, 0.94);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: rgba(53, 233, 255, 0.16);
  background: rgba(6, 9, 19, 0.94);
}

.promo-header {
  justify-content: center;
  min-height: 48px;
  padding: 7px 18px;
  background: #07030d;
  border-bottom: 1px solid rgba(139, 92, 246, 0.28);
}

.promo-header.is-scrolled {
  background: #050208;
  border-color: rgba(139, 92, 246, 0.34);
}

.promo-alert {
  display: block;
  width: 100%;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(0.82rem, 1.2vw, 1.08rem);
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  letter-spacing: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(53, 233, 255, 0.48);
  border-radius: 8px;
  color: var(--cyan);
  box-shadow: 0 0 22px rgba(53, 233, 255, 0.16);
}

.nav-links {
  display: none;
  gap: 24px;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links a:hover {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.header-cta {
  padding: 0 15px;
  color: #03130b;
  background: linear-gradient(135deg, var(--action-2), var(--action));
  font-size: 0.84rem;
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #03130b;
  background: linear-gradient(135deg, var(--action-2), var(--action));
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.22);
}

.button.secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.button.wide {
  width: 100%;
}

.button.primary,
.header-cta {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.hero,
.opportunity-section,
.position-section,
.kit-section,
.map-bonus-section,
.practical-bonus-section,
.bonus-section,
.author-section,
.testimonials-section,
.offer-section,
.faq-section,
.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  scroll-margin-top: 84px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  align-items: start;
  width: min(900px, calc(100% - 40px));
  min-height: 0;
  padding: 24px 0 42px;
  text-align: center;
}

.hero-copy,
.hero-media {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy h1,
.section-intro h2,
.kit-copy h2,
.author-section h2,
.final-cta h2 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 32px auto 16px;
  font-size: clamp(1.4rem, 2.24vw, 2.205rem);
  line-height: 1.05;
}

.hero-title-mobile {
  display: none;
}

.hero-copy h1 span,
.hero-copy .lead span {
  display: block;
}

.hero-title-desktop .title-line {
  display: block;
}

.hero-title-desktop .text-gradient {
  display: inline;
}

.text-gradient,
.lead-highlight {
  background: linear-gradient(90deg, var(--violet), #35e9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead-highlight {
  margin: 8px 0;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.video-lead {
  max-width: 760px;
  margin: 20px auto 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-large {
  font-size: 0.95rem;
}

.lead {
  max-width: 760px;
  margin: 0 auto 20px;
  color: #dbe7f7;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.4;
}

.hero-subheadline {
  font-size: clamp(0.81rem, 1.296vw, 0.972rem);
}

.youtube-vsl {
  position: relative;
  overflow: hidden;
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  margin: 22px auto 0;
  border: 1px solid rgba(53, 233, 255, 0.32);
  border-radius: 12px;
  background: #030711;
  box-shadow: var(--shadow), 0 0 58px rgba(0, 152, 255, 0.16);
}

.youtube-vsl iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-bullets li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #e8f2ff;
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-bullets li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(53, 233, 255, 0.34);
}

.hero-proof-bullets {
  display: flex;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 12px auto 0;
}

.hero-proof-bullets li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding-left: 0;
  text-align: center;
  font-weight: 800;
}

.hero-proof-bullets li::before {
  position: static;
  flex: 0 0 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.vsl-actions {
  margin-top: 18px;
}

.hero-media {
  margin-top: 32px;
}

.hero .eyebrow-large {
  justify-content: center;
  width: 100%;
}

.hero .vsl-actions .button {
  width: min(100%, 360px);
}

.hero-checkout-bonus {
  display: grid;
  gap: 4px;
  width: min(100%, 520px);
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(200, 255, 77, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 50%, rgba(200, 255, 77, 0.16), transparent 12rem),
    rgba(200, 255, 77, 0.06);
  text-align: center;
}

.hero-checkout-bonus strong {
  color: #c8ff4d;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  font-weight: 900;
}

.hero-checkout-bonus span {
  color: #e9ffd0;
  font-size: 0.88rem;
  font-weight: 800;
}

.vsl-actions .button {
  min-height: 58px;
  padding-inline: clamp(24px, 4vw, 46px);
  font-size: clamp(0.9rem, 1.6vw, 1.04rem);
}

.cta-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.market-seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 16px auto 0;
}

.market-seals span,
.kit-points span,
.authority-points span {
  padding: 10px 12px;
  border: 1px solid rgba(53, 233, 255, 0.2);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(53, 233, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 800;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 400px;
  height: 400px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border: 1px solid rgba(53, 233, 255, 0.32);
  border-radius: 16px;
  background: #030711;
  box-shadow: var(--shadow), 0 0 58px rgba(0, 152, 255, 0.16);
}

.video-frame video {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.hero-image-frame {
  overflow: hidden;
  width: min(100%, 560px);
  margin: 0 auto;
  border: 1px solid rgba(53, 233, 255, 0.32);
  border-radius: 12px;
  background: #030711;
  box-shadow: var(--shadow), 0 0 58px rgba(0, 152, 255, 0.16);
}

.hero-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.sound-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  padding: 0 26px;
  border: 1px solid var(--cyan);
  border-radius: 24px;
  background: rgba(5, 8, 14, 0.88);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42), 0 0 18px rgba(53, 233, 255, 0.18);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.sound-button.is-hidden {
  display: none;
}

.sound-button strong {
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.sound-icon {
  width: 46px;
  height: 36px;
  color: #fff;
  flex: 0 0 auto;
}

.opportunity-section,
.position-section,
.kit-section,
.map-bonus-section,
.practical-bonus-section,
.author-section,
.testimonials-section,
.offer-section,
.faq-section,
.final-cta {
  padding: 74px 0;
}

.section-intro {
  max-width: 770px;
  margin-inline: auto;
  text-align: center;
}

.section-intro.narrow {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-intro h2,
.kit-copy h2,
.author-section h2,
.final-cta h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
}

.section-intro p,
.kit-copy p,
.author-section p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.opportunity-section,
.position-section,
.kit-section,
.map-bonus-section,
.practical-bonus-section,
.experts-section,
.testimonials-section,
.offer-section,
.faq-section {
  text-align: center;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.market-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.market-strip span {
  padding: 10px 12px;
  border: 1px solid rgba(53, 233, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dbe7f7;
  font-size: 0.84rem;
  font-weight: 800;
}

.opportunity-subtitle {
  margin-top: 34px;
}

.opportunity-grid article,
.practical-grid article,
.timeline article,
.offer-plan,
.testimonial-grid article,
.testimonial-video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.025)),
    var(--surface);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.opportunity-grid article:hover,
.practical-grid article:hover,
.timeline article:hover,
.offer-plan:hover,
.testimonial-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38), 0 0 34px rgba(139, 92, 246, 0.14);
}

.opportunity-grid article {
  padding: 22px;
  text-align: center;
}

.practical-grid article {
  padding: 22px;
  text-align: center;
}

.opportunity-grid h3,
.practical-grid h3,
.timeline h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.opportunity-grid p,
.practical-grid p,
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.bonus-card-title {
  display: block;
  margin-bottom: 8px;
  color: #f7fbff;
  font-size: 1.16rem;
  line-height: 1.25;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  text-align: center;
}

.section-cta span,
.plan-microcopy,
.secure-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.map-bonus-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(53, 233, 255, 0.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(139, 92, 246, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(139, 92, 246, 0.1)),
    rgba(16, 26, 45, 0.86);
  box-shadow: var(--shadow), 0 0 42px rgba(139, 92, 246, 0.12);
}

.map-bonus-card h3 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  line-height: 1.08;
}

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

.map-bonus-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.bonus-price-line,
.bonus-deadline {
  display: block;
}

.bonus-price-line {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.12rem;
}

.bonus-price-line s {
  color: #c8ff4d;
  text-decoration-thickness: 2px;
}

.bonus-deadline {
  color: #ffffff;
  font-weight: 900;
}

.map-nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.map-nodes span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(53, 233, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 10, 19, 0.45);
  color: #dff9ff;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 233, 255, 0.45), transparent);
}

.timeline article {
  position: relative;
  padding: 24px;
  background: rgba(16, 26, 45, 0.86);
  text-align: center;
}

.kit-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
}

.kit-copy {
  text-align: center;
}

.kit-points,
.authority-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 26px;
}

.product-showcase {
  display: flex;
  justify-content: center;
}

.product-cover,
.author-visual {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.product-cover {
  width: min(100%, 430px);
}

.product-cover-official {
  width: min(100%, 310px);
  height: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
}

.product-cover-wide {
  width: min(100%, 620px);
}

.author-visual {
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
}

.author-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.experts-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0;
  scroll-margin-top: 84px;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
  margin-top: 34px;
}

.expert-card {
  display: flex;
  gap: clamp(22px, 3vw, 34px);
  align-items: center;
  min-height: 208px;
  padding: 34px clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 34px 34px 0 0;
  background: rgba(12, 13, 21, 0.9);
  box-shadow: none;
  text-align: left;
}

.expert-card img {
  flex: 0 0 auto;
  width: 128px;
  height: 128px;
  border-radius: 26px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(139, 92, 246, 0.34);
}

.expert-card h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.expert-role {
  display: block;
  margin-top: 10px;
  color: var(--violet);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.expert-photo-muted {
  filter: grayscale(1);
}

.expert-card p,
.expert-card li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.52;
}

.expert-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.expert-card li {
  position: relative;
  padding-left: 22px;
}

.expert-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.expert-card strong {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1.45;
}

.community-panel {
  max-width: 860px;
  margin: 26px auto 0;
  padding: 24px;
  border: 1px solid rgba(53, 233, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 152, 255, 0.11), rgba(142, 92, 255, 0.09)),
    rgba(16, 26, 45, 0.78);
  text-align: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.community-panel h3 {
  margin: 12px auto 0;
  max-width: 720px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.15;
}

.community-panel p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.62;
}

.community-panel strong {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 199, 91, 0.34);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(245, 199, 91, 0.08);
  font-size: 0.9rem;
}

.testimonials-section {
  width: min(1080px, calc(100% - 40px));
}

.testimonial-feature {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.testimonial-grid article {
  overflow: hidden;
}

.testimonial-image-button {
  display: block;
  width: 100%;
  height: 270px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  cursor: zoom-in;
}

.testimonial-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-grid strong,
.testimonial-grid span,
.testimonial-video-card strong {
  display: block;
  padding-inline: 16px;
}

.testimonial-grid strong,
.testimonial-video-card strong {
  padding-top: 16px;
  font-size: 0.95rem;
}

.testimonial-grid span {
  padding-bottom: 16px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.testimonial-video-card {
  overflow: hidden;
  width: min(100%, 280px);
  background: rgba(7, 10, 19, 0.9);
}

.testimonial-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030711;
}

.testimonial-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sound-button.compact {
  min-height: 58px;
  padding: 0 18px;
}

.sound-button.compact .sound-icon {
  width: 38px;
  height: 30px;
}

.sound-button.compact strong {
  padding: 0;
  font-size: 0.78rem;
}

.offer-intro {
  margin-bottom: 34px;
}

.offer-options {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
}

.offer-single {
  max-width: 760px;
  margin: 0 auto;
}

.offer-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}

.featured-plan {
  border-color: rgba(139, 92, 246, 0.68);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.24), rgba(139, 92, 246, 0.11)),
    var(--surface-strong);
  box-shadow: var(--shadow), 0 0 42px rgba(139, 92, 246, 0.18);
}

.ebook-plan {
  align-self: start;
}

.best-badge,
.plan-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.best-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  color: #06101a;
  background: var(--gold);
}

.plan-label {
  color: var(--cyan);
  background: rgba(53, 233, 255, 0.09);
  border: 1px solid rgba(53, 233, 255, 0.22);
}

.main-product-label {
  color: #03130b;
  background: linear-gradient(135deg, var(--action-2), var(--action));
  border-color: rgba(37, 211, 102, 0.55);
}

.offer-plan h3 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.main-product-box {
  position: relative;
  margin: 14px 0 16px;
  padding: 28px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(139, 92, 246, 0.1);
}

.main-product-box::before,
.main-product-box::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 64px;
  pointer-events: none;
}

.main-product-box::before {
  left: -1px;
  top: -1px;
  border-left: 4px solid rgba(255, 255, 255, 0.86);
  border-top: 4px solid rgba(255, 255, 255, 0.86);
}

.main-product-box::after {
  right: -1px;
  bottom: -1px;
  border-right: 4px solid rgba(255, 255, 255, 0.86);
  border-bottom: 4px solid rgba(255, 255, 255, 0.86);
}

.main-product-box .main-product-label {
  position: absolute;
  left: 18px;
  top: -14px;
}

.main-product-box h3 {
  margin-top: 0;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.main-product-box p {
  max-width: 650px;
  margin: 16px auto 0;
}

.surprise-bonus-banner {
  display: grid;
  gap: 5px;
  margin: 14px 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(200, 255, 77, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 50%, rgba(200, 255, 77, 0.16), transparent 14rem),
    rgba(200, 255, 77, 0.06);
}

.surprise-bonus-banner strong {
  color: #c8ff4d;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.surprise-bonus-banner span {
  color: #e9ffd0;
  font-size: 0.9rem;
}

.checkout-bonus-note {
  margin: 12px auto 0;
  max-width: 620px;
  color: #e9ffd0 !important;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.bonus-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin: 34px auto 0;
}

.bonus-list article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(200, 255, 77, 0.26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 255, 77, 0.14), transparent 42%),
    rgba(16, 26, 45, 0.78);
}

.bonus-list strong,
.bonus-list span {
  display: block;
}

.bonus-list strong {
  color: #c8ff4d;
  font-size: 1.02rem;
  font-weight: 900;
}

.bonus-list span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.product-format-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.product-format-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(37, 211, 102, 0.32);
  border-radius: 999px;
  color: #d9ffd8;
  background: rgba(37, 211, 102, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-plan p,
.offer-plan small {
  color: var(--muted);
}

.offer-plan p {
  font-size: 0.96rem;
  line-height: 1.62;
}

.plan-price {
  margin: 24px 0 14px;
}

.old-price {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.ebook-plan .old-price {
  text-decoration: line-through;
}

.plan-price strong {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}

.offer-plan h4 {
  margin: 22px 0 12px;
}

.combo-deliverables,
.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.combo-deliverables li,
.check-list li {
  position: relative;
  padding: 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.combo-deliverables li:last-child,
.check-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.combo-deliverables li::before {
  content: none;
}

.check-list li::before {
  display: none;
}

.combo-deliverables strong,
.check-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  color: #f7fbff;
  font-size: 1.02rem;
  line-height: 1.35;
}

.whatsapp-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #25d366 !important;
  vertical-align: middle;
  flex: 0 0 18px;
}

.whatsapp-mini-icon svg {
  width: 100%;
  height: 100%;
  color: #25d366 !important;
}

.combo-deliverables span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  text-transform: none;
}

.combo-deliverables .bonus-context {
  color: #d7d2e8;
  font-size: 0.86rem;
  font-weight: 700;
}

.combo-deliverables .bonus-old-price {
  display: inline-block;
  margin-top: 8px;
  color: #c8ff4d;
  font-size: 1rem;
  font-weight: 900;
  line-height: inherit;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(200, 255, 77, 0.9);
  white-space: nowrap;
}

.combo-deliverables em {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.45;
}

.combo-deliverables s {
  color: #c8ff4d;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(200, 255, 77, 0.9);
  white-space: nowrap;
}

.offer-plan .button {
  margin-top: 24px;
}

.lot-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, 100%);
  margin: 34px auto 0;
}

.lot-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 520px;
  padding: 34px clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #f4f5f6;
  color: #33424a;
  text-align: center;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.lot-card h3 {
  margin: 0;
  color: #38464e;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 900;
  text-transform: uppercase;
}

.lot-status {
  display: block;
  margin-top: 18px;
  color: #4c5a62;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.lot-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 64px 0 42px;
  color: #38464e;
}

.lot-price small {
  margin-top: 12px;
  color: inherit;
  font-size: 1.35rem;
  font-weight: 900;
}

.lot-price span {
  color: inherit;
  font-size: clamp(4rem, 8vw, 5.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.lot-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lot-card li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 10px 0 10px 34px;
  border-top: 1px solid #d4d7da;
  color: #33424a;
  font-weight: 800;
  text-transform: uppercase;
}

.lot-card li::before {
  content: "✓";
  position: absolute;
  left: 8px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.lot-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  width: min(100%, 275px);
  margin: 34px auto 0;
  border: 0;
  border-radius: 8px;
  background: #45545c;
  color: #fff;
  cursor: not-allowed;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lot-button-active {
  cursor: pointer;
  color: #03130b;
  background: linear-gradient(135deg, var(--action-2), var(--action));
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.24);
}

.lot-ribbon {
  position: absolute;
  right: -48px;
  top: 25px;
  width: 180px;
  padding: 10px 0;
  background: #b91616;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.lot-ribbon.active {
  background: #25d366;
  color: #03130b;
}

.lot-card-active {
  border-color: rgba(37, 211, 102, 0.62);
  box-shadow: 0 24px 86px rgba(37, 211, 102, 0.18), 0 22px 70px rgba(0, 0, 0, 0.3);
}

.lot-card-sold,
.lot-card-soon {
  opacity: 0.72;
}

.lot-card-soon .muted-price span {
  font-size: clamp(2.6rem, 5vw, 3.5rem);
}

.pro-lot-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(980px, 100%);
}

.curriculum-section {
  width: min(980px, calc(100% - 40px));
}

.curriculum-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  text-align: left;
}

.curriculum-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.025)),
    var(--surface);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.curriculum-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  color: #f7fbff;
  font-weight: 900;
}

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

.curriculum-item summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.35rem;
}

.curriculum-item[open] summary::after {
  content: "-";
}

.curriculum-item summary span {
  color: var(--gold);
  font-size: 0.86rem;
  white-space: nowrap;
}

.curriculum-item ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 20px 20px 36px;
  color: var(--muted);
  line-height: 1.5;
}

.lot-list .lot-sold {
  opacity: 0.7;
}

.lot-list .lot-sold strong {
  text-decoration: line-through;
}

.lot-list .lot-active {
  border-color: rgba(37, 211, 102, 0.44);
  background: rgba(37, 211, 102, 0.08);
}

.plan-microcopy,
.offer-secure {
  text-align: center;
}

.offer-support {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 34px auto 0;
}

.faq-item {
  width: 100%;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 26, 45, 0.75);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-weight: 900;
}

.faq-item span::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.25rem;
}

.faq-item[aria-expanded="true"] span::after {
  content: "-";
}

.faq-item p {
  display: none;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item[aria-expanded="true"] p {
  display: block;
}

.support-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  max-width: 860px;
  margin: 24px auto 0;
  padding: 22px;
  border: 1px solid rgba(53, 233, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 10%, rgba(53, 233, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(10, 28, 48, 0.92), rgba(14, 18, 36, 0.92));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.support-box h3 {
  margin: 8px 0 8px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: 0;
}

.support-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.whatsapp-button {
  color: #03130b;
  border-color: rgba(37, 211, 102, 0.55);
  background: linear-gradient(135deg, var(--action-2), var(--action));
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.22);
}

.whatsapp-button:hover {
  box-shadow: 0 22px 52px rgba(37, 211, 102, 0.3);
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 920px;
  margin-inline: auto;
}

.final-cta .button {
  margin-top: 26px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 60px;
  z-index: 42;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(37, 211, 102, 0.55);
  border-radius: 50%;
  color: var(--action);
  background: #050509;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.1), 0 14px 34px rgba(37, 211, 102, 0.24);
}

.floating-whatsapp span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.13), 0 18px 42px rgba(37, 211, 102, 0.32);
}

.site-footer {
  margin-top: 36px;
  padding: 54px 20px 34px;
  border-top: 1px solid rgba(53, 233, 255, 0.16);
  background: linear-gradient(135deg, rgba(6, 9, 19, 0.98), rgba(10, 30, 58, 0.98));
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  font-weight: 900;
}

.footer-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: #06101a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.footer-specialty {
  margin-top: 28px;
}

.footer-specialty span {
  color: var(--cyan);
  font-weight: 900;
}

.footer-specialty p,
.footer-made,
.footer-bottom,
.legal-box {
  color: rgba(255, 255, 255, 0.72);
}

.footer-divider {
  height: 1px;
  margin: 32px 0;
  background: rgba(53, 233, 255, 0.16);
}

.legal-box {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(53, 233, 255, 0.25);
  border-radius: 8px;
  background: rgba(0, 152, 255, 0.07);
  line-height: 1.6;
  text-align: left;
}

.legal-box strong {
  color: var(--gold);
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(53, 233, 255, 0.16);
  font-size: 0.84rem;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.image-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 7, 17, 0.86);
  cursor: zoom-out;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 920px);
  max-height: 92vh;
  padding: 14px;
  border: 1px solid rgba(53, 233, 255, 0.28);
  border-radius: 8px;
  background: rgba(6, 9, 19, 0.96);
  box-shadow: var(--shadow);
}

.modal-dialog img {
  width: 100%;
  max-height: calc(92vh - 28px);
  object-fit: contain;
  border-radius: 6px;
}

.modal-close {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 9, 19, 0.88);
  color: #fff;
  cursor: pointer;
  font-size: 1.35rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.028);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .kit-section,
  .map-bonus-card,
  .experts-grid,
  .offer-options {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    order: 2;
  }

  .opportunity-grid,
  .practical-grid,
  .bonus-list,
  .lot-cards,
  .timeline,
  .testimonial-grid,
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    display: none;
  }

  .ebook-plan {
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 14px;
  }

  .promo-header {
    min-height: 52px;
    padding: 7px 18px;
    background: #090511;
  }

  .promo-alert {
    max-width: 390px;
    font-size: 0.82rem;
    font-weight: 760;
    line-height: 1.25;
  }

  .brand span:last-child {
    display: none;
  }

  .hero,
  .opportunity-section,
  .position-section,
  .kit-section,
  .experts-section,
  .bonus-section,
  .testimonials-section,
  .offer-section,
  .faq-section,
  .final-cta {
    width: min(100% - 40px, 1180px);
  }

  .hero {
    width: min(100% - 28px, 900px);
    padding: 20px 0 36px;
  }

  .hero-copy .eyebrow {
    display: inline-flex;
  }

  .hero-copy h1 {
    margin: 22px auto 14px;
    font-size: clamp(1.8rem, 9vw, 2.35rem);
    line-height: 1.05;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: block;
    max-width: 100%;
    color: var(--text);
    font-size: clamp(1.8rem, 9vw, 2.35rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    text-align: center;
  }

  .hero-title-mobile span {
    display: inline;
  }

  .mobile-title-gradient {
    background: linear-gradient(92deg, #7b6dff 0%, #4faeff 82%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-media {
    margin-top: 26px;
  }

  .hero-bullets,
  .opportunity-grid,
  .practical-grid,
  .bonus-list,
  .lot-cards,
  .timeline,
  .testimonial-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .lot-card {
    min-height: 0;
  }

  .lot-price {
    margin: 44px 0 30px;
  }

  .hero-proof-bullets {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-proof-bullets li {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    min-width: 150px;
    text-align: center;
  }

  .hero-actions .button,
  .section-cta .button,
  .support-box .button {
    width: 100%;
  }

  .hero .hero-actions {
    width: 100%;
  }

  .hero .hero-actions .button {
    max-width: 360px;
    margin-inline: auto;
  }

  .support-box {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .video-frame {
    width: min(90%, 400px);
    height: auto;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(53, 233, 255, 0.32);
    border-radius: 16px;
  }

  .video-frame video {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }

  .hero-image-frame {
    width: min(100%, 520px);
    border-radius: 10px;
  }

  .market-seals {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }

  .opportunity-section,
  .position-section,
  .kit-section,
  .experts-section,
  .testimonials-section,
  .offer-section,
  .faq-section,
  .final-cta {
    padding: 56px 0;
  }

  .testimonial-image-button {
    height: auto;
  }

  .testimonial-grid img {
    height: auto;
  }

  .testimonial-video-card {
    width: min(100%, 330px);
    margin: 0 auto;
  }

  .market-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .map-nodes {
    grid-template-columns: 1fr;
  }

  .expert-card {
    gap: 18px;
    min-height: 0;
    padding: 24px 20px;
    border-radius: 24px 24px 0 0;
  }

  .expert-card img {
    width: 92px;
    height: 92px;
    max-height: none;
    border-radius: 20px;
  }

  .expert-card h3 {
    font-size: 1.65rem;
  }

  .expert-role {
    font-size: 0.86rem;
    letter-spacing: 0.1em;
  }

  .best-badge {
    position: static;
    margin-bottom: 10px;
  }

  .sticky-buy {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .sticky-buy span,
  .sticky-buy a {
    text-align: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 60px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 640px) {
  .offer-section {
    width: min(100% - 24px, 1180px);
  }

  .lot-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    margin-top: 26px;
  }

  .lot-card {
    display: grid;
    width: 100%;
    min-height: 0;
    padding: 30px 22px 28px;
    border-radius: 8px;
    background: #f4f5f6;
    color: #33424a;
    text-align: center;
    overflow: hidden;
  }

  .lot-card h3 {
    margin: 0;
    color: #33424a;
    font-size: 2rem;
    line-height: 1;
  }

  .lot-status {
    margin-top: 14px;
    color: #4c5a62;
    font-size: 0.86rem;
  }

  .lot-price {
    display: flex;
    margin: 34px 0 26px;
  }

  .lot-price small {
    margin-top: 8px;
    font-size: 1rem;
  }

  .lot-price span {
    font-size: clamp(3.6rem, 17vw, 4.8rem);
  }

  .lot-card ul {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .lot-card li {
    display: flex;
    min-height: 54px;
    padding: 10px 0 10px 34px;
    border-top: 1px solid #d4d7da;
    color: #33424a;
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .lot-card li::before {
    content: "✓";
    left: 4px;
  }

  .lot-button {
    width: 100%;
    min-height: 58px;
    margin-top: 26px;
    font-size: 0.9rem;
  }

  .lot-ribbon {
    right: -52px;
    top: 20px;
    width: 172px;
    padding: 8px 0;
    font-size: 0.7rem;
  }
}
