/* ============================================================
   style.css — GEO Optimizer AutoPilot (OTO1)
   Design system: GUIDE.md — Light Theme
   ============================================================ */

/* ── Google Fonts ──────────────────────────────────────────── */
/* Loaded via <link> in index.html */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg: #fdfaff;
  --color-surface: #ffffff;
  --color-dark: #09090b;
  --color-text: #09090b;
  --color-text-muted: #666666;
  --color-text-light: #ffffff;
  --color-lavender-bg: #f0f4ff;

  --color-blue: #2887ff;
  --color-blue-mid: #166eff;
  --color-blue-deep: #0061ff;
  --color-blue-light: #22cfff;
  --color-yellow: #ffd106;
  --color-orange: #ff6a35;
  --color-red: #ff0048;
  --color-pink: #ff2890;
  --color-green: #00c853;
  --color-green-light: #e6f9ee;

  /* Gradients */
  --grad-rainbow: linear-gradient(
    64deg,
    #2887ff 4.4%,
    #22cfff 40.3%,
    #ffd106 62.1%,
    #ff6a35 106.3%
  );
  --grad-rainbow-tint: linear-gradient(
    84deg,
    rgba(40, 135, 255, 0.06) 4.4%,
    rgba(34, 207, 255, 0.06) 40.3%,
    rgba(255, 209, 6, 0.06) 62.1%,
    rgba(255, 106, 53, 0.06) 106.3%
  );
  --grad-problem-tint: linear-gradient(
    87deg,
    rgba(255, 40, 176, 0.06) 4.4%,
    rgba(255, 34, 104, 0.06) 106.3%
  );
  --grad-problem-card: linear-gradient(to bottom, #fff0f0, #ffdada);
  --grad-btn-primary: linear-gradient(
    81deg,
    #2067f3 4.4%,
    #2887ff 55.9%,
    #1a56d6 88%
  );

  /* Typography */
  --font-heading: "Bricolage Grotesque", "Inter", sans-serif;
  --font-body: "DM Sans", "Inter", sans-serif;

  --text-hero: clamp(36px, 4.2vw, 66px);
  --text-h2: clamp(26px, 2.8vw, 48px);
  --text-h3: clamp(18px, 1.6vw, 24px);
  --text-lg: 20px;
  --text-base: 18px;
  --text-sm: 16px;
  --text-xs: 14px;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-hero: 1.12;
  --lh-h2: 1.2;
  --lh-body: 1.65;
  --lh-sm: 1.55;

  /* Layout */
  --max-width: 1100px;
  --container-padding: clamp(1.25rem, 5vw, 2rem);
  --section-py: clamp(56px, 7vw, 80px);

  /* Radii */
  --radius-card: 20px;
  --radius-pill: 60px;
  --radius-btn: 130px;
  --radius-sm: 10px;
  --radius-xs: 8px;

  /* Shadows */
  --shadow-header: 0px 0px 50px 0px rgba(206, 165, 224, 0.25);
  --shadow-card: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0px 8px 40px 0px rgba(40, 135, 255, 0.15);
  --shadow-btn: 0px 4px 20px 0px rgba(40, 135, 255, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.5s ease;
}
html {
  scroll-behavior: smooth;
}
/* ── Base ──────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--section-py);
}

.section--dark {
  background-color: var(--color-dark);
}

.section--lavender {
  background-color: var(--color-lavender-bg);
}

.container--center {
  text-align: center;
}

/* ── Gradient Text Utilities ───────────────────────────────── */
.gradient-text {
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text--red {
  background: linear-gradient(90deg, #ff0048, #ff0048);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text--orange {
  background: linear-gradient(82deg, #ffd106 4.4%, #ff6a35 52%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Section Badge ─────────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  background: var(--grad-rainbow-tint);
  border: 1.5px solid var(--color-blue);
  color: var(--color-text);
  max-width: 100%;
}

.section-badge--red {
  background: var(--grad-problem-tint);
  border-color: var(--color-pink);
  color: var(--color-red);
  font-size: 18px;
}

.section-badge--orange {
  background: linear-gradient(
    84deg,
    rgba(255, 209, 6, 0.08),
    rgba(255, 106, 53, 0.08)
  );
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.section-badge--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.9);
}

/* ── Section Header ────────────────────────────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 0;
  will-change: transform, opacity;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.section-title--light {
  color: var(--color-text-light);
}

.section-subtext {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
  max-width: 640px;
  text-align: center;
}

.section-subtext--light {
  color: rgba(255, 255, 255, 0.65);
}

/* ── CTA Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--grad-btn-primary);
  border-radius: var(--radius-btn);
  padding: 0 10px 0 28px;
  height: 66px;
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(40, 135, 255, 0.55);
}

.btn-primary__label {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: var(--fw-semibold);
  color: #ffffff;
  padding-right: 12px;
  white-space: nowrap;
}

.btn-primary__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 130px;
  height: 44px;
  padding: 0 18px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: var(--fw-extrabold);
  color: var(--color-blue-mid);
  white-space: nowrap;
}

.btn-primary--sm {
  height: 44px;
  padding: 0 6px 0 20px;
}

.btn-primary--sm .btn-primary__label {
  font-size: 15px;
  padding-right: 8px;
}

.btn-primary--sm .btn-primary__price {
  height: 30px;
  font-size: 15px;
  padding: 0 12px;
}

.btn-skip {
  display: inline-block;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  transition: color var(--transition-fast);
}

.btn-skip:hover {
  color: var(--color-text);
}

/* ── Site Header ───────────────────────────────────────────── */
.ma_user_list ul {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255 / 50%);
  width: fit-content;
  margin: auto;
  padding: 10px 30px 10px 10px;
  border-radius: 50px;
}
.ma_user_list ul li {
  margin-right: -15px;
  text-align: left;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  font-family: "Bricolage Grotesque", sans-serif;
}
.ma_user_list ul li img {
  border-radius: 50px;
}
.ma_user_list ul li:last-child {
  margin: 0 0 0 35px;
}

.ma_user_list ul li:last-child span {
  color: #126cff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-header);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  max-width: 1650px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header__logo-img {
  display: block;
  height: 35px;
  width: auto;
}

.site-header__tag {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  flex: 1;
  display: none;
}

@media (min-width: 768px) {
  .site-header__tag {
    display: block;
  }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(40px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #f5f3ff;
}

.hero::before {
  content: none;
}

.hero__bgfx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #f5f3ff;
}

.hero__bgfx-blob,
.hero__bgfx-noise,
.hero__bgfx-stripes,
.hero__bgfx-fade {
  position: absolute;
  inset: 0;
}

.hero__bgfx-blob {
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0;
  will-change: opacity, transform;
}

.hero__bgfx-blob--blue {
  width: 75%;
  height: 65%;
  top: -30%;
  left: -14%;
  background: radial-gradient(
    ellipse at 58% 52%,
    rgba(120, 195, 230, 0.38) 0%,
    rgba(155, 215, 242, 0.22) 28%,
    rgba(190, 232, 250, 0.1) 55%,
    transparent 78%
  );
  transform: rotate(-8.58deg);
}

.hero__bgfx-blob--purple {
  width: 75%;
  height: 68%;
  top: -28%;
  right: -12%;
  background: radial-gradient(
    ellipse at 42% 52%,
    rgba(148, 132, 215, 0.35) 0%,
    rgba(175, 162, 228, 0.2) 28%,
    rgba(205, 198, 240, 0.09) 55%,
    transparent 78%
  );
  transform: rotate(9.94deg);
}

.hero__bgfx-noise {
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.hero__bgfx-stripes {
  z-index: 2;
  pointer-events: none;
}

.hero__bgfx-stripe {
  position: absolute;
  top: 0;
  height: 100%;
  opacity: 0;
  will-change: opacity;
}

.hero__bgfx-fade {
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  height: 40%;
  background: linear-gradient(180deg, rgba(245, 243, 255, 0) 0%, #f5f3ff 100%);
  pointer-events: none;
}

.hero__glow-1,
.hero__glow-2,
.hero__glow-3 {
  display: none;
}

.hero__glow-1 {
  width: 700px;
  height: 500px;
  background: rgba(40, 135, 255, 0.1);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__glow-2 {
  width: 360px;
  height: 280px;
  background: rgba(255, 106, 53, 0.09);
  bottom: -40px;
  right: 5%;
}

.hero__glow-3 {
  width: 300px;
  height: 250px;
  background: rgba(34, 207, 255, 0.08);
  bottom: -40px;
  left: 5%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--grad-rainbow-tint);
  border: 1.5px solid rgba(40, 135, 255, 0.3);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-rainbow);
  flex-shrink: 0;
}

/* Heading */
.hero__heading {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-hero);
  letter-spacing: -0.025em;
  color: var(--color-text);
  max-width: 820px;
}
.hero__heading span.span_normal {

        background: linear-gradient(120deg, #09090B 0%, #2067F3 40%, #09090B 75%, #2067F3 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text; background-size: 250% auto;
      animation: h1Sweep 5s linear infinite alternate;
}
  @keyframes h1Sweep {
      0%   { background-position: 0% center; }
      100% { background-position: 250% center; }
    }
/* Sub */
.hero__sub {
  font-size: var(--text-lg);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
  max-width: 820px;
}

.hero__sub strong {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}

/* CTAs side-by-side */
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Outline button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(40, 135, 255, 0.35);
  background: rgba(40, 135, 255, 0.05);
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast);
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--color-blue);
  background: rgba(40, 135, 255, 0.1);
}

