/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --bg-main: #F6F6F6;
  --bg-secondary: #F6F6F6;
  --bg-hero: #F6F6F6;
  --color-primary: #111111;
  --color-accent: #B6FF2B;
  --color-muted: #6B6B6B;
  --color-divider: #EAEAEA;
  --color-border: #CCCCCC;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.10);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-main);
  color: var(--color-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}



/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  /* Reduced from 100vh */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-hero);
  overflow: hidden;
  padding: 60px 24px;
  /* Reduced from 80px */
}

/* subtle radial haze */
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(182, 255, 43, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Floating icons ── */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.fi {
  position: absolute;
  will-change: transform;
  /* no background/shadow here — fi-inner handles visuals */
}

.fi-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.fi img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.08));
}

/* Positions — mirroring the reference image */
.fi-1 {
  width: 90px;
  height: 90px;
  top: 22%;
  left: 5%;
}

.fi-2 {
  width: 90px;
  height: 90px;
  top: 18%;
  right: 5%;
}

.fi-3 {
  width: 82px;
  height: 82px;
  bottom: 22%;
  left: 6%;
}

.fi-4 {
  width: 82px;
  height: 82px;
  bottom: 20%;
  right: 5%;
}

.fi-5 {
  width: 70px;
  height: 70px;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
}

/* CSS bob animations applied to .fi-inner */
.bob-a {
  animation: bobA 5s ease-in-out infinite;
}

.bob-b {
  animation: bobB 6s ease-in-out infinite;
}

.bob-c {
  animation: bobC 7s ease-in-out infinite;
}

@keyframes bobA {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-12px) rotate(2deg);
  }

  66% {
    transform: translateY(6px) rotate(-1deg);
  }
}

@keyframes bobB {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  40% {
    transform: translateY(14px) rotate(-3deg);
  }

  70% {
    transform: translateY(-8px) rotate(1.5deg);
  }
}

@keyframes bobC {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

/* ── Hero content ── */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 950px;
  /* Increased to allow the longer title to spread out */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mid-folder-img {
  width: 225px;
  /* Reduced by 50% */
  height: auto;
  margin-bottom: 24px;
  border-radius: 12px;
  animation: fadeDown 0.8s ease both;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E8F2FF;
  border: 1px solid #B0D5FF;
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 8px;
  font-size: 13px;
  font-weight: 500;
  color: #0070F3;
  margin-bottom: 28px;
  animation: fadeDown 0.7s ease both;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #E8F2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  background-color: #ccc;
}

.avatar.av1 {
  background-image: url('https://i.pravatar.cc/50?u=1');
}

.avatar.av2 {
  background-image: url('https://i.pravatar.cc/50?u=2');
}

.avatar.av3 {
  background-image: url('https://i.pravatar.cc/50?u=3');
}

.avatar:first-child {
  margin-left: 0;
}

.hero-title {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  /* Reduced by ~30% for a cleaner look */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--color-primary);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-muted);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s ease 0.28s both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.8s ease 0.42s both;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #B6FF2B;
  color: #111111;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #a3e626;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(182, 255, 43, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.btn-large {
  font-size: 17px;
  padding: 18px 40px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-primary);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--bg-main);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.no-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 500;
}

/* ─────────────────────────────────────────
   LOGOS STRIP
───────────────────────────────────────── */
.logos-strip {
  padding: 40px 28px;
  background: var(--bg-main);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  text-align: center;
}

.logos-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.logos-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.logos-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
  will-change: transform;
}

.logo-chip {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

/* ─────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-primary);
  margin-bottom: 36px;
}

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
.features-section {
  padding: 50px 24px;
  background: var(--bg-main);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: #E8F2FF;
  color: #0070F3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0, 112, 243, 0.1);
}

.feat-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5px;
}

.feat-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111111;
  letter-spacing: -0.01em;
}

.feat-card p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}


/* ─────────────────────────────────────────
   INTEGRATIONS SECTION
───────────────────────────────────────── */
.integrations-section {
  padding: 50px 24px;
  background: var(--bg-main);
  overflow: hidden;
}

@media (max-width: 640px) {
  .integrations-section {
    padding: 20px 0;
  }
}

.integrations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  background: #FFFFFF;
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.integrations-text {
  max-width: 480px;
}

.integrations-visual {
  height: 400px;
  background: #F7F9FB;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.scroll-track-vertical {
  width: 100%;
  height: 100%;
}

.scroll-list-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: verticalScroll 20s linear infinite;
}

