@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --primary: hsl(142.1 70.6% 45.3%);
  --primary2: hsl(142.1 70.6% 38%);
  --primary3: hsl(142.1 70.6% 30%);
  --plight: hsl(142.1 70.6% 98%);
  --pmid: hsl(142.1 70.6% 92%);
  --psoft: hsl(142.1 70.6% 75%);
  --txt: #0F172A;
  --txt2: #475569;
  --txt3: #94A3B8;
  --white: #fff;
  --border: hsl(142.1 70.6% 94%);
  --r: 16px;
  --shadow: 0 8px 32px hsla(142.1, 70.6%, 45.3%, 0.15);
  --glass: rgba(255, 255, 255, .7);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--txt);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s .1s cubic-bezier(.22, 1, .36, 1), transform .7s .1s cubic-bezier(.22, 1, .36, 1)
}

.reveal-left.visible {
  opacity: 1;
  transform: none
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s .1s cubic-bezier(.22, 1, .36, 1), transform .7s .1s cubic-bezier(.22, 1, .36, 1)
}

.reveal-right.visible {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .1s
}

.delay-2 {
  transition-delay: .2s
}

.delay-3 {
  transition-delay: .3s
}

.delay-4 {
  transition-delay: .4s
}

/* ── KEYFRAMES ── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

@keyframes blob {

  0%,
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
  }

  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 hsla(142.1, 70.6%, 45.3%, .4)
  }

  70% {
    box-shadow: 0 0 0 14px hsla(142.1, 70.6%, 45.3%, 0)
  }

  100% {
    box-shadow: 0 0 0 0 hsla(142.1, 70.6%, 45.3%, 0)
  }
}

@keyframes shimmer {
  0% {
    background-position: -400px 0
  }

  100% {
    background-position: 400px 0
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(142.1, 70.6%, 45.3%, .1);
  transition: box-shadow .3s
}

header.scrolled {
  box-shadow: 0 4px 24px hsla(142.1, 70.6%, 45.3%, .1)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo:hover .logo-icon {
  transform: scale(1.08) rotate(-4deg)
}

.logo-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none
}

.nav-links a {
  text-decoration: none;
  color: var(--txt2);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding-bottom: 3px;
  transition: color .2s
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width .3s
}

.nav-links a:hover {
  color: var(--primary)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  padding: .55rem 1.4rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px hsla(142.1, 70.6%, 45.3%, .3)
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px hsla(142.1, 70.6%, 45.3%, .4)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: .3s
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 1rem 5% 1.5rem;
  border-top: 1px solid var(--border);
  gap: .2rem
}

.mobile-menu a {
  padding: .75rem 0;
  color: var(--txt2);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
  transition: color .2s, padding-left .2s
}

.mobile-menu a:hover {
  color: var(--primary);
  padding-left: 6px
}

.mobile-menu.open {
  display: flex
}

/* ── TICKER ── */
.ticker {
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  padding: .55rem 0;
  overflow: hidden;
  white-space: nowrap
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite
}

.ticker-inner span {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 0 2.5rem;
  opacity: .9;
  letter-spacing: .3px
}

.ticker-inner .dot {
  color: rgba(255, 255, 255, .5)
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  background: linear-gradient(140deg, #f9fffb 0%, #f5fff8 40%, #e8fdf0 80%, #d5fbe5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  position: relative;
  overflow: hidden
}

.blob {
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, hsla(142.1, 70.6%, 45.3%, .07), hsla(142.1, 70.6%, 45.3%, .02));
  animation: blob 10s ease-in-out infinite;
  z-index: 0
}

.blob-1 {
  top: -120px;
  right: -100px
}

.blob-2 {
  bottom: -150px;
  left: -120px;
  animation-delay: -5s;
  opacity: .6
}

.hero-ring {
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid hsla(142.1, 70.6%, 45.3%, .08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 40s linear infinite
}

.hero-ring-2 {
  width: 500px;
  height: 500px;
  animation-duration: 28s;
  animation-direction: reverse;
  border-color: hsla(142.1, 70.6%, 45.3%, .06)
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .9);
  border: 1.5px solid var(--pmid);
  color: var(--primary2);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px hsla(142.1, 70.6%, 45.3%, .1);
  animation: fadeUp .6s ease both
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--txt);
  margin-bottom: 1.2rem;
  letter-spacing: -1.5px;
  animation: fadeUp .7s .1s ease both
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary), #ff8a80, var(--primary2));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite
}

