@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

/*──────────────────────────────────────────────
  RESET & BASE
──────────────────────────────────────────────*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/*──────────────────────────────────────────────
  TOKENS
──────────────────────────────────────────────*/
:root {
  /* Brand */
  --c-green: #9d1522;
  /* --c-greened: #00c37a; */
  --c-greened: #0bc86d ;
  --c-green-dark: #009e62;
  --c-green-pale: #e6faf3;
  --c-green-mid: #b3f0d7;
  --c-ink-white: #0a1628;
  --c-ink: #fff;
  --c-ink-80: rgba(10, 22, 40, 0.8);
  --c-navy: #0f2347;
  --c-navy-mid: #183565;
  /* Neutrals */
  --c-slate: #4a5e7a;
  --c-muted: #7a8fa8;
  --c-border: #e2eaf4;
  --c-bg: #f6f9ff;
  --c-white: #ffffff;
  /* Feature accent colours */
  --c-av: #1d72e8;
  --c-av-pale: #ebf2ff;
  --c-vpn: #00c37a;
  --c-vpn-pale: #e6faf3;
  --c-cloud: #7c3aed;
  --c-cloud-pale: #f3eeff;
  --c-dark: #1a2744;
  --c-dark-pale: #e9ecf4;
  --c-id: #ea580c;
  --c-id-pale: #fff1ea;
  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  /* Shadows */
  --sh-sm: 0 2px 8px rgba(10, 22, 40, 0.07);
  --sh-md: 0 6px 24px rgba(10, 22, 40, 0.1);
  --sh-lg: 0 16px 56px rgba(10, 22, 40, 0.13);
  --sh-green: 0 10px 36px rgba(0, 195, 122, 0.3);
  /* Transitions */
  --t: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --text-color:#2c3035
}

/*──────────────────────────────────────────────
  TYPOGRAPHY
──────────────────────────────────────────────*/
body {
  font-family: "Figtree", "Outfit", sans-serif;
  background: var(--c-white);
  color: var(--c-ink);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Figtree", "Outfit", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.serif {
  font-family: "Lora", serif;
}

/*──────────────────────────────────────────────
  UTILITIES
──────────────────────────────────────────────*/
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 50px 0;
}
.section--alt {
  background: var(--c-bg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-green-pale);
  color: var(--c-green-dark);
  border: 1px solid var(--c-green-mid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--c-greened);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.hero-title {
    color: var(--text-color);
}
.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 14px;
  color:var(--text-color);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--c-slate);
  line-height: 1.75;
  max-width: 560px;
}
.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin: 0 auto;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.in.d1 {
  transition-delay: 0.08s;
}
.reveal.in.d2 {
  transition-delay: 0.16s;
}
.reveal.in.d3 {
  transition-delay: 0.24s;
}
.reveal.in.d4 {
  transition-delay: 0.32s;
}
.reveal.in.d5 {
  transition-delay: 0.4s;
}

/*──────────────────────────────────────────────
  BUTTONS
──────────────────────────────────────────────*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--r-sm);
  padding: 13px 28px;
  transition: all var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-greened);
  color: var(--c-ink);
  box-shadow: var(--sh-green);
}
.btn--primary:hover {
  background: var(--c-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0, 195, 122, 0.38);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--navy {
  background: var(--c-navy);
  color: #fff;
}
.btn--navy:hover {
  background: var(--c-navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn--outline {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-green);
}
.btn--outline:hover {
  border-color: var(--c-navy);
  background: var(--c-bg);
}
.btn--white {
  background: var(--c-white);
  color: var(--c-navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}
.btn--white:hover {
  background: var(--c-bg);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 16px 40px;
  font-size: 1.05rem;
  border-radius: var(--r-md);
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

/*──────────────────────────────────────────────
  TOPBAR / NAV
──────────────────────────────────────────────*/
#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 66px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t);
}
#topbar.scrolled {
  box-shadow: var(--sh-sm);
}
.nav-wrap {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  width: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-navy);
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--c-green);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 195, 122, 0.35);
}
.nav-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--c-ink);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-menu a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-slate);
  transition: color var(--t);
}
.nav-menu a:hover {
  color: var(--c-green);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  display: block;
  transition: all var(--t);
}