/* Social proof */
.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero__avatars {
  display: flex;
  align-items: center;
}

.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: #fff;
  margin-left: -8px;
  flex-shrink: 0;
}

.hero__avatars .hero__avatar:first-child {
  margin-left: 0;
}

.hero__proof-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.hero__stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 1px;
  line-height: 1;
}

.hero__proof-label {
  font-size: 13px;
  color: var(--color-text-muted);
}

.hero__proof-label strong {
  color: var(--color-text);
}

/* Trust strip */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
  text-align: left;
}

.hero__trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Bridge ────────────────────────────────────────────────── */
.bridge {
  padding-top: 80px;
  padding-bottom: 0;
}

.bridge__box {
  max-width: 860px;
  margin-inline: auto;
  /* Lavender dot-grid card matching reference CTA box style */
  background-color: #f0f4ff;
  background-image: radial-gradient(
    circle,
    rgba(40, 135, 255, 0.12) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  border: 1.5px solid rgba(40, 135, 255, 0.18);
  border-radius: 24px;
  padding: 40px 44px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 4px 32px rgba(40, 135, 255, 0.08);
  will-change: transform, opacity;
  position: relative;
  overflow: hidden;
}

/* Subtle top gradient accent */
.bridge__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-rainbow);
  border-radius: 24px 24px 0 0;
}