.hero p {
  font-size: 1.15rem;
  color: var(--txt2);
  max-width: 560px;
  margin: 0 auto 2.4rem;
  line-height: 1.7;
  animation: fadeUp .7s .2s ease both
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  padding: .8rem 2.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px hsla(142.1, 70.6%, 45.3%, .35);
  position: relative;
  overflow: hidden
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, .15), transparent);
  opacity: 0;
  transition: .25s
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px hsla(142.1, 70.6%, 45.3%, .45)
}

.btn-primary:hover::after {
  opacity: 1
}

.btn-outline {
  background: rgba(255, 255, 255, .8);
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: .78rem 2.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: .25s;
  backdrop-filter: blur(8px)
}

.btn-outline:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px hsla(142.1, 70.6%, 45.3%, .15)
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  animation: fadeUp .7s .4s ease both
}

.stat {
  text-align: center
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1
}

.stat-label {
  font-size: .8rem;
  color: var(--txt3);
  font-weight: 500;
  margin-top: .25rem
}

/* ── STEPS ── */
.steps {
  padding: 90px 5%;
  background: #fff;
  overflow: hidden
}

.section-eyebrow {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  margin-bottom: .8rem
}

.eyebrow-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary))
}

.eyebrow-line.r {
  background: linear-gradient(90deg, var(--primary), transparent)
}

.eyebrow-text {
  color: var(--primary);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--txt);
  margin-bottom: .8rem;
  letter-spacing: -1px
}

.section-sub {
  text-align: center;
  color: var(--txt2);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  font-size: .97rem
}

.steps-wrapper {
  max-width: 1100px;
  margin: 0 auto
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative
}

.connector {
  position: absolute;
  top: 52px;
  left: calc(33.3% - 10px);
  right: calc(33.3% - 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--pmid), var(--primary), var(--pmid));
  z-index: 0
}

.connector::before,
.connector::after {
  content: '▶';
  position: absolute;
  top: -9px;
  color: var(--primary);
  font-size: .7rem
}

.connector::before {
  left: 48%
}

.connector::after {
  right: -4px
}

.step-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem 1.8rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  cursor: default
}

.step-card:hover {
  box-shadow: 0 20px 48px hsla(142.1, 70.6%, 45.3%, .12);
  transform: translateY(-6px);
  border-color: var(--psoft)
}

.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 1.3rem;
  box-shadow: 0 6px 18px hsla(142.1, 70.6%, 45.3%, .3);
  border: 4px solid #fff;
  position: relative
}

.step-card:hover .step-num {
  animation: pulse-ring 1.2s ease-out
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: .6rem;
  color: var(--txt)
}

.step-card p {
  color: var(--txt2);
  font-size: .9rem;
  line-height: 1.7
}

.step-icon {
  font-size: 2rem;
  margin-bottom: .8rem;
  display: block
}

/* ── FEATURES ── */
.features {
  padding: 90px 5%;
  background: linear-gradient(180deg, #fff9f9 0%, var(--plight) 100%)
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto
}

.m-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem
}

.m-card {
  background: var(--glass);
  border: 1.5px solid hsla(142.1, 70.6%, 45.3%, .12);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  transition: .3s;
  cursor: default;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden
}

.m-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(142.1, 70.6%, 45.3%, .04), transparent);
  opacity: 0;
  transition: .3s;
  border-radius: 20px
}

.m-card:hover {
  box-shadow: 0 20px 50px hsla(142.1, 70.6%, 45.3%, .12);
  transform: translateY(-6px);
  border-color: hsla(142.1, 70.6%, 45.3%, .25)
}

.m-card:hover::before {
  opacity: 1
}

.m-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--pmid), var(--plight));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: .3s;
  box-shadow: 0 4px 12px hsla(142.1, 70.6%, 45.3%, .1)
}