/* Mobile nav */
@media (max-width: 860px) {
 
  .nav-menu,
  .nav-actions .btn--outline {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .mobile-nav {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-white);
    z-index: 199;
    padding: 32px 24px;
    flex-direction: column;
    gap: 24px;
  }
  .mobile-nav.open {
    display: flex;
    visibility: visible;
  }
  .mobile-nav a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-navy);
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
  }
  .mobile-nav .btn {
    width: 100%;
    margin-top: 10px;
  }
}

/*──────────────────────────────────────────────
  HERO
──────────────────────────────────────────────*/
.hero {
  padding: 70px 0 80px;
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}
/* Geometric background shapes */
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgb(195 0 0 / 8%) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(29, 114, 232, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
/* Dot grid */
.hero-dots {
  position: absolute;
  top: 90px;
  right: 60px;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(
    circle,
    var(--c-border) 1.5px,
    transparent 1.5px
  );
  background-size: 20px 20px;
  opacity: 0.7;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-left {
}
.hero-right {
  display: flex;
  justify-content: center;
}

/* hero typography */
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-title .accent {
  background: var(--c-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--c-slate);
  line-height: 1.8;
  max-width: 490px;
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-muted);
}
.hero-trust-item svg {
  width: 15px;
  height: 15px;
  fill: var(--c-greened);
  flex-shrink: 0;
}

/* shield visual */
.shield-wrap {
  position: relative;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
  /* display: none; */
}
.shield-bg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* border: 1px solid var(--c-border); */
  /* background: var(--c-bg); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: var(--sh-lg); */
  position: relative;
  overflow: visible;
}
/* pulsing rings */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}
.r1 {
  width: 296px;
  height: 296px;
  border-color: rgba(0, 195, 122, 0.12);
  animation: spin-slow 28s linear infinite;
}
.r2 {
  width: 240px;
  height: 240px;
  border-color: rgba(0, 195, 122, 0.18);
  animation: spin-slow 20s linear infinite reverse;
}
.r3 {
  width: 184px;
  height: 184px;
  border-color: rgba(0, 195, 122, 0.25);
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.shield-core {
  width: 130px;
  height: 130px;
  background: var(--c-navy);
  nt-size: 0.8rem;
  font-weight:flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 18px rgba(0, 195, 122, 0.08),
    var(--sh-green);
  position: relative;
  z-index: 2;
  animation: core-pulse 3s ease-in-out infinite;
}
@keyframes core-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 18px rgba(0, 195, 122, 0.08),
      var(--sh-green);
  }
  50% {
    box-shadow:
      0 0 0 28px rgba(0, 195, 122, 0.05),
      0 14px 52px rgba(0, 195, 122, 0.42);
  }
}
.shield-core svg {
  width: 56px;
  height: 56px;
  fill: var(--c-greened);
}

/* floating chips */
.chip {
  position: absolute;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--c-navy);
  box-shadow: var(--sh-md);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.chip:nth-child(3) {
  top: 14px;
  left: -20px;
  animation-delay: 0s;
}
.chip:nth-child(4) {
  top: 50px;
  right: -30px;
  animation-delay: 0.7s;
}
.chip:nth-child(5) {
  bottom: 70px;
  left: -44px;
  animation-delay: 1.4s;
}
.chip:nth-child(6) {
  bottom: 22px;
  right: -20px;
  animation-delay: 2.1s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cd-green {
  background: var(--c-green);
}
.cd-blue {
  background: var(--c-av);
}
.cd-purple {
  background: var(--c-cloud);
}
.cd-orange {
  background: var(--c-id);
}

/*──────────────────────────────────────────────
  TRUST RIBBON
──────────────────────────────────────────────*/
.trust-ribbon {
  background: var(--c-navy);
  padding: 16px 0;
}
.trust-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}
.tr-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 600;
}
.tr-item svg {
  width: 15px;
  height: 15px;
  fill: var(--c-green);
  flex-shrink: 0;
}

