/* ============================================================
   style.css — GEO Optimizer Bundle Deal
   Design system + bundle-specific components
   ============================================================ */

/* ── 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(48px, 5.5vw, 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.40);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.5s  ease;
}

/* ── Base ──────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
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 ─────────────────────────────────────────── */


.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);
}

.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--green {
  background: rgba(0,200,83,0.07);
  border-color: var(--color-green);
  color: #00a854;
}

.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-badge--gold {
  background: rgba(255,186,0,0.12);
  border-color: rgba(255,186,0,0.6);
  color: #ffba00;
}

/* ── Section Header ────────────────────────────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 36px;
  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: 750px;
  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-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: rgb(255 255 255);
  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.10);
}

.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 ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #160516;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-header);
  border-bottom: none;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-rainbow);
  z-index: 1;
}

.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 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(40,135,255,0.06), rgba(34,207,255,0.06));
  border: 1px solid rgba(40,135,255,0.18);
  border-radius: 40px;
  padding: 6px 18px 6px 8px;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: #ffffff;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .site-header__tag { display: inline-flex; }
}

.site-header__tag::before {
  content: '📦';
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
}

.site-header__tag strong {
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--fw-bold);
}

.site-header__cta {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .site-header__cta { display: block; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(40,135,255,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255,106,53,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(34,207,255,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #fdfaff 0%, #f5f0ff 100%);
    background: url(../images/bundle_bg.webp) #0f2f5e;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.container.hero__inner {
    max-width: 1500px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -60px;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(40,135,255,0.22) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  animation: grid-drift 20s linear infinite;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0) 100%);
}

.hero__glow-1,
.hero__glow-2,
.hero__glow-3 {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}

.hero__glow-1 {
  width: 700px; height: 500px;
  background: rgba(40,135,255,0.10);
  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;
}

.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: #ffffff;
}
.site-header__inner .site-header__cta {
    align-items: center;
    background: var(--color-blue);
    color: #ffffff;
    height: 40px;
    line-height: 38px;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-rainbow);
  flex-shrink: 0;
}

.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: #ffffff;
  max-width: 1150px;
}
.hero__heading span.span_normal {
    background: linear-gradient(120deg, #ffffff 0%, #fdd833 40%, #ffffff 75%, #a0caff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; background-size: 250% auto;
    animation: h1Sweep 5s linear infinite alternate;
}
.gradient-text {
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: h1Sweep 5s linear infinite alternate;
}
@keyframes h1Sweep {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}
    
.ai_video_heading {
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, #cd64ff 0%, #7636ff 100%);
  display: inline-flex;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 50px;
  margin-bottom: 20px;
}
.ma_video_wrapper {
    background-image: var(--grad-rainbow-tint);
    border: 1px solid #bebebe36;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 5px;
    margin: 0 auto;
    max-width: 1100px;
    border-radius: 15px;
    position: relative;
}
img.watch__now {
    position: absolute;
    top: 0;
    left: -90px;
    z-index: 1;
    bottom: 0;
    margin: auto;
    animation: geoWatchZigZag 3s ease-in-out infinite alternate;
}
@keyframes geoWatchZigZag {
  0% {
    transform: translate(0, 0);
  }
  16.65% {
    transform: translate(8px, 8px);
  }
  33.3% {
    transform: translate(-6px, -6px);
  }
  49.95% {
    transform: translate(4px, 4px);
  }
  66.6% {
    transform: translate(-2px, -2px);
  }
  83.25% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-15px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.ma-tutorial-video {
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 9;
  background: linear-gradient(
    89.09deg,
    rgba(40, 135, 255, 0.06) -4.43%,
    rgba(34, 207, 255, 0.06) 40.29%,
    rgba(255, 209, 6, 0.06) 62.12%,
    rgba(255, 106, 53, 0.06) 106.32%
  );
  border-radius: 10px;
}
.hero__sub {
  font-size: var(--text-lg);
  line-height: var(--lh-body);
  color: #ffffff;
  max-width: 1030px;
}
.video-container {
  position: relative;
}

.video-container iframe {
  border-radius: 10px;
}

.hero__sub strong {
  color: #FFC107;
  font-weight: var(--fw-semibold);
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.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: #ffffff;
  font-weight: var(--fw-medium);
}

.hero__trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Problem Grid ──────────────────────────────────────────── */
.problem-grid {
    display: flex;
    gap: 20px;
    max-width: 1050px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 640px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  
  /*.problem-card:last-child {*/
  /*  grid-column: 1 / -1;*/
  /*  max-width: calc(50% - 8px);*/
  /*  justify-self: center;*/
  /*}*/
}