.m-card:hover .m-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 8px 20px hsla(142.1, 70.6%, 45.3%, .3);
  transform: scale(1.1) rotate(-4deg)
}

.m-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
  transition: .3s
}

.m-card:hover .m-icon svg {
  fill: #fff
}

.m-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: var(--txt)
}

.m-card p {
  color: var(--txt2);
  font-size: .89rem;
  line-height: 1.7
}

/* ── INTEGRATIONS DASHBOARD SECTION ── */
.dash-section {
  padding: 90px 5%;
  background: #fff;
  overflow: hidden
}

.dash-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: center
}

.dash-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--txt);
  line-height: 1.2;
  letter-spacing: -1px;
  margin: .8rem 0 1.1rem
}

.dash-desc {
  color: var(--txt2);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 1.5rem
}

.dash-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.dash-bullets li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .93rem;
  color: var(--txt2);
  font-weight: 500
}

.db-icon {
  width: 30px;
  height: 30px;
  background: var(--plight);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0
}

/* Mock Dashboard Panel */
.dash-right {
  position: relative
}

.mock-dashboard {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .1), 0 6px 20px hsla(142.1, 70.6%, 45.3%, .08);
  overflow: hidden;
  font-family: 'Inter', sans-serif
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem .8rem;
  border-bottom: 1px solid #f2f2f2
}

.mock-title {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 1rem;
  font-weight: 800;
  color: #111
}

.mock-bolt {
  font-size: .9rem
}

.mock-search {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #f7f7f7;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: .4rem .8rem;
  font-size: .78rem;
  color: #aaa;
  flex: 1;
  max-width: 220px;
  margin-left: 1rem
}

.mock-tabs {
  display: flex;
  gap: .3rem;
  padding: .7rem 1.2rem .5rem;
  border-bottom: 1px solid #f2f2f2
}

.mock-tab {
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 6px;
  cursor: default;
  color: #888;
  transition: .2s
}

.mock-tab.active {
  background: #111;
  color: #fff
}

.mock-section-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 1.2rem .4rem;
}

.mock-label {
  font-size: .82rem;
  font-weight: 800;
  color: #111
}

.mock-count {
  font-size: .75rem;
  background: #f2f2f2;
  color: #666;
  border-radius: 20px;
  padding: .2rem .65rem;
  font-weight: 600
}

.mock-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .75rem;
  padding: .5rem 1rem 1rem
}

.mock-card {
  background: #fff;
  border: 1.2px solid #efefef;
  border-radius: 12px;
  padding: .85rem;
  transition: box-shadow .2s, border-color .2s
}

.mock-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  border-color: #ddd
}

.mock-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .6rem
}

.mock-app-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .06);
  flex-shrink: 0
}

.mock-status {
  font-size: .62rem;
  font-weight: 700;
  border-radius: 20px;
  padding: .22rem .55rem
}

.mock-status.connected {
  background: #e8f5e9;
  color: #2e7d32
}

.mock-status.disconnected {
  background: #fff3e0;
  color: #e65100
}

.mock-card-name {
  font-size: .8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: .3rem;
  line-height: 1.3
}

.mock-card-desc {
  font-size: .7rem;
  color: #888;
  line-height: 1.55;
  margin-bottom: .65rem
}

.mock-card-btns {
  display: flex;
  gap: .4rem
}

.mock-btn-sec {
  flex: 1;
  background: #fff;
  border: 1.2px solid #ddd;
  border-radius: 7px;
  font-size: .68rem;
  font-weight: 700;
  color: #444;
  padding: .3rem .2rem;
  cursor: default;
  font-family: inherit
}

.mock-btn-pri {
  flex: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border: none;
  border-radius: 7px;
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  padding: .3rem .2rem;
  cursor: default;
  font-family: inherit
}

/* Floating pills */
.dash-float {
  position: absolute;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: .5rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--txt);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  white-space: nowrap;
  animation: float 3.5s ease-in-out infinite
}

.dash-float-1 {
  top: -18px;
  left: -24px;
  animation-delay: 0s
}

.dash-float-2 {
  bottom: -16px;
  right: -20px;
  animation-delay: -1.8s
}