/*──────────────────────────────────────────────
  FEATURES
──────────────────────────────────────────────*/
.features-header {
  text-align: center;
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
/* wide card spanning 2 cols */
.feat-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--t);
}
.feat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0;
  transition: opacity var(--t);
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.feat-card:hover::after {
  opacity: 1;
}
.fc-av::after {
  background: var(--c-av);
}
.fc-vpn::after {
  background: var(--c-vpn);
}
.fc-cloud::after {
  background: var(--c-cloud);
}
.fc-dark::after {
  background: var(--c-dark);
}
.fc-id::after {
  background: var(--c-id);
}

/* feature icon */
.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.feat-icon svg {
  width: 28px;
  height: 28px;
}
.fi-av {
  background: var(--c-av-pale);
}
.fi-av svg {
  fill: var(--c-av);
}
.fi-vpn {
  background: var(--c-vpn-pale);
}
.fi-vpn svg {
  fill: var(--c-vpn);
}
.fi-cloud {
  background: var(--c-cloud-pale);
}
.fi-cloud svg {
  fill: var(--c-cloud);
}
.fi-dark {
  background: var(--c-dark-pale);
}
.fi-dark svg {
  fill: var(--c-dark);
}
.fi-id {
  background: var(--c-id-pale);
}
.fi-id svg {
  fill: var(--c-id);
}

.feat-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-color);
}
.feat-card p {
  font-size: 0.88rem;
  color: var(--c-slate);
  line-height: 1.75;
  margin-bottom: 18px;
}
.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}
.tag {
  font-size: 0.71rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
}
.tag-av {
  background: var(--c-av-pale);
  color: var(--c-av);
}
.tag-vpn {
  background: var(--c-vpn-pale);
  color: var(--c-green-dark);
}
.tag-cloud {
  background: var(--c-cloud-pale);
  color: var(--c-cloud);
}
.tag-dark {
  background: var(--c-dark-pale);
  color: var(--c-dark);
}
.tag-id {
  background: var(--c-id-pale);
  color: var(--c-id);
}

.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: gap var(--t);
}
.feat-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}
.feat-link:hover {
  gap: 10px;
}
.fl-av {
  color: var(--c-av);
}
.fl-vpn {
  color: var(--c-green-dark);
}
.fl-cloud {
  color: var(--c-cloud);
}
.fl-dark {
  color: var(--c-dark);
}
.fl-id {
  color: var(--c-id);
}

/* promo card */
.feat-promo {
  grid-column: span 1;
  background: var(--c-navy);
  border-color: var(--c-navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feat-promo h3,
.feat-promo p {
  color: rgba(255, 255, 255, 0.9);
}
.feat-promo p {
  color: rgba(255, 255, 255, 0.6);
}

/*──────────────────────────────────────────────
  STATS ROW
──────────────────────────────────────────────*/
.stats-section {
  background: var(--c-navy);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--c-greened);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}
.mobile-nav{
visibility: hidden;
}
/*──────────────────────────────────────────────
  HOW IT WORKS
──────────────────────────────────────────────*/
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--c-green) 0%,
    rgba(0, 195, 122, 0.15) 100%
  );
  border-radius: 2px;
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
.step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2.5px solid var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-navy);
  box-shadow: var(--sh-md);
  position: relative;
}
.step-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 195, 122, 0.25);
  animation: spin-slow 12s linear infinite;
}
.step h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.82rem;
  color: var(--c-muted);
  line-height: 1.65;
}