@keyframes verticalScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }

  /* Half of the list (duplicated) */
}

/* Pause on hover for accessibility/UX */
.scroll-list-inner:hover {
  animation-play-state: paused;
}

.int-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #F0F0F0;
}

.int-img {
  width: 40px;
  height: 40px;
  background: #EEEEEE;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #555555;
  flex-shrink: 0;
}

.int-img.blue {
  background: #E8F2FF;
  color: #0070F3;
}

.int-img.dark {
  background: #111111;
  color: #FFFFFF;
}

.int-img.orange {
  background: #FFF4E8;
  color: #FF8F00;
}

.int-img.purple {
  background: #F3E8FF;
  color: #8B5CF6;
}

.int-img.green {
  background: #E8FFF2;
  color: #10B981;
}

.int-img.gray {
  background: #F5F5F5;
  color: #666666;
}

.int-img.teal {
  background: #E8FFFB;
  color: #14B8A6;
}

.int-img.pink {
  background: #FFE8F2;
  color: #EC4899;
}

.int-img.red {
  background: #FFE8E8;
  color: #EF4444;
}

.int-info {
  flex: 1;
  font-size: 14px;
  color: #111111;
  font-weight: 700;
}

.int-info .chk {
  color: #0070F3;
  margin-left: 4px;
}

.int-info .bar {
  height: 4px;
  background: #F0F0F0;
  width: 80%;
  margin-top: 8px;
  border-radius: 2px;
}

.int-info .bar.short {
  width: 50%;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .integrations-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 12px;
    border-radius: 24px;
  }

  .integrations-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .integrations-text .how-title,
  .integrations-text .how-subtitle {
    text-align: center !important;
  }
}

/* ─────────────────────────────────────────
   COMPARISON SECTION
───────────────────────────────────────── */
.comparison-section {
  padding: 50px 24px;
  background: var(--bg-main);
  text-align: center;
}

.comparison-card {
  display: flex;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: var(--radius-lg);
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.comp-side {
  flex: 1;
  padding: 56px 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.comp-side.other {
  background: #FAFAFA;
}

.comp-side.active {
  background: #FFFFFF;
  border: 4px solid #0070F3;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  margin: -1px;
  /* Overlap border suttle */
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.logo-mark.small {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 14px;
}

.comp-side h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 32px;
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.comp-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #555555;
  font-weight: 500;
}

.comp-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.x-mark {
  background: #EEEEEE;
  color: #999999;
}

.check-mark {
  background: #b6ff2b;
  color: #000000;
}

@media (max-width: 820px) {
  .comparison-card {
    flex-direction: column;
  }

  .comp-side.active {
    margin: 12px 0 0 0;
  }

  .comp-side {
    padding: 40px 24px;
  }
}

/* ─────────────────────────────────────────
   HOW IT WORKS (Sticky Scroll Animation)
───────────────────────────────────────── */
.how-scroll-outer {
  position: relative;
  /* 220vh: Super snappy. Releases the scroll almost immediately after Step 3 activates. */
  height: 220vh;
  background: var(--bg-main);
}

.how-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.how-scroll-outer .section-container {
  width: 100%;
  text-align: center;
}

.how-chip {
  display: inline-block;
  background: #E8F2FF;
  color: #0070F3;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #B0D5FF;
  margin-bottom: 24px;
}

.how-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  /* Reduced from 3.8rem */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.how-subtitle {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-step-card {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  opacity: 0.15;
  /* Very dimmed when inactive */
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
}

.how-step-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: #0070F3;
  box-shadow: 0 20px 60px rgba(0, 112, 243, 0.12);
  pointer-events: auto;
}

.step-tag {
  font-size: 13px;
  font-weight: 700;
  color: #0070F3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: inline-block;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.how-step-card.active .step-tag {
  opacity: 1;
}

.how-step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.25;
}

.how-step-card p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.how-step-video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: auto;
  background: #F8FAFF;
  border: 1px solid #E0E0E0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 980px) {

  /* On mobile, we might want to disable the 100vh lock or keep it if UX is good */
  .how-scroll-outer {
    height: auto;
  }

  .how-sticky-wrapper {
    position: relative;
    height: auto;
    padding: 60px 0;
  }

  .how-steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how-step-card {
    opacity: 1;
    transform: none;
  }
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-section {
  padding: 50px 24px;
  background: var(--bg-secondary);
  text-align: center;
}

.pricing-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  /* Ensures different heights are centered */
  margin-top: 48px;
}

