:root {
  --bg: #1b3022;
  --bg2: #2b4734;
  --bg3: #3a5f46;
  --card: rgba(200, 214, 229, 0.08);
  --card2: rgba(200, 214, 229, 0.13);
  --border: rgba(79, 109, 122, 0.42);
  --text: #c8d6e5;
  --muted: rgba(200, 214, 229, 0.8);
  --soft: rgba(200, 214, 229, 0.62);
  --orange: #ff6b8a;
  --green: #4f6d7a;
  --green2: #3e5864;
  --blueLight: #4f6d7a;
  --max: 1040px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(79, 109, 122, 0.32) 0%,
      rgba(27, 48, 34, 0.2) 40%,
      transparent 68%
    ),
    linear-gradient(180deg, #3a5f46 0%, #1b3022 42%, #122016 100%);
  min-height: 100vh;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.top-note {
  padding: 18px 0 6px;
  display: flex;
  justify-content: center;
}

.top-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(79, 109, 122, 0.75);
  flex: 0 0 auto;
}

.hero {
  padding: 0px 0 50px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 109, 122, 0.16);
  border: 1px solid rgba(79, 109, 122, 0.34);
  color: #c8d6e5;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

h1 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(35px, 6vw, 70px);
  line-height: 0.98;
  letter-spacing: -2.4px;
  font-weight: 950;
}

.brand {
  color: var(--orange);
  white-space: nowrap;
}

.subheadline {
  max-width: 810px;
  margin: 22px auto 0;
  color: rgba(200, 214, 229, 0.88);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.subheadline strong {
  color: #c8d6e5;
  font-weight: 900;
}

.hero-divider {
  max-width: 600px;
  margin: 38px auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 138, 0.55),
    rgba(200, 214, 229, 0.24),
    rgba(79, 109, 122, 0.55),
    transparent
  );
  position: relative;
}

.hero-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 107, 138, 0.58);
}

.quick-proof {
  margin: 32px auto 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.055)
  );
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 19px 16px;
  min-height: 138px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 107, 138, 0.14);
  border: 1px solid rgba(255, 107, 138, 0.3);
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 12px;
}

.proof-card h3 {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 7px;
  font-weight: 900;
}

.proof-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}

.cta-wrap {
  margin-top: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 270px;
  min-height: 68px;
  padding: 0 36px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--green), var(--green2));
  color: #edf4fa;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.3px;
  box-shadow: 0 16px 40px rgba(79, 109, 122, 0.32);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  text-align: center;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(79, 109, 122, 0.4);
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow:
      0 16px 40px rgba(79, 109, 122, 0.32),
      0 0 0 0 rgba(79, 109, 122, 0.5);
  }

  50% {
    box-shadow:
      0 16px 40px rgba(79, 109, 122, 0.32),
      0 0 0 14px rgba(79, 109, 122, 0);
  }
}

.cta {
  animation: ctaPulse 2.6s ease-out infinite;
}

.cta:hover {
  animation: none;
}

@keyframes arrowSlide {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

.cta::after {
  display: none;
}

.trust-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 107, 138, 0.14);
  border: 1px solid rgba(255, 107, 138, 0.28);
  color: #ffd9e2;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.micro {
  color: rgba(200, 214, 229, 0.7);
  font-size: 12.5px;
  max-width: 620px;
}

.mini-disclaimer {
  max-width: 780px;
  margin: 18px auto 0;
  color: rgba(200, 214, 229, 0.6);
  font-size: 11.5px;
  line-height: 1.55;
}

.section {
  padding: 56px 0;
  background: rgba(200, 214, 229, 0.03);
  border-top: 1px solid rgba(79, 109, 122, 0.24);
}

.section.alt {
  background: rgba(0, 0, 0, 0.08);
}

.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 30px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
  font-weight: 950;
}

.section-title p {
  color: var(--muted);
  font-size: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 26px;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
}

.step-number {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(79, 109, 122, 0.2);
  border: 1px solid rgba(79, 109, 122, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: #c8d6e5;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 900;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.benefit {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.benefit h3 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 950;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(79, 109, 122, 0.2);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex: 0 0 auto;
}

.benefit p {
  color: var(--muted);
  font-size: 14.5px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
}

.feature-panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.14);
}

.feature-panel h3 {
  font-size: 25px;
  line-height: 1.08;
  margin-bottom: 12px;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.feature-panel p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  color: rgba(200, 214, 229, 0.84);
  font-size: 14.5px;
  padding-left: 30px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(79, 109, 122, 0.2);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.stat-box {
  background: rgba(0, 0, 0, 0.13);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 14px;
}

.stat {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 13.5px;
}

.offer-card {
  max-width: 860px;
  margin: 30px auto 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.offer-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 12px;
  font-weight: 950;
}

.offer-card p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
}

.faq {
  max-width: 860px;
  margin: 26px auto 0;
  display: grid;
  gap: 10px;
}

details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
}

details p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 14.5px;
}