/*──────────────────────────────────────────────
  PRICING
──────────────────────────────────────────────*/
.pricing-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  border-radius: var(--r-xl);
  border: 2px solid var(--c-border);
  padding: 38px 32px;
  position: relative;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.plan:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.plan--featured {
  background: var(--c-navy);
  border-color: var(--c-navy);
  transform: scale(1.025);
}
.plan--featured:hover {
  transform: scale(1.025) translateY(-4px);
}
.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-greened);
  color: var(--c-ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--sh-green);
}
.plan-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.plan--featured .plan-name {
  color: rgba(255, 255, 255, 0.55);
}
.plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--c-navy);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.plan--featured .plan-price {
  color: var(--c-white);
}
.plan-price sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 700;
}
.plan-price sub {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
}
.plan-cycle {
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-bottom: 28px;
}
.plan--featured .plan-cycle {
  color: rgba(255, 255, 255, 0.45);
}
.plan-divider {
  height: 1px;
  background: var(--c-border);
  margin: 4px 0 24px;
}
.plan--featured .plan-divider {
  background: rgba(255, 255, 255, 0.12);
}
.plan-feats {
  list-style: none;
  margin-bottom: auto;
  padding-bottom: 32px;
}
.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--c-slate);
  padding: 6px 0;
}
.plan--featured .plan-feats li {
  color: rgba(255, 255, 255, 0.78);
}
.plan-feats li svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-feats .check {
  fill: var(--c-green);
}
.plan-feats .cross {
  fill: var(--c-muted);
  opacity: 0.45;
}
.plan-feats li.disabled {
  opacity: 0.4;
  text-decoration: line-through;
}
.plan-cta {
  width: 100%;
  padding: 14px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 800;
  transition: all var(--t);
}
.plan-cta-green {
  background: var(--c-greened);
  color: var(--c-ink);
  box-shadow: var(--sh-green);
}
.plan-cta-green:hover {
  background: var(--c-green-dark);
  transform: translateY(-1px);
}
.plan-cta-outline {
  background: transparent;
  color: var(--c-navy);
  border: 2px solid var(--c-green);
}
.plan-cta-outline:hover {
  border-color: var(--c-navy);
}
.plan-cta-white {
  background: var(--c-white);
  color: var(--c-navy);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}
.plan-cta-white:hover {
  background: var(--c-bg);
  transform: translateY(-1px);
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--c-muted);
}
.pricing-note strong {
  color: var(--c-navy);
}

/*──────────────────────────────────────────────
  TESTIMONIALS
──────────────────────────────────────────────*/
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--t);
}
.review:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.stars svg {
  width: 14px;
  height: 14px;
  fill: #f59e0b;
}
.review-quote {
  font-size: 0.88rem;
  color: var(--c-slate);
  line-height: 1.78;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.av-name {
  font-weight: 800;
  font-size: 0.87rem;
  color: var(--c-navy);
}
.av-role {
  font-size: 0.76rem;
  color: var(--c-muted);
}

/*──────────────────────────────────────────────
  DEVICE COMPATIBILITY
──────────────────────────────────────────────*/
.devices-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 48px;
}
.device-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: 100px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--c-navy);
  box-shadow: var(--sh-sm);
  transition: all var(--t);
}
.device-pill:hover {
  border-color: var(--c-green);
  box-shadow: 0 4px 16px rgba(195, 0, 0, 0.2);
  transform: translateY(-2px);
}
.device-pill svg {
  width: 20px;
  height: 20px;
  fill: var(--c-green);
}

.text-center{
    text-align: center;
}

/*──────────────────────────────────────────────
  FINAL CTA BANNER
──────────────────────────────────────────────*/
.cta-banner {
  background: var(--c-navy);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 195, 122, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(29, 114, 232, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-sub {
  margin-top: 22px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.04em;
}

/*──────────────────────────────────────────────
  FOOTER
──────────────────────────────────────────────*/
footer {
  background: #07101e;
  padding: 28px 0 28px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.75;
  max-width: 260px;
}
.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 9px;
}
.footer-col a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--t);
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.77rem;
}
.footer-bottom .right{
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom .right a{
display: flex;
  align-items: center;
    color: rgb(255 255 255 / 55%);  
}
.footer-bottom .middle a{
color: rgb(255 255 255 / 55%);  
}
.footer-bottom .right svg{
  width: 13px;
  color: rgb(255 255 255 / 55%);
}
.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fbadge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}