/* Emoji icon in a rounded square */
.bridge__emoji-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(40, 135, 255, 0.12);
  border: 1px solid rgba(40, 135, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.bridge__content {
  flex: 1;
  min-width: 0;
}

.bridge__heading {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.35;
}

.bridge__body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
}

.bridge__body strong {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}

/* ── Problem Grid ──────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1050px;
  margin: 40px auto 40px;
}
.problem-grid-flex .problem-card {
    flex-direction: unset;
    gap: 20px;
}
.problem_img_wr {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

@media (min-width: 640px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.problem-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    will-change: transform, opacity;
    border: solid 1px #dddddd;
}

.problem-card__icon {
    font-size: 28px;
    line-height: 1;
    max-width: 100px;
    margin-bottom: 10px;
    max-height: 100px;
    object-fit: contain;
}

.problem-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.35;
}

.problem-card__body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-sm);
}

/* Pain pull-quote */
.pain-pull {
  max-width: 720px;
  margin-inline: auto;
  background: rgba(255, 107, 43, 0.04);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: var(--radius-sm);
  padding: 24px 32px;
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.65;
  text-align: center;
  will-change: transform, opacity;
}

.pain-pull span {
  color: var(--color-orange);
  font-style: normal;
  font-weight: var(--fw-semibold);
}