.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;
    max-width: 330px;
    width: 100%;
}

.problem-card__icon {
    font-size: 28px;
    line-height: 1;
    max-width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 10px;
}

.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);
}

/* ── Feature Cards ─────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  isolation: isolate;
  padding-bottom: 4px;
}

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .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);
  }
}

.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: 12px;
  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.10);   color: #00a854; }
.feature-card__badge--orange { background: rgba(255,106,53,0.10); color: var(--color-orange); }
.feature-card__badge--red    { background: rgba(255,0,72,0.08);   color: var(--color-red); }
.feature-card__badge--purple { background: rgba(130,80,255,0.10); color: #7c3aed; }

.feature-card__emoji {
    font-size: 40px;
    height: 60px;
}
.feature-card__emoji img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  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);
}

.feature-card__value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.feature-card__value-label  { font-size: 12px; color: var(--color-text-muted); font-weight: var(--fw-medium); }
.feature-card__value-was    { font-size: 13px; color: var(--color-text-muted); text-decoration: line-through; }
.feature-card__value-now    { font-size: 13px; font-weight: var(--fw-bold); color: var(--color-blue); }

/* ── Checklist ─────────────────────────────────────────────── */
.geo_pricing_box {
    max-width: 800px;
    background: linear-gradient(180deg, #f8eefd 0%, #eef4fd 94.03%);
    border-radius: 20px;
    padding: 10px;
}
.geo_pricing_header {
    background-image: url(../images/pricing-header-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 35px 15px 25px 20px;
    box-shadow: 0px 26px 30px 0px #b5c8ee4d;
    position: relative;
    text-align: center;
}
.geo_most_popular .geo_pricing_header {
  background-image: url(../images/pricing-header-bg-pro.png);
  box-shadow: 0px 16px 15px 0px #0251d4;
  z-index: 1;
  position: relative;
}
.geo_most_popular .geo_pricing_header:after {
  position: absolute;
  content: "";
  max-width: 388px;
  height: 228px;
  width: 100%;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(360deg, #3581ff 0%, #116bff 100%);
  box-shadow: 0px 26px 30px 0px #0251d4;
  z-index: -1;
  margin: auto;
  border-radius: 20px;
  opacity: 0;
}
.geo_pricing_table_heading {
  min-height: 44px;
  padding: 5px 30px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 600;
  color: #09090b;
  background: linear-gradient(
    89.09deg,
    rgba(40, 135, 255, 0.06) -4.43%,
    rgba(34, 207, 255, 0.06) 40.29%,
    rgba(255, 209, 6, 0.06) 62.12%,
    rgba(255, 106, 53, 0.06) 106.32%
  );
  position: relative;
  font-family: "Google Sans", sans-serif;
}
.geo_pricing_table_heading::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  border: 1px solid transparent;
  background: linear-gradient(
      89.09deg,
      #2887ff -4.43%,
      #22cfff 40.29%,
      #ffd106 62.12%,
      #ff6a35 106.32%
    )
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.geo_most_popular .geo_pricing_table_heading {
  background: var(--white-color);
}
.geo_most_popular .geo_pricing_table_heading::before {
  display: none;
}
.geo_pricing_price {
  font-size: 60px;
  font-weight: 700;
  color: #116bff;
  gap: 15px;
  margin: 10px 0 0px 0;
}
.geo_pricing_price > span {
  font-size: 40px;
  color: rgb(9, 9, 11, 0.2);
  text-decoration: line-through;
}
.geo_pricing_header p {
  font-size: 20px;
  font-weight: 400;
  color: #09090b;
}
.geo_pricing_box ul {
  padding: 20px 10px 0 10px;
}
.geo_pricing_box ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    padding: 16px 20px;
    text-align: left;
}
.geo_pricing_box ul li span {
    font-weight: 700;
    font-size: 18px;
    color: #09090b;
}
.geo_pricing_box ul li:nth-child(odd) {
  background: #ffffff;
}
.geo_pricing_box ul li img {
  flex: none;
}
.geo_pricing_box ul li p {
  font-size: 18px;
  font-weight: 500;
  color: #09090b;
}
.geo_pricing_pymnt_btn {
    text-align: center;
    padding: 20px 0 15px;
    display: flex;
    justify-content: center;
}
.geo_price_popular_tag {
  min-height: 38px;
  background: #c3ff00;
  border-radius: 60px;
  padding: 5px 15px;
  gap: 8px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.geo_price_popular_tag > span {
  font-size: 12px;
  font-weight: 700;
  color: #222222;
  text-transform: uppercase;
}
.geo_most_popular .geo_pricing_price > span {
  color: rgb(255, 255, 255, 0.2);
}
.geo_most_popular .geo_pricing_price,
.geo_most_popular .geo_pricing_header p,
.geo_pricing_box.geo_most_popular ul li p {
  color: var(--white-color);
}
.geo_pricing_box.geo_most_popular ul li:nth-child(even) {
  background: #f5f5f51a;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 48px;
}

@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: 25px;
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
  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, 34px);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.25;
}

.cta-box__note {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ── 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;
}
section#guarantee {
    padding-bottom: 0;
}
.guarantee-box__badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5b731, #e09800);
  box-shadow: 0 8px 24px rgba(240,155,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.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;
}
.geo_guarntee_bulelts ul li {
  display: flex;
  justify-content: flex-start;
  align-items: self-start;
  gap: 12px;
}
.geo_guarntee_bulelts ul li:not(:last-child) {
  margin-bottom: 20px;
}
.geo_guarntee_bulelts ul li img {
  flex: none;
}
.geo_guarntee_bulelts ul li p {
  font-size: 18px;
  font-weight: 700;
  color: #09090b;
  text-align: left;
}
/* Guarantee section */
@media screen and (max-width: 1199px) {
    .video-container>div {
        width: 100% !important;
        padding: 0 400px;
    }
}