.terms{
  color: #2c3035;
  padding-top: 5rem;
}
.terms .section-title{
  padding-top: 1rem;
  font-size: 22px;
}

.terms_box ul , .terms_box ol{
  padding-left: 1rem;
}

/*──────────────────────────────────────────────
  RESPONSIVE
──────────────────────────────────────────────*/
@media (max-width: 1060px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feat-promo {
    grid-column: span 1;
  }
  .pricing-wrap {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .plan--featured {
    transform: none;
  }
  .plan--featured:hover {
    transform: translateY(-4px);
  }
  .hero-grid {
    gap: 40px;
  }
}
@media (max-width: 860px) {

   .hero{
    padding-top: 110px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-right {
    /* display: none; */
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-row::before {
    display: none;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 70px 0;
  }
  .hero {
    padding: 110px 0 64px;
  }
}


/* new hero section =============================*/

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 32px 60px;
    overflow: hidden;
    background: #fdebeb;
}

.hero .blob1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,106,0.13) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px; right: -80px;
  pointer-events: none;
  animation: blobDrift 10s ease-in-out infinite alternate;
}
.hero .blob2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,111,255,0.07) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -80px; left: -60px;
  pointer-events: none;
  animation: blobDrift 13s 2s ease-in-out infinite alternate-reverse;
}
.hero .blob3 {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  border-radius: 50%;
  top: 30%; left: 35%;
  pointer-events: none;
}

@keyframes blobDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.hero .dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(161 29 42 / 9%);
    border: 1.5px solid rgb(157 21 34 / 25%);
    color: #9d1522;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px 6px 10px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeUp 0.5s ease both;
}
.hero .eyebrow-dot {
    width: 7px;
    height: 7px;
    background: #9d1522;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgb(157 21 34 / 23%) !important;
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(0,184,92,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(0,184,92,0.08); }
}
.hero .eyebrow::before {
    display: none;
}

.hero .hero-title {
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  animation: fadeUp 0.5s 0.08s ease both;
}
.hero .hero-title .accent {
  display: block;
  position: relative;
}
/* Underline squiggle */
.hero .hero-title .accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, #00e5ff 100%);
  border-radius: 2px;
  opacity: 0.4;
}

/* BODY */
.hero .hero-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: #4a5e7a;
    max-width: 460px;
    margin-bottom: 36px;
    animation: fadeUp 0.5s 0.16s ease both;
}
.hero .hero-sub strong { font-weight: 500; }

/* CTA */
.hero .cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.24s ease both;
}

.hero .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 4px 20px rgba(0,184,92,0.3), 0 1px 4px rgba(0,0,0,0.08);
    background: #0bc86d;
}
.hero .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,184,92,0.38), 0 2px 8px rgba(0,0,0,0.1);
}
.hero .btn-icon { width: 17px; height: 17px; fill: white; flex-shrink: 0; }

.hero .badge-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4a5e7a;
    font-weight: 400;
}
.hero .badge-check {
  width: 20px; height: 20px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero .badge-check svg {
    width: 11px;
    height: 11px;
    stroke: #0bc86d;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* TRUST ITEMS */
.hero .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  animation: fadeUp 0.5s 0.32s ease both;
}
.hero .trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 12px 6px 8px;
    font-size: 12px;
    font-weight: 500;
    color: #3d5247;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.hero .trust-icon { width: 14px; height: 14px; fill: var(--green); flex-shrink: 0; }

.hero .stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 28px;
    animation: fadeUp 0.5s 0.4s ease both;
    background: rgb(255 247 247 / 60%);
    border: 1px solid rgb(255 255 255);
}
.hero .stat-cell {
  padding: 14px 16px;
  text-align: center;
}
.hero .stat-num {
    font-size: 22px;
    font-weight: 700;
    display: block;
    color: #2c3035;
}
.hero .stat-num span { color: #9d1522; }
.hero .stat-lbl {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 2px;
    display: block;
    color: #2c3035;
}

/* RIGHT / PRODUCT */
.hero .hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.5s 0.18s ease both;
}