@media(max-width:900px) {
  .dash-inner {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .dash-float-1 {
    top: -14px;
    left: 0
  }

  .dash-float-2 {
    bottom: -14px;
    right: 0
  }
}

@media(max-width:520px) {
  .mock-cards {
    grid-template-columns: 1fr 1fr
  }

  .dash-float {
    display: none
  }
}

/* ── INTEGRATIONS SLIDER ── */
@keyframes slide-left {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes slide-right {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

.integrations {
  margin-top: 3.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.int-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--txt3);
  margin-bottom: .4rem;
  letter-spacing: 1px;
  text-transform: uppercase
}

.int-sub {
  font-size: .95rem;
  color: var(--txt2);
  margin-bottom: 1.8rem
}

.int-slider-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
  mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent)
}

.int-slider {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: slide-left 30s linear infinite
}

.int-slider-rev {
  animation: slide-right 34s linear infinite
}

.int-slider-wrap:hover .int-slider,
.int-slider-wrap:hover .int-slider-rev {
  animation-play-state: paused
}

.int-badge {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .58rem 1.2rem;
  font-weight: 700;
  font-size: .86rem;
  color: var(--txt);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  cursor: default;
  flex-shrink: 0
}

.int-badge:hover {
  border-color: var(--psoft);
  box-shadow: 0 6px 18px hsla(142.1, 70.6%, 45.3%, .12);
  transform: translateY(-3px) scale(1.04)
}

.int-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0
}

/* ── COUNTER SECTION ── */
.counters {
  background: linear-gradient(135deg, var(--primary), var(--primary2), var(--primary3));
  padding: 60px 5%;
  color: #fff
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.counter-item .num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  display: block
}

.counter-item .lbl {
  font-size: .85rem;
  opacity: .8;
  margin-top: .4rem;
  font-weight: 500
}

/* ── PRICING ── */
.pricing {
  padding: 90px 5%;
  background: #fff
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto
}

.toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem
}

.toggle-wrap span {
  font-weight: 600;
  font-size: .95rem;
  color: var(--txt3);
  transition: color .3s
}

.toggle-wrap span.active {
  color: var(--primary)
}

.toggle {
  position: relative;
  width: 56px;
  height: 30px;
  cursor: pointer
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute
}

.slider {
  position: absolute;
  inset: 0;
  background: #E2E8F0;
  border-radius: 30px;
  transition: .35s
}

.slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 4px;
  top: 4px;
  background: #fff;
  border-radius: 50%;
  transition: .35s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12)
}

.toggle input:checked+.slider {
  background: var(--primary)
}

.toggle input:checked+.slider::before {
  transform: translateX(26px)
}

.save-badge {
  background: linear-gradient(135deg, var(--pmid), #fecaca);
  color: var(--primary2);
  font-size: .74rem;
  font-weight: 800;
  padding: .22rem .65rem;
  border-radius: 20px;
  letter-spacing: .3px
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem
}

.plan {
  border: 2px solid var(--border);
  border-radius: 22px;
  padding: 2.4rem 2rem;
  position: relative;
  transition: .35s;
  background: #fff
}

.plan:hover {
  box-shadow: 0 24px 56px hsla(142.1, 70.6%, 45.3%, .13);
  transform: translateY(-6px)
}

.plan.popular {
  border-color: var(--primary);
  background: linear-gradient(160deg, #fff9f9 0%, #fff5f5 100%);
  box-shadow: 0 12px 40px hsla(142.1, 70.6%, 45.3%, .15)
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-size: .73rem;
  font-weight: 800;
  padding: .3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .5px;
  box-shadow: 0 4px 12px hsla(142.1, 70.6%, 45.3%, .35)
}

.plan-icon {
  font-size: 2.2rem;
  margin-bottom: .8rem
}

.plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt2);
  margin-bottom: .4rem
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--txt);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 2px
}

.plan-price sup {
  font-size: 1.2rem;
  margin-top: .6rem;
  font-weight: 700;
  color: var(--txt2)
}

.plan-price sub {
  font-size: .95rem;
  font-weight: 400;
  color: var(--txt3);
  align-self: flex-end;
  margin-bottom: .3rem
}