.footer {
  background: #122016;
  padding: 44px 0 70px;
  border-top: 1px solid rgba(79, 109, 122, 0.24);
}

.footer-top {
  text-align: center;
  color: rgba(200, 214, 229, 0.6);
  font-size: 12px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
  font-size: 12px;
  color: rgba(200, 214, 229, 0.64);
}

.legal {
  max-width: 920px;
  margin: 0 auto;
  color: rgba(200, 214, 229, 0.64);
  font-size: 11.5px;
  line-height: 1.65;
}

.legal h3 {
  color: #c8d6e5;
  font-size: 14px;
  margin: 22px 0 8px;
}

.legal strong {
  color: #c8d6e5;
}

.legal .highlight {
  color: #ff6b8a;
  font-weight: 900;
}

.legalList {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(200, 214, 229, 0.58);
}

/* Trust strip */
.trust-strip {
  padding: 30px 0 6px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.trust-item .trust-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(79, 109, 122, 0.24);
  color: #c8d6e5;
  font-size: 14px;
}

.trust-item span {
  color: rgba(200, 214, 229, 0.8);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
}

/* Step connectors */
.steps {
  position: relative;
}

.step {
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  font-size: 20px;
  box-shadow: 0 0 0 6px rgba(79, 109, 122, 0.14);
}

.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: rgba(255, 107, 138, 0.78);
  font-weight: 900;
  z-index: 2;
  animation: arrowSlide 1.8s ease-in-out infinite;
}

/* Enhanced stats */
.stat {
  position: relative;
  overflow: hidden;
}

.stat strong {
  font-size: 36px;
  letter-spacing: -1px;
  text-shadow: 0 0 24px rgba(255, 107, 138, 0.34);
}

.stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), rgba(255, 107, 138, 0));
  border-radius: 4px;
}

/* Function cards differentiated */
.functions-grid .benefit {
  background: linear-gradient(
    160deg,
    rgba(79, 109, 122, 0.2),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(79, 109, 122, 0.3);
}

.functions-grid .benefit h3 {
  color: #ffd9e2;
}

.functions-grid .benefit .check {
  background: rgba(255, 107, 138, 0.22);
  color: var(--orange);
}

/* Urgency badge */
.urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 138, 0.16);
  border: 1px solid rgba(255, 107, 138, 0.4);
  color: #ffd9e2;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.urgency .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 107, 138, 0.7);
  animation: ctaPulse 1.8s ease-out infinite;
}

/* Section visual differentiation */
.section.alt {
  background:
    radial-gradient(ellipse at top, rgba(79, 109, 122, 0.24), transparent 70%),
    rgba(0, 0, 0, 0.14);
}

.section-glow {
  position: relative;
}

.section-glow::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 138, 0.5),
    transparent
  );
}

/* Tenue disclaimer */
.micro {
  color: rgba(200, 214, 229, 0.52);
  font-size: 11.5px;
}

/* Desktop sticky top bar */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(18, 32, 22, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(79, 109, 122, 0.28);
  padding: 10px 0;
}

.sticky-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

.sticky-top-brand {
  font-weight: 950;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.sticky-top-brand .brand {
  color: var(--orange);
}

.sticky-top-msg {
  font-weight: 800;
  font-size: 15px;
  color: rgba(200, 214, 229, 0.94);
  letter-spacing: -0.2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sticky-top-msg .arrow {
  color: var(--orange);
  font-size: 18px;
  font-weight: 950;
  animation: arrowSlide 1.6s ease-in-out infinite;
}

.sticky-top .cta {
  animation: none;
  min-height: 42px;
  min-width: auto;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(79, 109, 122, 0.34);
}

.sticky-mobile {
  display: none;
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding: 0px 0 34px;
  }

  h1 {
    letter-spacing: -1.5px;
  }

  .brand {
    white-space: normal !important;
  }

  .subheadline {
    font-size: 15.5px;
  }

  .quick-proof,
  .steps,
  .benefits-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .steps {
    gap: 32px;
  }

  .step:not(:last-child)::after {
    content: '↓';
    right: 50%;
    top: auto;
    bottom: -26px;
    transform: translateX(50%);
    font-size: 22px;
  }

  .sticky-top {
    display: none;
  }

  .stat strong {
    font-size: 30px;
  }

  .proof-card {
    min-height: auto;
    padding: 17px 16px;
  }

  .cta {
    width: 100%;
    max-width: 370px;
    min-height: 56px;
    font-size: 18px;
  }

  .section {
    padding: 42px 0;
  }

  .feature-panel,
  .stat-box,
  .offer-card {
    padding: 26px 18px;
  }

  .footer {
    padding-bottom: 96px;
  }

  .sticky-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 10px 12px;
    background: rgba(18, 32, 22, 0.93);
    border-top: 1px solid rgba(79, 109, 122, 0.3);
    z-index: 20;
  }

  .sticky-mobile .cta {
    max-width: none;
    width: 100%;
    min-height: 50px;
    border-radius: 12px;
    font-size: 17px;
  }
}