.hero .product-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero .stage-circle {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: #e5cccc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.04); }
}

.hero .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgb(214 190 190 / 41%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 0;
}
.hero .ring1 { width: 380px; height: 380px; }
.hero .ring2 { width: 430px; height: 430px; border-color: rgba(0,184,92,0.06); }

.hero .product-img {
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18));
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Product placeholder */
.hero .product-placeholder {
  width: 260px; height: 320px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1a3a2a 0%, #0f2318 100%);
  border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
  animation: float 6s ease-in-out infinite;
  gap: 12px;
  border: 1px solid rgba(0,184,92,0.3);
}
.hero .product-placeholder svg { opacity: 0.9; }
.hero .prod-brand {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 800;
  color: #fff; letter-spacing: 0.05em;
}
.hero .prod-sub-label {
  font-size: 10px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-top: -8px;
}
.hero .prod-badge {
  background: rgba(0,184,92,0.15);
  border: 1px solid rgba(0,184,92,0.3);
  color: #00c96f;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.hero .chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 100px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #2c3035;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,0.09), 0 1px 3px rgba(0,0,0,0.05);
    max-width: 200px;
}
.hero .chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%; flex-shrink: 0;
}
.hero .cd-green  { background: #00c96f; box-shadow: 0 0 0 3px rgba(0,201,111,0.18); }
.hero .cd-blue   { background: #1a6fff; box-shadow: 0 0 0 3px rgba(26,111,255,0.18); }
.hero .cd-purple { background: #7c3aed; box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }
.hero .cd-orange { background: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,0.18); }

.hero .chip:nth-child(3) { top: 4%;  left: -5%; animation: cf1 5s ease-in-out infinite; }
.hero .chip:nth-child(4) { top: 18%; right: -8%; animation: cf2 5.5s ease-in-out infinite; }
.hero .chip:nth-child(5) { bottom: 28%; right: -10%; animation: cf1 4.8s 0.4s ease-in-out infinite; }
.hero .chip:nth-child(6) {
    bottom: 23%;
    right: -5%;
    animation: cf2 5.8s 0.8s ease-in-out infinite;
}

@keyframes cf1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes cf2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero .hero-right { order: -1; }
  .hero .product-stage { max-width: 340px; margin: 0 auto; }
  .hero .chip:nth-child(3) { top: -4%; left: 2%; }
  .hero .chip:nth-child(4) { top: -4%; right: 2%; }
  .hero .chip:nth-child(5) { bottom: -4%; right: 2%; }
  .hero .chip:nth-child(6) { bottom: -4%; left: 2%; }
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 113px 32px 60px;
    overflow: hidden;
    background: #fdebeb;
}
    .hero .chip:nth-child(6) {
        bottom: 15%;
        left: 54%;
    }
}
@media (max-width: 600px) {
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 0 64px;
    overflow: hidden;
    background: #fdebeb;
}
  .hero .hero-title { font-size: 38px; }
  .hero .hero-sub { font-size: 15px; }
  .hero .stage-circle { width: 260px; height: 260px; }
  .hero .ring1 { width: 300px; height: 300px; }
  .hero .ring2 { width: 340px; height: 340px; }
  .hero .product-img {
    width: 100%;
    max-width: 200px;
}
.hero .chip:nth-child(6) {
        bottom: -4%;
        right: 2%;
    }
        .hero .chip:nth-child(5) {
        bottom: 10%;
        left: -3%;
    }
        .hero .chip:nth-child(6) {
        bottom: -9%;
        left: 39%;
    }

    .footer-bottom{
    text-align: center;
    justify-content: center; 
    }

}
.hero .badge-row {
    color: #2c3035;
}


@media (max-width:360px) {
  .stats-section .container{
    padding: 0 7px;
  }
    .footer-bottom .right{
      flex-direction: column;
    }
}