/* ── Solution Section ──────────────────────────────────────── */
.solution {
  border-top: 1px solid rgba(40, 135, 255, 0.12);
}

.autopilot-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    will-change: transform, opacity;
    margin: 0 auto 30px;
    box-shadow: 20px 20px 20px #8383831f;
    padding: 10px 20px 10px 10px;
    width: max-content;
    background-color: #ffffff;
    border: 1px solid #2F8AFF;
    border-radius: 30px;
    box-shadow: 0px 0px 60px 0px #1B59D84D;
    text-align: center;
}

.autopilot-product__icon {
    width: 78px;
    height: 78px;
    background: radial-gradient(50% 50% at 50% 50%, #2358BD 0%, #2F8AFF 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0px 0px 30px 0px #2478F94D;
    flex-shrink: 0;
}

.autopilot-product__name {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: var(--fw-extrabold);
    text-transform: capitalize;
    color: #2E87FC;
    line-height: normal;
}
.autopilot-product__icon img {
    max-width: 57px;
}
.autopilot-product__subtitle {
    font-size: 26px;
    color: #222222;
    font-weight: 500;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  /* Switch to flexbox so orphan cards auto-center on the last row */
  .feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .feature-grid .feature-card {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }
}
section#solution {
  padding-bottom: 80px;
}
section#solution div#feature-grid {
    margin-top: 30px;
}
section#solution .container {
    max-width: 1400px;
}
.feature-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
  will-change: transform, opacity;
}

.feature-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.feature-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  background: rgba(40, 135, 255, 0.08);
  color: var(--color-blue);
  width: fit-content;
}

.feature-card__badge--green {
  background: rgba(0, 200, 83, 0.1);
  color: #00a854;
}
.feature-card__badge--orange {
  background: rgba(255, 106, 53, 0.1);
  color: var(--color-orange);
}
.feature-card__badge--purple {
  background: rgba(130, 80, 255, 0.1);
  color: #7c3aed;
}

.feature-card__emoji {
    font-size: 36px;
    line-height: 1;
    max-width: 180px;
    height: 150px;
    margin-bottom: 30px;
    object-fit: contain;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.35;
}

.feature-card__body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-sm);
}

/* ── Before / After (dark section) ────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ba-card {
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid;
  will-change: transform, opacity;
}

.ba-card--before {
  background: #ff4f4f;
  border-color: rgba(255, 0, 72, 0.2);
}

.ba-card--after {
    background: #00c853;
    border-color: rgba(0, 200, 83, 0.2);
}

.ba-card__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ba-card--before .ba-card__label {
    border-radius: 46px;
    padding: 10px 10px;
    width: 217px;
    background-color: #ffffff;
    color: #ff4f4f;
    margin-bottom: 29px;
    text-align: center;
}
.ba-card--after .ba-card__label {
    color: #00c853;
    border-radius: 46px;
    padding: 10px 10px;
    width: 217px;
    background-color: #ffffff;
    text-align: center;
}

.ba-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.ba-list__icon {
  font-size: 14px;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: 1px;
}

.ba-card--before .ba-list__icon {
  color: #ffffff;
}
.ba-card--after .ba-list__icon {
  color: #ffffff;
}

/* ── Testimonial Card ──────────────────────────────────────── */
section#proof {
  padding-top: 20px;
}
.testimonial-card {
  max-width: 820px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  will-change: transform, opacity;
  margin: 30px auto 0;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--color-text-light);
  flex-shrink: 0;
}

.testimonial-card__stars {
  font-size: 18px;
  color: var(--color-yellow);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-body);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card__meta {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-card__meta strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--fw-semibold);
}


.el_testimonials_box h4 {
  color: #000;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5px;
}
.el_testimonials_box p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  margin-top: 10px;
}
.el_testimonials_box p span {
  font-weight: 600;
}