.price-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  flex: 1;
  max-width: 350px;
  /* Reduced overall size */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #F0F0F0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: left;
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #E0E0E0;
}

/* Make non-featured cards look smaller */
.price-card:not(.featured) {
  transform: scale(0.92);
  opacity: 0.9;
}

.price-card:not(.featured):hover {
  transform: translateY(-12px) scale(0.95);
  opacity: 1;
}

.price-card.featured:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 112, 243, 0.22);
}

/* Featured (Growth) Card Specifics */
.price-card.featured {
  border: 4px solid #0070F3;
  padding: 0;
  box-shadow: 0 12px 48px rgba(0, 112, 243, 0.15);
  overflow: hidden;
  /* Ensures the popular-tag follows the radius */
}

.popular-tag {
  background: #0070F3;
  color: #FFFFFF;
  text-align: center;
  padding: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}

.price-card.featured .card-inner {
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.price-display .currency {
  font-size: 42px;
  font-weight: 700;
  color: #111111;
}

.price-display .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 84px;
  font-weight: 800;
  color: #111111;
  line-height: 1;
}

.price-display .period {
  font-size: 16px;
  color: #888888;
  margin-left: 4px;
}

.plan-description {
  font-size: 18px;
  color: #666666;
  margin-bottom: 24px;
}

.included-title {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
  text-transform: none;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #555555;
  font-weight: 500;
}

.check-icon {
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  border: 1.5px solid #E0E0E0;
  color: #BBBBBB;
  flex-shrink: 0;
}

.price-card.featured .check-icon {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
}

.plan-btn {
  display: block;
  text-align: center;
  background: #B6FF2B;
  color: #111111;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s;
  margin-top: auto;
  border: none;
  cursor: pointer;
}

.plan-btn:hover {
  background: #a3e626;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(182, 255, 43, 0.2);
}


/* ─────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────── */
.faq-section {
  padding: 50px 24px;
  background: var(--bg-main);
  text-align: center;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #F0F0F0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  color: #111111;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #F9FBFF;
}

.faq-icon {
  font-size: 24px;
  font-weight: 500;
  color: #111111;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FFFFFF;
  text-align: left;
}

.faq-answer p {
  padding: 0 32px 32px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active {
  border-color: #0070F3;
  box-shadow: 0 12px 30px rgba(0, 112, 243, 0.08);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Adjust as needed */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 640px) {
  .faq-accordion {
    gap: 12px;
  }

  .faq-question {
    padding: 20px 24px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 24px 24px;
    font-size: 14.5px;
  }
}

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.cta-section {
  padding: 40px 24px;
  background: var(--bg-secondary);
}

.cta-card {
  background: var(--color-primary);
  color: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(182, 255, 43, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.cta-card .btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.cta-card .btn-primary:hover {
  background: #ceff55;
  box-shadow: 0 12px 40px rgba(182, 255, 43, 0.35);
}

.cta-card .no-card {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.45);
}

/* ─────────────────────────────────────────
   WHATSAPP SECTION
1342: ───────────────────────────────────────── */
.whatsapp-section {
  padding: 40px 24px;
  background: var(--bg-main);
  border-top: 1px solid var(--color-divider);
}

.whatsapp-card {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-sm);
  gap: 20px;
  transition: transform var(--transition);
}

.whatsapp-card:hover {
  transform: translateY(-2px);
}

.whatsapp-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.whatsapp-text p {
  font-size: 14px;
  color: var(--color-muted);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-whatsapp:hover {
  background: #20BD5C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 640px) {
  .whatsapp-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 16px;
  }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--color-primary);
  padding: 36px 28px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--bg-main);
}