.plan-amount {
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1)
}

.plan-desc {
  color: var(--txt3);
  font-size: .85rem;
  margin: .7rem 0 1.6rem;
  line-height: 1.6
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--txt2)
}

.check {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--pmid), var(--plight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .65rem;
  color: var(--primary);
  font-weight: 900;
  margin-top: .05rem
}

.plan.popular .check {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff
}

.plan-btn {
  display: block;
  text-align: center;
  padding: .78rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: .25s
}

.plan-btn.outline {
  border: 2px solid var(--border);
  color: var(--txt2)
}

.plan-btn.outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--plight)
}

.plan-btn.solid {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  box-shadow: 0 6px 20px hsla(142.1, 70.6%, 45.3%, .3)
}

.plan-btn.solid:hover {
  box-shadow: 0 12px 30px hsla(142.1, 70.6%, 45.3%, .45);
  transform: translateY(-2px)
}

/* ── FAQ ── */
.faq {
  padding: 90px 5%;
  background: linear-gradient(180deg, var(--plight) 0%, #fff 100%)
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto
}

.faq-list {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: .3s
}

.faq-item:hover {
  border-color: var(--psoft);
  box-shadow: 0 6px 20px hsla(142.1, 70.6%, 45.3%, .08)
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.3rem 1.6rem;
  font-size: .98rem;
  font-weight: 700;
  color: var(--txt);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s
}

.faq-q:hover {
  color: var(--primary)
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--plight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  transition: transform .3s, background .3s
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22, 1, .36, 1), padding .3s
}

.faq-a-inner {
  padding: 0 1.6rem 1.3rem;
  color: var(--txt2);
  font-size: .92rem;
  line-height: 1.75
}

.faq-item.open .faq-a {
  max-height: 300px
}

/* ── CTA ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 50%, var(--primary3) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
  padding: 90px 5%;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden
}

.cta-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  animation: blob 12s ease-in-out infinite
}

.cta-blob-1 {
  top: -100px;
  right: -80px
}

.cta-blob-2 {
  bottom: -120px;
  left: -80px;
  animation-delay: -6s
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  letter-spacing: -1px
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: .88;
  max-width: 500px;
  margin: 0 auto 2.2rem;
  position: relative;
  z-index: 1
}

.btn-white {
  background: #fff;
  color: var(--primary);
  padding: .82rem 2.4rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: .25s;
  display: inline-block;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .15)
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .2)
}

/* ── FOOTER ── */
footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 60px 5% 28px
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.2fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem
}

.footer-brand .logo-name {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -1px
}

.footer-brand .logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary2))
}

.footer-brand .logo {
  margin-bottom: .9rem
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 320px
}

footer h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: .5px
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem
}

footer ul a {
  color: #94A3B8;
  text-decoration: none;
  font-size: .875rem;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

footer ul a:hover {
  color: #fff;
  padding-left: 4px
}

footer ul a::before {
  content: '→';
  color: var(--primary);
  font-size: .75rem;
  opacity: 0;
  transition: .2s;
  margin-right: -4px
}

footer ul a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px hsla(142.1, 70.6%, 45.3%, 0.3);
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  font-size: .8rem;
  color: #475569
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem
}

.footer-bottom-links a {
  color: #475569;
  text-decoration: none;
  transition: color .2s
}

.footer-bottom-links a:hover {
  color: #fff
}

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .connector {
    display: none
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {

  .nav-links,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }

  .hero {
    padding: 60px 5% 50px;
    min-height: auto
  }

  .hero-stats {
    gap: 1.5rem
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
  }

  .step-card,
  .m-card,
  .plan {
    padding: 1.6rem 1.4rem
  }

  .footer-bottom {
    flex-direction: column;
    gap: .8rem;
    text-align: center
  }
}

/* Interactivity */
.mock-card {
  transition: opacity .3s, transform .3s, box-shadow .3s !important;
  opacity: 0;
  transform: translateY(10px);
}

.mock-card.active {
  opacity: 1;
  transform: translateY(0);
}

#noResults {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--txt3);
  font-size: 0.9rem;
  animation: fadeIn .4s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}