@media (max-width: 991px) {
    .video-container>div {
        padding: 0 300px;
    }
    .geo_guarntee_bulelts {
      flex-wrap: wrap;
    }
  .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 (max-width: 767px) { 
    .video-container>div { 
        padding: 0 210px;
    }
}

@media (max-width: 480px) {
    .video-container>div {
        padding: 0 130px;
    }
}

@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;
}

.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 {
  font-size: var(--text-sm);
  color: var(--color-orange);
  font-weight: var(--fw-semibold);
  will-change: transform, opacity;
}

/* ── 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;
}

.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);
  text-align: left;
}

/* ── Trust 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);
}

/* ── Site Footer ───────────────────────────────────────────── */
.site-footer {
  padding: 56px 60px 40px;
  text-align: center;
  background: #0e0a24;
  margin: 0 60px 44px;
  border-radius: 40px;
}
.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__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 {
    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; }

/* ══════════════════════════════════════════════════════════════
   BUNDLE-SPECIFIC COMPONENTS
   ══════════════════════════════════════════════════════════════ */

/* ── Bundle Overview Cards ─────────────────────────────────── */
.bundle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .bundle-grid { grid-template-columns: repeat(4, 1fr); }
}

.bundle-card {
  background: var(--color-surface);
  border: 1.5px solid rgba(40,135,255,0.12);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  will-change: transform, opacity;
  position: relative;
}

.bundle-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.bundle-card__emoji {
  font-size: 40px;
  line-height: 1;
}

.bundle-card__name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.3;
}

.bundle-card__desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.bundle-card__was {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.bundle-card__included {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: #00a854;
  background: rgba(0,200,83,0.08);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 40px;
  padding: 3px 12px;
}

/* ── Solution 2-col layout (product image + features) ──────── */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .solution-grid { grid-template-columns: 1fr 1fr; }
}

.solution-img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-lavender-bg);
  border: 1.5px solid rgba(40,135,255,0.12);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card-hover);
}

.solution-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.solution-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
}