.aif-chatbot-tesmnl-leftslide {
  animation: scrollLeft 30s linear infinite;
}
.aif-chatbot-tesmnl-rightslide {
  animation: scrollRight 30s linear infinite;
}
.aif-chatbot-tesmnl-slider:hover {
  animation-play-state: paused;
}
@keyframes scrollLeft {
  100% {
    transform: translateX(calc(-320px * 5));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-320px * 5));
  }
  100% {
    transform: translateX(0);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .card {
    width: 250px;
  }

  .slide-track {
    width: calc(250px * 10);
  }

  @keyframes scrollLeft {
    100% {
      transform: translateX(calc(-250px * 5));
    }
  }

  @keyframes scrollRight {
    0% {
      transform: translateX(calc(-250px * 5));
    }
  }
}

.testimonial-section {
  background: #1a0126;
  padding: 80px 0;
}
.geo_tesmnl_slider_parent {
  position: relative;
}
.slider {
  position: relative;
  overflow: visible;
  margin-top: 40px;
}

.geo_tesmnl_slider_parent::before,
.geo_tesmnl_slider_parent::after {
  display: none;
}

.slide-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 100%;
}

.card {
  width: 100%;
  margin: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Static testimonial grid */
.left,
.right {
  animation: none !important;
  transform: none !important;
}

.geo_tesmnl_slider_parent .slider + .slider {
  display: none;
}



@media (max-width: 991px) {
  .slide-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .slide-track {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .card {
    max-width: 560px;
  }
}
/* testimonial css */
/* ── Checklist ─────────────────────────────────────────────── */
.section-header.geo_product_wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-direction: unset;
  max-width: 1080px;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 50px 80px;
  border: 1px solid rgba(40, 135, 255, 0.18);
}
.geo_product_box img {
  max-width: 400px;
  max-height: 450px;
  object-fit: contain;
  width: 100%;
}
.geo_product_content {
  text-align: left;
}
.geo_product_content p.section-subtext {
  text-align: left;
}
.geo_product_content h2.section-title {
  margin: 20px 0 5px;
}


.geo_tesmnl_slider_parent .container-fluid {
    padding: 0;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}
.el_testimonials_box {
    padding: 40px;
    text-align: left;
}
.hs_stickybar_wrapper {
  display: none !important;
}
.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 48px;
}
ul#checklist {
  margin-top: 50px;
  padding: 50px;
  background-color: #f7f9ff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  margin-bottom: 30px;
}

@media (min-width: 640px) {
  .checklist {
    grid-template-columns: 1fr 1fr;
  }
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.55;
  will-change: transform, opacity;
}

.checklist__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA Box ───────────────────────────────────────────────── */
.cta-box {
  background: var(--color-surface);
  border: 1.5px solid rgba(40, 135, 255, 0.15);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
  /* Subtle dot-grid background */
  background-image: radial-gradient(
    circle,
    rgba(40, 135, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

.cta-box__heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 40px);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.25;
}

.cta-box__skip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* ── Guarantee Box ─────────────────────────────────────────── */
.guarantee-box {
  max-width: 780px;
  margin-inline: auto;
  background: var(--color-lavender-bg);
  border: 1px solid rgba(40, 135, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  text-align: center;
  will-change: transform, opacity;
}

.guarantee-box__badge {
  margin: 0 0 40px;
  display: flex;
  justify-content: center;
}

.guarantee-box__badge-days {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: var(--fw-extrabold);
  color: #fff;
  line-height: 1;
}

.guarantee-box__badge-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
}

.guarantee-box__body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
  max-width: 620px;
  margin: 0 auto 32px;
}