.footer-logo .logo-mark {
  background: var(--color-accent);
  color: var(--color-primary);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--bg-main);
}

/* ─────────────────────────────────────────
   TESTIMONIALS SECTION
───────────────────────────────────────── */
.testimonials-section {
  padding: 40px 0 80px;
  background: var(--bg-main);
  overflow: hidden;
  text-align: center;
  margin-bottom: 5px;
}

.testimonials-track {
  margin-top: 0px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.testimonials-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: testimonialScroll 60s linear infinite;
  padding: 20px 0;
}

.testimonials-inner:hover {
  animation-play-state: paused;
}

.testi-card {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 32px;
  width: 380px;
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
}

.testi-quote {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 20px;
  color: #111111;
}

.testi-text {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 32px;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #F0F0F0;
  padding-top: 24px;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}

.author-profession {
  font-size: 13px;
  color: #888888;
  margin-bottom: 6px;
}

.stars {
  display: flex;
  gap: 2px;
  color: #FFB800;
  font-size: 12px;
}

@keyframes testimonialScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .testi-card {
    width: 320px;
    padding: 30px;
  }
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle hover for comparison card */
.comparison-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.comparison-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}


/* ─────────────────────────────────────────
   EXIT POPUP
───────────────────────────────────────── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.exit-popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.exit-popup-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 480px;
  border-radius: 32px;
  padding: 48px 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exit-popup-overlay.show .exit-popup-card {
  transform: translateY(0) scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #CCCCCC;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.exit-popup-close:hover {
  color: #111111;
}

.exit-popup-top {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.exit-top-img {
  width: 120px;
  /* Increased size for the mockup */
  height: auto;
  border-radius: 12px;
}

.exit-badge {
  display: inline-block;
  background: #E8F2FF;
  color: #0070F3;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.exit-title {
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.exit-subtitle {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 32px;
}

.exit-visual {
  margin-bottom: 32px;
  background: #F8F9FB;
  padding: 24px;
  border-radius: 20px;
}

.exit-main-img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exit-popup-card .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  padding: 20px;
  margin-bottom: 16px;
}

.exit-note {
  font-size: 13px;
  color: #999999;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-scroll-outer {
    height: auto;
  }

  .how-sticky-wrapper {
    position: relative;
    height: auto;
    padding: 40px 0;
  }

  .how-steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }

  .how-step-card {
    opacity: 1;
    transform: none;
    padding: 32px 24px;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .price-card {
    max-width: 100%;
    width: 100%;
    padding: 32px 24px;
  }

  .price-card.featured {
    order: -1;
  }

  /* Most popular first */
}

@media (max-width: 640px) {
  .section-container {
    padding: 0 15px;
  }

  /* Hero Adjustments */
  .hero {
    padding: 40px 0 60px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
    padding: 0 10px;
  }

  /* Floating Icons on Mobile (Tucked more) */
  .fi-inner {
    padding: 0;
  }

  .fi-1 {
    width: 44px;
    height: 44px;
    top: 10%;
    left: 1%;
  }

  .fi-2 {
    width: 44px;
    height: 44px;
    top: 8%;
    right: 1%;
  }

  .fi-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 1%;
  }

  .fi-4 {
    width: 40px;
    height: 40px;
    bottom: 18%;
    right: 1%;
  }

  .fi-5 {
    display: none;
  }

  /* Cards & Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feat-card {
    padding: 24px;
    border-radius: 20px;
  }

  .comparison-card {
    border-radius: 20px;
  }

  .comp-side {
    padding: 32px 20px;
  }

  .comp-side h3 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .comp-list li {
    font-size: 15px;
    gap: 10px;
  }

  .price-card {
    border-radius: 20px;
  }

  .price-card.featured .card-inner {
    padding: 32px 8px 40px;
  }

  .price-display .amount {
    font-size: 56px;
  }

  .cta-card {
    padding: 40px 8px;
    border-radius: 24px;
  }

  .cta-card h2 {
    font-size: 1.8rem;
  }

  .scroll-track-vertical {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
  }

  .integrations-grid {
    padding: 40px 15px;
    border-radius: 16px;
    width: 100%;
    margin: 0;
  }

  .footer-container {
    padding: 0 10px;
    gap: 24px;
  }
}