.solution-img-placeholder span {
  font-size: 48px;
}

.solution-img-placeholder p {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.solution-feature__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: var(--grad-rainbow-tint);
  border: 1px solid rgba(40,135,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.solution-feature__content {}

.solution-feature__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: 4px;
}

.solution-feature__body {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ── Upgrade Section (per-product strips) ──────────────────── */
.upgrade-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.upgrade-header__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.upgrade-header__icon--indigo { background: linear-gradient(135deg, #6c5ce7, #a29bfe); box-shadow: 0 6px 20px rgba(108,92,231,0.3); }
.upgrade-header__icon--blue   { background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light)); box-shadow: 0 6px 20px rgba(40,135,255,0.3); }
.upgrade-header__icon--green  { background: linear-gradient(135deg, #00c853, #00e676); box-shadow: 0 6px 20px rgba(0,200,83,0.3); }
.upgrade-header__icon--orange { background: linear-gradient(135deg, #ff9800, #ff6a35); box-shadow: 0 6px 20px rgba(255,106,53,0.3); }

.upgrade-header__text {}

.upgrade-header__label {
    font-size: 32px;
    font-weight: var(--fw-extrabold);
    letter-spacing: 1.5px;
    text-transform: capitalize;
    color: var(--color-blue);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}
.upgrade-header__label span {
    display: flex;
    align-items: center;
    gap: 0;
    background-color: #ffffff;
    padding: 0 20px 0 0;
    border-radius: 50px;
    font-size: 30px;
    border: solid 1px;
    width: fit-content;
    margin: 0 auto 15px;
    height: 50px;
}
.upgrade-header__label span img {
    position: relative;
    left: -10px;
    max-width: 65px;
}

.upgrade-header__name {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product-body {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}

.upgrade-value-note {
    display: flex;
    width: fit-content;
    margin: 32px auto 0;
    align-items: center;
    gap: 8px;
    background: rgba(0,200,83,0.07);
    border: 1px solid rgba(0,200,83,0.2);
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: #00a854;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.upgrade-value-note span { font-weight: var(--fw-regular); color: var(--color-text-muted); }

/* ── Income Calculator (Agency section) ────────────────────── */
.income-calc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--color-lavender-bg);
  border: 1.5px solid rgba(40,135,255,0.15);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .income-calc { grid-template-columns: 1fr; }
  .income-calc__cell:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(40,135,255,0.12); }
}

.income-calc__cell {
  padding: 28px 24px;
  text-align: center;
}
.income-calc__cell img {
    max-width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 15px;
}
.income-calc__cell:not(:last-child) { border-right: 1px solid rgba(40,135,255,0.12); }

.income-calc__label {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.income-calc__value {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.income-calc__value--blue  { color: var(--color-blue); }
.income-calc__value--dark  { color: var(--color-text); }
.income-calc__value--green { color: var(--color-green); }

.income-calc__note {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── Value Stack Table ─────────────────────────────────────── */
.value-stack-wrap {
  max-width: 700px;
  margin: 0 auto 32px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1.5px solid rgba(40,135,255,0.15);
  box-shadow: var(--shadow-card);
}

.value-stack {
  width: 100%;
  border-collapse: collapse;
}

.value-stack th {
  background: var(--color-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.5px;
  padding: 14px 24px;
  text-align: left;
}

.value-stack th:last-child { text-align: right; }

.value-stack td {
  padding: 14px 24px;
  font-size: var(--text-sm);
  border-bottom: 1px solid rgba(40,135,255,0.08);
  background: var(--color-surface);
}

.value-stack td:first-child { color: var(--color-text); font-weight: var(--fw-medium); text-align: left; }
.value-stack td:last-child  { text-align: right; color: var(--color-text-muted); text-decoration: line-through; }

.value-stack__total td {
  background: var(--color-lavender-bg);
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 16px;
  color: var(--color-text);
  border-bottom: none;
  padding-block: 18px;
}

.value-stack__total td:last-child {
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.value-saving {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: var(--fw-extrabold);
  color: var(--color-green);
  text-align: center;
  margin-bottom: 8px;
}

.value-bundle-price {
  text-align: center;
  margin-bottom: 32px;
}

.value-bundle-price__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.value-bundle-price__amount {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  letter-spacing: -2px;
  line-height: 1;
}

.value-bundle-price__amount span {
  font-size: 0.5em;
  vertical-align: super;
  letter-spacing: 0;
}

.value-bundle-price__sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 6px;
}

span.geo_bonuses {
    background: var(--grad-rainbow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: var(--fw-bold);
}
.geo_howwork_section {
  padding: 40px 0 10px;
  position: relative;
  z-index: 1;
}

.geo_howwork_section .geo_main_heading h5 {
  color: #09090b;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}
.geo_howwork_section .geo_main_heading h5 span {
  color: #ff0048;
}
.geo_howwork_section .geo_main_heading p.darkpera {
  color: #09090b;
  margin-bottom: 42px;
}
.geo_problem_wrapper {
  background: linear-gradient(180deg, #fff0f0 0%, #ffdada 100%);
  border-radius: 20px;
  padding: 50px 30px;
  margin-bottom: 30px;
  min-height: 450px;
  transition: all 0.3s ease;
}
.geo_howwork_section .geo_problem_wrapper.flex {
    min-height: 209px;
    position: relative;
    border: 1px solid #EBDAEE;
    box-shadow: 0px 0px 30px 0px #6C45970F;
    background: #FFFFFF;
    text-align: left;
}
.geo_problem_wrapper.flex {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 30px;
  min-height: 225px;
}
.geo_problem_wrapper img {
  min-height: 130px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.geo_problem_wrapper:hover img {
animation:iconBounce .45s ease;}
@keyframes iconBounce{
  0%{transform:scale(1);}
  35%{transform:scale(1.1) rotate(-5deg);}
  65%{transform:scale(.94) rotate(3deg);}
  100%{transform:scale(1);}
}
.geo_problem_wrapper h5 {
    background-color: rgb(32 103 243 / 20%);
    width: fit-content;
    line-height: normal;
    border-radius: 50px;
    color: #2067f3;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 15px;
    font-family: "Google Sans", sans-serif;
}

.geo_problem_wrapper h4 {
  color: #09090b;
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 10px;
}
.geo_problem_wrapper p {
  font-size: 16px;
  font-weight: 400;
  color: #09090b;
}
.flexdevide {
  display: flex;
  gap: 30px;
}
.geo_problem_wrapper.flex h4 {
  margin: 20px 0 10px;
}
.geo_machines_heading .geo_main_heading h1 {
  font-size: 30px;
}
.geo_problem_wrapper {
    border: 1px solid #EBDAEE;
    box-shadow: 0px 0px 30px 0px #6C45970F;
    background: #FFFFFF;
    min-height: auto!important;
}
.geo_problem_wrapper:hover {
    transform: translateY(-5px) ;
    border-color: #f6c5ff;
    box-shadow: 0 18px 46px rgba(0,0,0,.09),0 4px 12px rgba(0,0,0,.04);
}

/* Generate Video css */

/* ── Proof Cards (dark section) ────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}

.proof-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  will-change: transform, opacity;
}

.proof-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-rainbow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
  margin: 0 auto 20px;
}

.proof-card__stars {
  font-size: 13px;
  color: var(--color-yellow);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.proof-card__quote {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}

.proof-card__meta {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
}

.proof-card__meta strong { color: rgba(255,255,255,0.65); }

/* ── 5-Step Process ────────────────────────────────────────── */
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 180px;
  position: relative;
  will-change: transform, opacity;
}

/* Connecting line between steps */
.step-connector {
  flex: 1;
  height: 2px;
  background: var(--color-blue);
  opacity: 0.3;
  margin-top: 44px; /* align with center of icon circle */
  min-width: 20px;
  max-width: 60px;
}

.step__circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--color-lavender-bg);
  border: 2px solid rgba(40,135,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.step__circle:hover {
  box-shadow: 0 8px 28px rgba(40,135,255,0.18);
  transform: translateY(-3px);
}

.step__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step__body {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .step { max-width: 280px; }
  .step-connector {
    width: 2px;
    height: 24px;
    min-width: unset;
    max-width: unset;
    margin-top: 0;
    margin-left: 44px; /* align with circle center */
    align-self: flex-start;
  }
}

/* ── Funnel image ──────────────────────────────────────────── */
/* ── Bundle Showcase Section ───────────────────────────────── */
.showcase-section {
  background: linear-gradient(160deg, #0d1117 0%, #0f1b2d 55%, #0d1117 100%);
  padding: clamp(56px, 7vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(40,135,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.showcase-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.18;
  text-align: center;
  will-change: transform, opacity;
}

.showcase-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 600px;
}
section#bundle-showcase .container {
    max-width: 1300px;
}
.bundle-showcase-img {
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
  will-change: transform, opacity;
}

.bundle-showcase-glow {
  position: absolute;
  inset: 15% 8%;
  background: radial-gradient(ellipse, rgba(40,135,255,0.4) 0%, rgba(108,92,231,0.25) 45%, transparent 75%);
  filter: blur(72px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.bundle-showcase-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 32px 72px rgba(40,135,255,0.28)) drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}

.funnel-img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 40px;
  box-shadow: var(--shadow-card-hover);
}

.funnel-img-wrap img {
  width: 100%;
  height: auto;
}

/* ── Responsive — Mobile ───────────────────────────────────── */
@media (max-width: 640px) {
  .hero__badge { font-size: 12px; padding: 6px 14px; white-space: normal; text-align: center; }
  .hero__ctas  { flex-direction: column; width: 100%; }
  .hero__ctas .btn-primary, .hero__ctas .btn-outline { width: 100%; justify-content: center; }
  .section-badge { white-space: normal; text-align: center; line-height: 1.4; }
  .hero__trust { flex-direction: column; gap: 8px; align-items: flex-start; padding-inline: 8px; }
  .bundle-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 24px; gap: 14px; }
  .solution-grid { gap: 32px; }
  .cta-box { padding: 32px 20px; }
  .cta-box__heading { font-size: clamp(18px, 5vw, 26px); }
  .cta-box .btn-primary { width: 100%; }
  .btn-primary { max-width: 100%; height: auto; min-height: 60px; padding: 10px 14px; flex-wrap: nowrap; justify-content: center; gap: 10px; }
  .btn-primary__label { font-size: 14px; padding-right: 0; white-space: nowrap; }
  .btn-primary__price { height: 38px; font-size: 15px; padding: 0 14px; flex-shrink: 0; }
  .value-stack th, .value-stack td { padding: 12px 14px; font-size: 13px; }
  .value-stack th:last-child { white-space: nowrap; }
  .guarantee-box { padding: 32px 20px; }
  .countdown__digit { min-width: 56px; height: 56px; font-size: 28px; }
  .countdown__sep   { font-size: 28px; line-height: 56px; padding-bottom: 20px; }
  .faq-item__toggle { padding: 16px 18px; }
  .site-footer { padding: 40px 16px 32px; margin: 0 12px 24px; border-radius: 24px; }
  .upgrade-header { flex-direction: column; }
  
  .site-header__inner {
    gap: 10px;
    height: auto;
    padding: 10px 15px;
    flex-direction: column;
}
.site-header__tag {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1px 5px;
}
.upgrade-header__label span {
    font-size: 20px;
}
img.watch__now {
    left: -30px;
    max-width: 40px;
}
.hero__value-anchor {
    padding: 0px 10px !important;
}
.hero__trust-item {
    align-items: flex-start;
    text-align: left;
    line-height: normal;
}
.geo_guarntee_box {
    padding: 130px 15px 30px 15px;
}
.geo_guarntee_bulelts {
    padding: 20px 15px;
}
.geo_pricing_box ul li img {
    display: none;
}
.site-footer__card {
    padding: 30px 15px 30px;
}
}

@media (max-width: 768px) {
  .site-footer { padding: 40px 20px 32px; margin: 0 16px 28px; border-radius: 28px; }
  .site-header__inner {
    padding: 15px;
}
.geo_howwork_section .geo_problem_wrapper.flex {
    text-align: center;
}
.geo_problem_wrapper.flex {
    flex-direction: column;
    padding: 30px 15px;
}
.geo_problem_wrapper h5 {
    margin: auto;
}
}