.guarantee-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: left;
}
.geo_guarntee_box {
  background-image: url(../images/guarantee-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0px 0px 90px 0px #0d45b233;
  padding: 130px 30px 30px 40px;
  max-width: 1075px;
  width: 100%;
  margin: 100px auto 0 auto;
  position: relative;
  text-align: center;
}
.geo_guarntee_box > img {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: auto;
}
.geo_guarntee_box > p {
  font-size: 18px;
  font-weight: 400;
  color: #09090b;
  margin-top: 15px;
}
.geo_guarntee_bulelts {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.geo_guarntee_bulelts ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.geo_guarntee_bulelts ul li:not(:last-child) {
  margin-bottom: 20px;
}
.geo_guarntee_bulelts ul li img {
  flex: none;
  position: relative;
  top: -1px;
}
.geo_guarntee_bulelts ul li p {
  font-size: 18px;
  font-weight: 700;
  color: #09090b;
  text-align: left;
}
/* Guarantee section */
@media (max-width: 991px) {
  .problem-grid-flex .problem-card {
        gap: 0;
        flex-wrap: wrap;
    }
    .geo_product_content {
        text-align: center;
    }
    .section-header.geo_product_wrapper {
        gap: 40px;
        padding: 40px 30px;
        flex-direction: column;
    }
    .geo_product_content p.section-subtext {
        text-align: center;
    }
}

@media (min-width: 640px) {
  .guarantee-items {
    grid-template-columns: 1fr 1fr;
  }
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.guarantee-item__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Countdown Timer ───────────────────────────────────────── */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown__digit {
  min-width: 72px;
  height: 72px;
  background: var(--color-lavender-bg);
  border: 1.5px solid rgba(40, 135, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  letter-spacing: -1px;
}

.countdown__label {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.countdown__sep {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: var(--fw-extrabold);
  color: var(--color-text-muted);
  line-height: 72px;
  padding-bottom: 22px;
}

.urgency-note {
  animation: urgency-pulse 2.5s ease-in-out infinite;
  border-radius: 30px;
  border: 1px solid #ff4727;
  padding: 13px;
  margin: 30px auto 0;
  width: 480px;
  background-color: #ff6a355c;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid rgba(40, 135, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  will-change: transform, opacity;
}
section#countdown-section {
  padding-top: 0;
  background: transparent;
}
section#faq {
  background: linear-gradient(180deg, #f8eefd 0%, #eef4fd 94.03%);
}
div#faq-grid {
  margin-top: 30px;
}
.faq-item__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  line-height: 1.4;
}

.faq-item__chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-lavender-bg);
  border: 1px solid rgba(40, 135, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast);
  font-size: 12px;
  color: var(--color-blue);
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
  background: var(--color-blue);
  color: #fff;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.is-open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
}

/* ── Trust Micro Row ───────────────────────────────────────── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-row__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
}

/* ── Final CTA Section ─────────────────────────────────────── */
.final-cta {
  text-align: center;
  will-change: transform, opacity;
}

/* ── Utility: margin helpers (used in guarantee / countdown) ── */
.guarantee-box .section-title {
  margin-bottom: 16px;
}

.cta-box__note {
  font-size: 16px;
  color: var(--color-text-muted);
}

.countdown-section__note {
  margin-top: 20px;
}

/* ── Site Footer ───────────────────────────────────────────── */
.site-footer {
  padding: 56px 60px 40px;
  text-align: center;
  background: #0e0a24;
  margin: 0 60px 44px;
  border-radius: 40px;
}

.site-footer__card {
  margin-top: 48px;
  border-radius: 24px;
  padding: 48px 60px 40px;
  background: linear-gradient(0deg, #170920 0%, #161247 100%);
  border: 1px solid rgba(100, 80, 200, 0.3);
}

.site-footer__disclaimer-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: #ffffff;
  margin-bottom: 20px;
}

.site-footer__disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 1140px;
    margin: 0 auto 48px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.site-footer__logo-img {
  display: block;
  height: 39px;
  width: auto;
}

.site-footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.site-footer__copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
}

.site-footer__copy a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer__copy a:hover {
  color: #ffffff;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer__nav a:hover {
  color: #ffffff;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile fixes
   ══════════════════════════════════════════════════════════════ */

/* ── 640px and below ───────────────────────────────────────── */
@media (max-width: 640px) {
  /* Hero */
  .hero__badge {
    font-size: 12px;
    padding: 6px 14px;
    text-align: center;
    white-space: normal;
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero__ctas .btn-primary,
  .hero__ctas .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Section badges — allow wrapping on mobile to prevent horizontal overflow */
  .section-badge {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .hero__proof {
    flex-direction: column;
    gap: 8px;
  }

  .hero__proof-text {
    align-items: center;
  }

  .hero__trust {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding-inline: 8px;
  }

  /* Bridge */
  .bridge__box {
    flex-direction: column;
    gap: 16px;
    padding: 28px 20px;
  }

  .bridge__emoji-wrap {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  /* Section header */
  .section-header {
    margin-bottom: 32px;
  }

  /* CTA box */
  .cta-box {
    padding: 32px 20px;
  }

  .cta-box__heading {
    font-size: clamp(18px, 5vw, 26px);
  }

  /* Btn-primary — prevent price pill from overflowing */
  .btn-primary {
    max-width: 100%;
    height: auto;
    padding: 10px 10px 10px;
    flex-wrap: wrap;
  }

  .site-header__inner .btn-primary__label {
    font-size: 12px;
    padding: 0;
  }

  .btn-primary__price {
    height: 38px;
    font-size: 17px;
    padding: 0 14px;
  }

  /* Guarantee box */
  .guarantee-box {
    padding: 32px 20px;
  }

  /* Countdown */
  .countdown__digit {
    min-width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .countdown__sep {
    font-size: 28px;
    line-height: 56px;
    padding-bottom: 20px;
  }

  /* FAQ */
  .faq-item__toggle {
    padding: 16px 18px;
  }

  /* Final CTA trust row */
  .cta-box .trust-row {
    flex-direction: column;
    gap: 8px;
    align-items: baseline;
  }
  .trust-row__item {
    text-align: left;
}

  /* Footer */
  .site-footer {
    padding: 40px 16px 32px;
    margin: 0 12px 24px;
    border-radius: 24px;
  }

  .site-footer__card {
    padding: 32px 20px 28px;
    margin-top: 32px;
  }

  .site-footer__logo-img {
    height: 32px;
  }

  .site-footer__tagline {
    font-size: 13px;
  }

  .site-footer__nav {
    gap: 8px 16px;
  }

  .site-footer__nav a {
    font-size: 12px;
  }
}

/* ── 768px and below (tablet) ──────────────────────────────── */
@media (max-width: 768px) {
  /* Section badge light — boost visibility on dark bg */
  .section-badge--light {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
  }

  /* Testimonial card */
  .testimonial-card {
    flex-direction: column;
    gap: 16px;
    padding: 28px 20px;
  }

  /* BA cards */
  .ba-card {
    padding: 24px 20px;
  }

  /* Footer outer */
  .site-footer {
    padding: 40px 20px 32px;
    margin: 0 16px 28px;
    border-radius: 28px;
  }

  .site-footer__card {
    padding: 36px 24px 28px;
  }
  .autopilot-product__name {
    font-size: 24px;
    }
  .autopilot-product__subtitle {
        font-size: 16px;
    }
    ul#checklist {
        margin-top: 0;
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .btn-primary__label {
        font-size: 16px;
    }
    .btn-primary__price {
        height: 30px;
        font-size: 16px;
        padding: 0 10px;
    }
    .site-header__logo-img {
        max-width: 100px;
        object-fit: contain;
    }
    .autopilot-product {
        flex-direction: column;
        max-width: 100%;
    }
    .ma_user_list ul li {
        margin-right: -15px;
        font-size: 12px;
    }
    .hero__heading {
        font-size: 26px;
    }
    .hero__sub {
        font-size: 16px;
    }
    .geo_guarntee_box {
        padding: 130px 20px 20px;
    }
    .geo_guarntee_bulelts {
        padding: 20px 15px;
    }
    .geo_guarntee_bulelts ul li p {
        font-size: 16px;
    }
    .section-header.geo_product_wrapper {
        gap: 30px;
        padding: 30px 14px;
        flex-direction: column;
    }
    .site-footer__card {
        padding: 36px 15px 28px;
    }
    .site-footer {
        padding: 40px 15px 32px;
        margin: 0 10px 20px;
    }
    
}
