:root {
  --bg-mid: #071528;
  --bg-card: #0d1f35;
  --bg-card2: #0a1929;
  --accent: #3c47fb;
  --accent-glow: #2563eb;
  --muted: #94a3b8;
  --border: rgba(59, 130, 246, 0.18);
  --text: #e2e8f0;
  --success: #22c55e;
  --danger: #ef4444;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  font-family: "Sora", sans-serif;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.top-deal-navbar {
  background-color: #04111f;
  font-size: 12px;
}

.navbar-custom {
  position: STICKY;
  top: 0px;
  /* left: 0;
  right: 0; */
  z-index: 1000;
  /* padding: 0; */
  /* -webkit-backdrop-filter: blur(18px); */
  /* border-bottom: 0px; */
  /* transition: all 0.4s ease; */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  background: #f8faff;
}

.nav-scrolled {
  background: #f8faff !important;
}

a:focus-visible, button:focus-visible, .nav-dropdown-toggle:focus-visible
 {
   outline: none;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.25);
    border-radius: 8px;
}

.nav-item-link {
  padding: 30px 18px;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-item-link:hover {
  color: var(--accent);
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
}

.nav-dropdown-toggle i {
  font-size: 0.8rem;
  color: #64748b;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.nav-dropdown-menu {
  /* position: absolute; */
  top: calc(100% + 0px);
  left: 70%;
  width: min(700px, 72vw);
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(60, 71, 251, 0.12);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s ease;
}

.nav-dropdown-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(60, 71, 251, 0.1);
}

.nav-dropdown-header-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(60, 71, 251, 0.1);
  color: var(--accent);
  font-size: 18px;
}

/* .nav-dropdown-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
} */

.nav-dropdown-header-title {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-dropdown-header-subtitle {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.4;
}

.nav-mega-arrow {
  margin-left: auto;
  align-self: center;
  color: #cbd5e1;
  font-size: 14px;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.nav-mega-link:hover .nav-mega-arrow {
  color: var(--accent);
  transform: translateX(2px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.left-dropdown {
  left: 200% !important;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
  color: var(--accent);
  transform: rotate(180deg);
}

.nav-dropdown-label {
  display: block;
  margin: 0px 6px 8px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  /* text-transform: uppercase; */
}

.nav-mega-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.nav-mega-link:hover {
  background: #ecf3ff;
  transform: translateY(-2px);
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.nav-mega-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(60, 71, 251, 0.1);
  color: var(--accent);
}

.nav-mega-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.nav-mega-title {
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.nav-mega-desc {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.nav-mega-link .nav-badge {
  margin-left: auto;
  align-self: center;
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

.nav-badge--green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.nav-badge--blue {
  background: rgba(60, 71, 251, 0.18);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.nav-btn-cta {
  border-radius: 8px;
  padding: 4px 15px;
  display: block;
  font-size: 14px;
  color: #000;
  border: 1px solid #3c47fb;
  background: #f1f7ff;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.nav-btn-cta svg {
  width: 20px;
  margin-left: 4px;
}

.nav-btn-cta:hover {
  box-shadow: 0px 11px 28.6px rgb(17 119 255 / 12%);
  transform: translateY(-1px);
}

.nav-hamburger {
  border: 0px;
  background: transparent;
  color: #000;
  font-size: 24px;
}

.nav-offcanvas {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 255, 0.98) 100%
  ) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  width: 320px !important;
  border-left: 1px solid rgba(60, 71, 251, 0.08);
  box-shadow: -10px 0 30px rgba(15, 23, 42, 0.08);
}

.nav-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(60, 71, 251, 0.08);
  padding: 16px 20px;
}

.nav-offcanvas .btn-close {
  filter: invert(0);
  opacity: 0.7;
}

.nav-drawer-inner {
  padding: 12px 14px 24px;
}

.nav-drawer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 15px;
  color: #0f172a;
  text-decoration: none;
  border-radius: 12px;
  transition:
    background 0.18s,
    color 0.18s;
}

.nav-drawer-link:hover {
  background: linear-gradient(
    135deg,
    rgba(244, 246, 251, 0.9) 0%,
    rgba(229, 234, 243, 0.85) 100%
  );
  color: var(--accent);
}

.nav-drawer-divider {
  border-color: rgba(60, 71, 251, 0.1);
  margin: 8px 4px;
}

/* Mobile collapsible dropdown */
.nav-drawer-item {
  display: flex;
  flex-direction: column;
}

.nav-drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  color: #0f172a;
  text-align: left;
  border-radius: 12px;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.nav-drawer-toggle:hover {
  background: rgba(60, 71, 251, 0.06);
  color: var(--accent);
}

.nav-drawer-toggle i {
  font-size: 0.8rem;
  color: #64748b;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.nav-drawer-item.is-open > .nav-drawer-toggle {
  background: rgba(60, 71, 251, 0.06);
  color: var(--accent);
}

.nav-drawer-item.is-open > .nav-drawer-toggle i {
  transform: rotate(180deg);
  color: var(--accent);
}

.nav-drawer-submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.nav-drawer-submenu > .nav-drawer-submenu-inner {
  overflow: hidden;
  min-height: 0;
}

.nav-drawer-item.is-open > .nav-drawer-submenu {
  grid-template-rows: 1fr;
}

.nav-drawer-submenu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer-submenu .nav-dropdown-label {
  margin: 10px 8px 6px;
  font-size: 0.7rem;
}

.nav-drawer-sublink {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.nav-drawer-sublink:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(236, 243, 255, 0.85) 100%
  );
  border-color: rgba(60, 71, 251, 0.18);
  transform: translateX(2px);
  border: 1px solid rgba(60, 71, 251, 0.06);
}

.nav-drawer-sublink .nav-mega-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 15px;
}

.nav-drawer-sublink .nav-mega-title {
  font-size: 13.5px;
}

.nav-drawer-sublink .nav-mega-desc {
  font-size: 12px;
  color: #64748b;
}

.nav-server {
  left: 70% !important;
}

.hero_section {
  padding: 68px 0;
}

.hero_heading {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-family: "DM Sans", sans-serif;
  color: #475569;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 2.4rem;
  font-weight: 400;
}

.hero-badge-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero-pill--accent {
  position: relative;
  background: #fff;
  color: #000;
  z-index: 1;
  border: none;
  overflow: hidden;
}

.hero-pill--accent::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: -2;

  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0%,
    transparent 45%,
    rgba(60, 71, 251, 0.2) 55%,
    #00d4ff 65%,
    #3c47fb 75%,
    #7e34d2 85%,
    #ffbf2f 95%,
    #7e34d2 100%
  );
  animation: bgSpin 4s linear infinite;
  border-radius: 999px;
}

.hero-pill--accent::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #fff;
  z-index: -1;
  border-radius: 999px;
}

@keyframes bgSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ── HERO FEATURES GRID ── */
.hero-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 12px;
  margin-bottom: 0;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature-item img {
  width: 85%;
}

.hf-icon1 {
  border-radius: 50%;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hf-text {
  color: #000;
  font-size: 17px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.section_heading {
  letter-spacing: -0.03em;
  font-weight: 800 !important;
}

.section_heading span {
  color: #3c47fb;
}

/* ── HERO BTN ── */
.btn-trial {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 13px 30px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(60, 71, 251, 0.35);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.hero_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 75%
  );
  transition: transform 0.8s ease-in-out;
  pointer-events: none;
  z-index: -1;
}

.hero_btn:hover {
  transform: translateY(-2px);
}

.hero_btn:hover::before {
  transform: translateX(200%);
}

.more_btn {
  color: var(--accent);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.btn-trial:hover {
  background: var(--accent-glow);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(60, 71, 251, 0.5);
}

.btn-trial .arrow-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--accent);
}

.hero-domain-search {
  width: min(100%, 560px);
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 8px 7px 18px;
  border: 1px solid #cddcff;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(60, 71, 251, 0.14);
}

.hero-domain-search__icon {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 16px;
}

.hero-domain-search__input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f172a;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.hero-domain-search__input::placeholder {
  color: #8b9ab0;
}

.hero-domain-search__button {
  flex: 0 0 auto;
  min-width: 96px;
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: #0f63ff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(15, 99, 255, 0.26);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-domain-search__button:hover,
.hero-domain-search__button:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(60, 71, 251, 0.32);
}

/* LIGHT FEATURE SECTION */

.feature-light-card {
  background: #ffffff;
  border: 1px solid rgba(60, 71, 251, 0.18);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  height: 100%;
}

.feature-light-card:hover {
  transform: translateY(-8px);
  border-color: #3c47fb;
  box-shadow:
    0 0 0 0px #3c47fb,
    0 24px 48px rgba(60, 71, 251, 0.16);
}

.feature-light-card:hover::before {
  opacity: 1;
}

/* Editors-choice card hover polish */
.feature-light-card .ec-feat i,
.feature-light-card .ec-price-main strong {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.feature-light-card:hover .ec-feat i {
  transform: scale(1.12);
}

.feature-light-card:hover .ec-price-main strong {
  transform: scale(1.04);
}

.feature-light-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(60, 71, 251, 0.1);
  color: #3b42ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 24px;
  padding: 6px;
  flex-shrink: 0;
}

.feature-light-icon-wrapper img {
  width: 100% !important;
}

.feature-title-light {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.feature-text-light {
  font-size: 16px;
  color: #475569;
  margin-bottom: 24px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.section_para {
  font-family: "DM Sans", sans-serif;
  line-height: 28px;
  color: #475569;
  font-size: 18px;
  font-weight: 500;
  max-width: 991px;
}

/* ── App Card ── */

.tools_grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.app-card {
  background: #fff;
  border: 2px solid rgba(60, 71, 251, 0.3);
  border-radius: 16px;
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  height: 148px;
  width: 148px;
  justify-content: center;
}

.inter_links {
  color: #3c47fb;
  text-decoration: none;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.4);
}

.app-card img {
  width: 60% !important;
}

/* ── More Apps Tile ── */
.app-card-more {
  background: #0d1b2e;
  justify-content: center;
  gap: 4px;
}

.app-card-more:hover {
  background: #0d1b2e;
}

.app-more-count {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.app-more-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

/* Rating Bar */
.testi-rating-bar {
  gap: 16px;
}

.testi-rating-score {
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid;
}

.testi-rating-num {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.testi-rating-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.88rem;
}

.testi-rating-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

.testi-platform {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 0 18px;
}

.testi-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
}

.testi-quote-icon {
  color: #cbd5e1;
  font-size: 1rem;
  display: block;
  line-height: 1;
}

.testi-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #000;
  margin: 0;
  flex: 1;
  font-weight: 500;
}

/* Author Row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  display: block;
}

.testi-author-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.72rem;
  margin-top: 2px;
}

/* TESTIMONIALS MARQUEE (desktop) */
.testi-marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 18%,
    #000 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 18%,
    #000 82%,
    transparent 100%
  );
}

.testi-marquee::before,
.testi-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  max-width: 160px;
  pointer-events: none;
  z-index: 3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testi-marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0%,
    #000 60%,
    transparent 100%
  );
  mask-image: linear-gradient(to right, #000 0%, #000 60%, transparent 100%);
}

.testi-marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to left,
    #000 0%,
    #000 60%,
    transparent 100%
  );
  mask-image: linear-gradient(to left, #000 0%, #000 60%, transparent 100%);
}

.testi-marquee-row {
  overflow: hidden;
  width: 100%;
}

.testi-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.testi-marquee-track--left {
  animation: testi-marquee-left 40s linear infinite;
}

.testi-marquee-track--right {
  animation: testi-marquee-right 40s linear infinite;
}

.testi-marquee-row:hover .testi-marquee-track {
  animation-play-state: paused;
}

.testi-marquee .testi-card {
  flex: 0 0 auto;
  width: 455px;
}

.testi-grid-section {
  overflow-x: hidden;
}

@keyframes testi-marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes testi-marquee-right {
  0% {
    transform: translateX(-30%);
  }

  100% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testi-marquee-track--left,
  .testi-marquee-track--right {
    animation: none;
  }
}

/* NEW FOOTER */
.footer-new {
  background: #04111f;
  padding: 0;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer {
  padding: 80px 0 0;
}

.f-brand p {
  font-size: 16px;
  color: #6e849e;
  line-height: 1.5;
  margin: 16px 0 24px;
}

.f-trust {
  margin-bottom: 24px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.f-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6e849e;
}

.f-trust-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.f-trust-item strong {
  color: #e4edf8;
}

.f-socials {
  display: flex;
  gap: 8px;
}

.f-social {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
  color: #6e849e;
  text-decoration: none;
}

.f-social:hover {
  background: #1a6fff;
  border-color: #1a6fff;
  color: #fff;
  transform: translateY(-2px);
}

.f-nav h5 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4d96ff;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.footer_link_sec::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 2px;
  background: #4d96ff;
}

.f-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 0px;
}

.f-nav ul li a {
  font-size: 15px;
  color: #6e849e;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
}

.f-nav ul li a:hover {
  color: #e4edf8;
}

.f-badge-hot {
  background: #ff6b35;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

.f-badge-new {
  background: #1a6fff;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

.footer-status {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.f-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e5a0;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.f-status-txt {
  font-size: 14px;
  color: #6e849e;
}

.f-status-txt strong {
  color: #00e5a0;
}

.f-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.f-stat-item {
  font-size: 14px;
  color: #6e849e;
}

.f-stat-item span {
  color: #e4edf8;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.f-copy {
  font-size: 12px;
  color: #6e849e;
}

.f-copy a {
  color: #4d96ff;
}

.f-payments {
  display: flex;
  gap: 6px;
}

.f-pay {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 10px;
  color: #6e849e;
  font-weight: 600;
}

.footer-awards {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
}

.awards-flex {
  display: flex;
  align-items: center;
  gap: 36px;
  overflow-x: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.aw-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2a3d55;
  font-weight: 700;
  white-space: nowrap;
}

.aw-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.aw-item strong {
  font-size: 12px;
  color: #e4edf8;
}

.aw-item span {
  font-size: 11px;
  color: #6e849e;
}

.aw-stars {
  color: #ffd600;
  font-size: 11px;
}

.f-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e5a0;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(0, 229, 160, 0);
  }
}

.point-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid #bfd3ff;
  transition: all 0.3s;
  background: #fff;
}

.point:hover {
  border-color: rgba(37, 99, 235, 0.25);
  background: var(--blue-lt);
  box-shadow: var(--shadow-sm);
}

.point-body h4 {
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 500;
}

.point-body p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.app-name {
  font-weight: 600;
  font-size: 15px;
}

.app-name,
.app-cat {
  font-family: "DM Sans", sans-serif;
}

.app-cat {
  font-size: 13px;
  font-weight: 500;
}

.w-60 {
  width: 60%;
}

/* ── Stats Bar ── */
.achieve-bar {
  background: #04111f;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 44px 40px;
  gap: 10px;
}

.achieve-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.achieve-stat-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.achieve-stat-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.3;
}

/* Vertical divider */
.achieve-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

/* ── Tool Card ── */
.tool-card {
  background: #fff;
  border: 1.5px solid #e7edf7;
  border-radius: 24px;
  padding: 32px 20px 24px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  border-color: rgba(59, 130, 246, 0.35);
}

.tool-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  font-size: 1.35rem;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(59, 130, 246, 0.05)
  );
  color: var(--accent);
  transition: transform 0.2s;
}

.tool-card:hover .tool-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.tool-icon-teal {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.15),
    rgba(6, 182, 212, 0.05)
  );
  color: #06b6d4;
}

.tool-icon-purple {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.15),
    rgba(139, 92, 246, 0.05)
  );
  color: #8b5cf6;
}

.tool-icon-green {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.15),
    rgba(34, 197, 94, 0.05)
  );
  color: #22c55e;
}

.tool-icon-orange {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.15),
    rgba(249, 115, 22, 0.05)
  );
  color: #f97316;
}

.tool-icon-blue {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(59, 130, 246, 0.05)
  );
  color: #3b82f6;
}

.tool-icon-rose {
  background: linear-gradient(
    135deg,
    rgba(244, 63, 94, 0.15),
    rgba(244, 63, 94, 0.05)
  );
  color: #f43f5e;
}

/* ── Tool Name & Desc ── */
.tool-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.25;
}

.tool-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* ── Category Tag free tools ── */
.tool-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.tool-tag-teal {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.25);
}

.tool-tag-amber {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.25);
}

.tool-tag-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
  border-color: rgba(139, 92, 246, 0.25);
}

.tool-tag-green {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.25);
}

.tool-tag-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #c2410c;
  border-color: rgba(249, 115, 22, 0.25);
}

.tool-tag-blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
  border-color: rgba(59, 130, 246, 0.25);
}

.tool-tag-rose {
  background: rgba(244, 63, 94, 0.1);
  color: #be123c;
  border-color: rgba(244, 63, 94, 0.25);
}

.review_icon {
  width: 100px;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .tool-card {
    padding: 24px 14px 18px;
    border-radius: 18px;
  }

  .tool-icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
    border-radius: 12px;
  }

  .tool-name {
    font-size: 0.95rem;
  }

  .tool-desc {
    font-size: 0.8rem;
  }
}

/* plan section */
.free-plan-section {
  background-color: #ecf3ff;
}

.free-plan-intro {
  padding: 16px 8px 16px 4px;
}

.free-plan-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 0px;
  background: rgba(60, 71, 251, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
}

.plan-card {
  flex-direction: column;
  padding: 28px;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);

  background: #fff;
  border: 1.5px solid #dde8f5;
  border-radius: 20px;
  overflow: visible;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26, 95, 232, 0.1);
}

.plan-card.plan-card-free {
  padding: 0;
  overflow: hidden;
  border-color: rgba(60, 71, 251, 0.18);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.09);
}

.free-plan-top {
  padding: 38px 34px 30px;
  background: linear-gradient(180deg, #f8faff 0%, #ecf3ff 100%);
}

.free-plan-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(60, 71, 251, 0.22);
  border-radius: 999px;
  background: rgba(60, 71, 251, 0.08);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.free-plan-pill i {
  font-size: 9px;
}

.plan-card-free .plan-name {
  color: #0f172a;
  font-size: 25px;
  letter-spacing: 0;
}

.plan-card-free .plan-tagline {
  max-width: 360px;
  margin-top: 8px;
  color: #64748b;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.free-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin: 22px 0 10px;
}

.free-price-currency {
  margin-bottom: 12px;
  color: #475569;
  font-size: 20px;
  font-weight: 800;
}

.free-price-number {
  color: var(--accent);
  font-size: 66px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
}

.free-price-period {
  margin-bottom: 7px;
  color: #64748b;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 1.3;
}

.free-price-period strong {
  color: #475569;
  font-weight: 500;
}

.free-promise {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.free-promise i {
  font-size: 10px;
}

.plan-card-free .cta-free-btn {
  min-height: 50px;
  border: 1.5px solid rgba(60, 71, 251, 0.38);
  border-radius: 11px;
  background: #fff;
  color: var(--accent);
  box-shadow: none;
  letter-spacing: 0;
}

.plan-card-free .cta-free-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.free-included {
  padding: 28px 34px 24px;
}

.free-included-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.free-included-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #dde8f5;
}

.free-feature-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.free-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.free-feature-item strong {
  color: #0f172a;
  font-weight: 800;
}

.free-feature-icon {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  border-radius: 50%;
  background: rgba(60, 71, 251, 0.09);
  color: var(--accent);
  font-size: 9px;
}

.free-feature-item.is-muted {
  color: #94a3b8;
}

.free-feature-item.is-muted .free-feature-icon {
  background: #f1f5f9;
  color: #cbd5e1;
}

.free-upgrade-note {
  margin-top: 22px;
  padding: 17px 18px;
  border: 1px solid rgba(60, 71, 251, 0.18);
  border-radius: 12px;
  background: #f8faff;
}

.free-upgrade-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.free-upgrade-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #475569;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.free-upgrade-list span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.free-upgrade-list i {
  margin-top: 3px;
  color: var(--accent);
  font-size: 9px;
}

.plan-card.featured {
  border-color: #1a5fe8;
  border-width: 2px;
}

/* Top badge (floated above card) */
.card-top-badge {
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #1a5fe8;
  color: #fff;
}

.usage-type {
  font-size: 10px;
  font-weight: 700;
  /* letter-spacing: 0.14em; */
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 8px;
}

.plan-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.plan-tagline {
  font-size: 13px;
  color: #475569;
  margin-top: 3px;
}

.plan-cta {
  width: 100%;
  padding: 15px 6px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

.cta-free-btn {
  background: #ecf3ff;
  color: #1a5fe8;
  border: 2px solid #1a5fe8;
}

.cta-free-btn:hover {
  background: #1a5fe8;
  border-color: #1a5fe8;
  color: #fff;
}

.cta-lifetime-btn {
  background: #1a5fe8;
  color: #fff;
}

.cta-lifetime-btn:hover {
  background: #0a2850;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(7, 24, 40, 0.35);
}

.deal-card-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.deal-card {
  position: relative;
  padding: 14px;
  border: 1px solid #dbe7f7;
  border-radius: 16px;
  background: #fff;
}

.deal-card--popular {
  border-color: rgba(60, 71, 251, 0.32);
}

.deal-popular-badge {
  position: absolute;
  top: -12px;
  right: 40px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #3c47fb;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.deal-card-main {
  display: flex;
  align-items: center;
  gap: 24px;
}

.deal-logo {
  width: 52px;
  height: 52px;
  overflow: hidden;
}

.deal-info {
  min-width: 0;
  flex: 1;
}

.deal-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.deal-title-row h4 {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
}

.deal-price-row {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 6px;
}

.deal-price-row strong {
  color: #0f172a;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.deal-price-row span {
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.deal-price-row del {
  margin-left: 4px;
  color: red;
  font-size: 12px;
  font-weight: 700;
}

.deal-info p {
  margin: 6px 0 0;
  color: #059669;
  font-size: 12px;
  font-weight: 800;
}

.deal-features {
  /* display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 12px;
  padding-top: 12px;
  border-top: 1px solid #edf2f7; */
  display: flex;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 12px;
  padding-top: 12px;
  border-top: 1px solid #edf2f7;
  justify-content: space-around;
}

.deal-features span {
  min-width: 0;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.deal-features i {
  color: #3c47fb;
  font-size: 10px;
}

.deal-button {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  background: #3c47fb;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.deal-button:hover {
  background: #3c47fb;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(60, 71, 251, 0.26);
}

.free_plan_btn {
  border: 2px solid #3c47fb;
  color: #3c47fb;
  background-color: #fff !important;
}

.free_plan_btn:hover {
  color: #3c47fb;
}

.deal-feature-accordion {
  margin: 12px -14px -14px;
  border-top: 1px solid #edf2f7;
}

.deal-feature-accordion summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.deal-feature-accordion summary::-webkit-details-marker {
  display: none;
}

.deal-feature-label--open,
.deal-feature-accordion[open] .deal-feature-label--closed {
  display: none;
}

.deal-feature-accordion[open] .deal-feature-label--open {
  display: inline;
}

.deal-feature-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(60, 71, 251, 0.09);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.deal-feature-count i {
  font-size: 9px;
  transition: transform 0.2s ease;
}

.deal-feature-accordion[open] .deal-feature-count i {
  transform: rotate(180deg);
}

.deal-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0 16px 18px;
}

.deal-feature-grid span {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.deal-feature-grid span i {
  width: 18px;
  height: 18px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  border-radius: 50%;
  background: rgba(60, 71, 251, 0.09);
  color: var(--accent);
  font-size: 9px;
}

.deal-feature-grid strong {
  color: #0f172a;
  font-weight: 800;
}

@media (max-width: 575.98px) {
  .hosting-deals-panel {
    padding: 14px 0;
  }

  .deal-price-row strong {
    font-size: 28px;
    font-weight: 700;
  }

  .deal-card-main {
    gap: 10px;
  }

  .deal-logo {
    width: 44px;
    height: 44px;
  }

  .deal-features {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .deal-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .free-plan-top,
  .free-included {
    padding-left: 22px;
    padding-right: 22px;
  }

  .free-price-number {
    font-size: 58px;
  }
}

.free-plan-section .col-md-4:first-child .free-plan-intro div {
  position: sticky;
  top: 100px;
}

@media (max-width: 1199.98px) {
  .free-plan-intro {
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .free-plan-section {
    padding: 72px 0 84px;
  }

  .plan-card {
    padding: 22px;
    border-radius: 22px;
  }
}

.hosting-numbers-section {
  background: #ecf3ff;
}

.compair-section {
  background: #ecf3ff;
}

.story-year {
  display: grid;
  grid-template-columns: 80px 1fr;
}

.story-year-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3c47fb;
  border: 3px solid #fff;
  outline: 3px solid #212529bf;
  flex-shrink: 0;
  z-index: 1;
}

.story-year-track {
  width: 2px;
  flex: 1;
  background: #dde8f5;
  min-height: 24px;
}

.story-year:last-child .story-year-track {
  background: transparent;
}

.story-year-content {
  padding: 0 0 36px 16px;
}

.story-year-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #3c47fb;
  margin-bottom: 6px;
}

.story-year-title {
  font-size: 16px;
  font-weight: 700;
  color: #06101c;
  margin-bottom: 4px;
}

.story-year-desc {
  font-size: 14px;
  color: #4a6278;
  line-height: 1.6;
}

.data-section {
  background: #ecf3ff;
}

.mosaic-card {
  border-radius: 18px;
  padding: 50px 36px;
  transition:
    border-color 0.2s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #dbe8f5;
}

.mosaic-card:hover {
  border-color: #c0d4e8;
  transform: translateY(-2px);
}

.mc-label {
  font-size: 16px;
  color: #475569;
  margin-bottom: 16px;
}

.mc-big-num {
  font-family: "DM Sans", sans-serif;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin-bottom: 10px;
}

.mc-big-num.c-blue {
  color: #2563eb;
}

.mc-big-num.c-green {
  color: #00b876;
}

.mc-big-num.c-amber {
  color: #f09500;
}

.mc-big-num.c-ink {
  color: #040d18;
}

.mc-body {
  font-size: 14px;
  margin-top: 8px;
}

.mc-mid-num {
  font-family: "DM Sans", sans-serif;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #040d18;
  margin-bottom: 6px;
}

.mc-sub {
  font-size: 14px;
}

.mc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e0f8ee;
  color: #004d32;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  margin-top: 10px;
}

.mc-badge.amber {
  background: #fef3c7;
  color: #6b3a00;
}

.mc-badge.blue {
  background: #eaf0ff;
  color: #3c47fb;
}

.mc-decorline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.mc-decorline.dl-blue {
  background: #2563eb;
}

.mc-decorline.dl-green {
  background: #00b876;
}

.mc-decorline.dl-amber {
  background: #f09500;
}

.dr2-card {
  border-radius: 14px;
  padding: 36px;
  height: 100%;
  border: 1.5px solid #dbe8f5;
}

.dr2-icon {
  width: 54px;
  height: 54px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background-color: #ecf3ff;
  padding: 10px;
}

.dr2-num {
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #040d18;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 32px;
}

.manifesto-quote span {
  color: #2563eb;
}

.manifesto-quote strong {
  font-weight: 700;
  color: var(--ink);
}

.manifesto-divider {
  width: 60px;
  height: 3px;
  background: #3c47fb;
  margin: 0 auto 48px;
  border-radius: 2px;
}

.belief-item {
  padding: 28px;
  background: #fff;
  border: 1.5px solid #dde8f5;
  border-radius: 16px;
  transition: border-color 0.2s;
}

.belief-num {
  font-size: 11px;
  font-weight: 800;
  color: #c2d3e0;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.trust-section {
  background: #ecf3ff;
}

.award-score {
  font-size: 32px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.award-platform {
  font-size: 13px;
  font-weight: 700;
  color: #1e2e40;
  margin-bottom: 3px;
}

.award-reviews {
  font-size: 12px;
}

/* As-featured-on small logo cards */
.logo-card {
  background: #ffffff;
  border: 1px solid rgba(60, 71, 251, 0.18);
  border-radius: 16px;
  padding: 18px 20px;
  height: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-4px);
  border-color: #3c47fb;
  box-shadow: 0 12px 28px rgba(60, 71, 251, 0.14);
}

.logo-card-img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.logo-card:hover .logo-card-img {
  filter: grayscale(0);
  opacity: 1;
}

.cta-pre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8fa5b8;
  margin-bottom: 20px;
}

.cta-h2 {
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.cta-h2 em {
  font-style: italic;
  color: var(--blue2);
}

.cta-body {
  font-size: 17px;
  color: #4a6282;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 48px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  background: #3c47fb;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #3c47fb;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #3c47fb;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #3c47fb;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  border-color: #dde8f5;
  background: #f7faff;
}

/* Plan choice section */
.plan-choice-section {
  background: #ecf3ff;
}

.plan-choice-head .section_para {
  max-width: 560px;
}

.plan-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plan-choice-card {
  position: relative;
  min-height: 190px;
  padding: 24px 22px;
  border: 1px solid rgba(60, 71, 251, 0.12);
  border-top: 4px solid var(--accent);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.plan-choice-card--partner {
  border-top-color: #7e34d2;
}

.plan-choice-card--stable {
  border-top-color: #2563eb;
}

.plan-choice-kicker,
.plan-choice-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.plan-choice-card h3,
.plan-choice-cta h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.plan-choice-card p,
.plan-choice-cta p {
  margin: 0;
  color: #64748b;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.plan-choice-mini-btn {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(60, 71, 251, 0.09);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.plan-choice-mini-btn:hover {
  background: var(--accent);
  color: #fff;
}

.plan-choice-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(60, 71, 251, 0.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.08);
}

.plan-choice-cta-free,
.plan-choice-cta-premium {
  padding: 38px 34px;
}

.plan-choice-cta-free .plan-choice-eyebrow {
  color: var(--accent);
}

.plan-choice-cta-free h3,
.plan-choice-cta-premium h3 {
  font-size: 22px;
}

.plan-choice-primary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(60, 71, 251, 0.26);
}

.plan-choice-primary:hover {
  background: #2563eb;
  color: #fff;
}

.plan-choice-cta-premium {
  background: var(--accent);
}

.plan-choice-cta-premium .plan-choice-eyebrow,
.plan-choice-cta-premium p {
  color: rgba(255, 255, 255, 0.72);
}

.plan-choice-cta-premium h3 {
  color: #fff;
}

.plan-choice-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.plan-choice-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.plan-choice-action--light,
.plan-choice-action:hover {
  background: #fff;
  color: var(--accent);
}

@media (max-width: 575.98px) {
  .plan-choice-card,
  .plan-choice-cta-free,
  .plan-choice-cta-premium {
    padding: 24px 20px;
  }

  .plan-choice-action,
  .plan-choice-primary {
    font-size: 14px;
  }
}

.sub_hero {
  border-bottom: 1px solid #e4ecf7;
  background: radial-gradient(
    ellipse,
    rgba(37, 99, 235, 0.06) 0%,
    transparent 70%
  );
}

.sub_hero h1 {
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.sub_hero h1 span {
  color: #2563eb;
}

.sub_hero_text {
  font-size: 18px;
  color: #475569;
  max-width: 680px;
  margin: 0 auto 48px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-stats {
  flex-wrap: wrap;
}

.stat-pill {
  border: 1.5px solid #e4ecf7;
  border-radius: 100px;
  padding: 8px 18px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.sp-num {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.sp-num span {
  color: #2563eb;
}

.sp-label {
  font-size: 12px;
  color: #4a6282;
  font-weight: 500;
}

.team-strip-wrap {
  overflow: hidden;
  position: relative;
}

.team-strip-wrap::before,
.team-strip-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.team-strip-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.team-strip-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}

.team-strip {
  display: flex;
  gap: 10px;
  animation: strip 32s linear infinite;
  width: max-content;
}

.team-strip:hover {
  animation-play-state: paused;
}

@keyframes strip {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ts-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #e4ecf7;
  border-radius: 12px;
  padding: 10px 16px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: border-color 0.2s;
}

.ts-card:hover {
  border-color: #f8faff;
}

.ts-av {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.ts-name {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.ts-role {
  font-size: 11px;
  color: var(--ink4);
}

.ts-flag {
  font-size: 14px;
}

.stats-band {
  background: #2563eb;
  padding: 0;
  border-radius: 0;
}

.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.sband-item {
  padding: 36px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  min-width: 0;
}

.sband-item:last-child {
  border-right: none;
}

.sband-num {
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.sband-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* TEAM SECTION */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.team-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(60, 71, 251, 0.14);
  box-shadow: 0 10px 28px rgba(11, 27, 51, 0.07);
  cursor: pointer;
  display: grid;
  grid-template-columns: 55px 1fr;
  min-height: 360px;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  animation: teamFadeUp 0.55s ease both;
  animation-delay: var(--card-delay, 0ms);
  height: 400px;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #3c47fb 0%, #7c86fd 50%, #3c47fb 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}

.team-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(60, 71, 251, 0.22) 0%,
    transparent 70%
  );
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 2;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 54px rgba(60, 71, 251, 0.22);
  border-color: transparent;
}

.team-card:hover::before,
.team-card:hover::after {
  opacity: 1;
}

.team-info {
  position: relative;
  background: linear-gradient(180deg, #eef1ff 0%, #f6f8ff 100%);
  border-right: 1px solid rgba(60, 71, 251, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 0;
  overflow: hidden;
  transition:
    background 0.4s ease,
    border-color 0.4s ease;
}

.team-info::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(60, 71, 251, 0.18),
    transparent
  );
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card:hover .team-info::before {
  opacity: 0.4;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
}

.team-name {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: 700;
  color: #0b1b33;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.team-role {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  font-weight: 600;
  color: #3c47fb;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.team-divider {
  width: 2px;
  height: 32px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), #7c86fd);
  opacity: 0.9;
  transition:
    height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease;
}

/* ── RIGHT: image ── */
.team-img-wrap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at top,
      rgba(60, 71, 251, 0.18) 0%,
      transparent 60%
    ),
    #eef1ff;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s ease;
  display: block;
  filter: saturate(1) contrast(1.02);
}

.team-card:hover .team-img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.05);
}

/* ── Subtle tint overlay on image ── */
.team-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(60, 71, 251, 0.08) 0%, transparent 35%),
    linear-gradient(180deg, transparent 65%, rgba(60, 71, 251, 0.12) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* ── Floating social icons (top-right of image) ── */
.team-socials {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  z-index: 3;
}

.team-card:hover .team-socials {
  opacity: 1;
  transform: translateX(0);
}

.team-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(60, 71, 251, 0.25);
  color: #3c47fb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(11, 27, 51, 0.08);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.team-social-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(60, 71, 251, 0.5);
}

/* ── Entry animation ── */
@keyframes teamFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  max-width: 1240px;
  position: relative;
  z-index: 1;
  gap: 30px;
  margin: 0px auto;
}

@media (max-width: 1440px) {
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    max-width: 1240px;
    position: relative;
    z-index: 1;
    gap: 30px;
    margin: 0px auto;
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .team-section {
    padding: 72px 4vw;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .team-header {
    margin-bottom: 44px;
  }

  .team-card {
    grid-template-columns: 64px 1fr;
    min-height: 320px;
  }

  .team-name {
    font-size: 17px;
  }

  .team-role {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .team-card {
    grid-template-columns: 68px 1fr;
    min-height: 300px;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}

.step-n {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: #2563eb;
  margin: 0 auto 18px;
  transition: all 0.2s;
}

.step:hover .step-n {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.step-emoji i {
  font-size: 28px;
  margin-bottom: 8px;
  color: #3c47fb;
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  color: #0a1628;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 14px;
  /* color: var(--t3); */
  line-height: 1.6;
  font-family: "DM Sans", sans-serif;
}

@media (max-width: 991.98px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
  }

  .steps-grid::before {
    display: none;
  }

  .step {
    text-align: left;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(60, 71, 251, 0.12);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  }

  .step-n {
    margin: 0 0 16px;
  }
}

@media (max-width: 575.98px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .step {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 14px;
    padding: 20px 18px;
  }

  .step-n {
    grid-row: 1 / span 3;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .step-emoji i {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .step-title {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .step-desc {
    font-size: 13.5px;
    line-height: 1.55;
  }
}

.affiliate-reviews-slider {
  margin: 0 -10px;
}

.affiliate-reviews-slider .slick-slide {
  padding: 0 10px;
}

.affiliate-reviews-slider .slick-slide .rcard {
  height: 100%;
}

.affiliate-reviews-slider .slick-dots {
  bottom: -40px;
}

.affiliate-reviews-slider .slick-dots li button:before {
  font-size: 10px;
  color: var(--blue);
  opacity: 0.3;
}

.affiliate-reviews-slider .slick-dots li.slick-active button:before {
  color: var(--blue);
  opacity: 1;
}

.affiliate-reviews-slider .slick-track {
  display: flex;
}

.affiliate-reviews-slider .slick-slide {
  height: auto;
}

.affiliate-reviews-slider .slick-slide .rcard {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.affiliate-reviews-slider .rcard-quote {
  flex: 1;
}

.rcard {
  background: var(--card);
  border-radius: 18px;
  padding: 28px;
  transition:
    border-color 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}

.rcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.07);
}

.rcard-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.rcard-stars span {
  font-size: 15px;
  color: var(--gold);
}

.rcard-quote {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}

.rcard-quote::before {
  content: '"';
  font-size: 48px;
  line-height: 0;
  vertical-align: -16px;
  margin-right: 2px;
}

.rcard-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ra-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.ra-name {
  font-size: 14px;
  font-weight: 700;
  color: #0a1628;
  letter-spacing: -0.02em;
  margin-bottom: 1px;
}

.ra-role {
  font-size: 11px;
  color: var(--t4);
}

.rcard-earn {
  margin-top: 16px;
  background: var(--green2);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.re-label {
  font-size: 11px;
  color: var(--green3);
  font-weight: 600;
}

.re-amount {
  font-size: 20px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.04em;
}

.tr-desc {
  font-size: 14px;
  color: #475569;
  font-family: "DM Sans", sans-serif;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.ci-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.ci-val {
  font-size: 13px;
  font-weight: 800;
  margin-top: 6px;
}

/* ══════════════════════════════════════════
   THREE REASONS — FUTURISTIC SECTION
══════════════════════════════════════════ */
.reasons-fx {
  background-color: #ecf3ff;
  isolation: isolate;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
}

.reason-card {
  position: relative;
  padding: 36px 30px 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.75) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(60, 71, 251, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.45s ease;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.reason-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--r-accent, #3c47fb) 0%,
    transparent 50%,
    var(--r-accent, #3c47fb) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.reason-card-beam {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--r-accent, #3c47fb),
    transparent
  );
  filter: blur(1px);
  opacity: 0.7;
  transition:
    width 0.45s ease,
    opacity 0.45s ease;
}

.reason-card-corner {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-top: 1.5px solid var(--r-accent, #3c47fb);
  border-right: 1.5px solid var(--r-accent, #3c47fb);
  border-top-right-radius: 6px;
  opacity: 0.55;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.reason-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow:
    0 24px 60px rgba(60, 71, 251, 0.18),
    0 4px 20px rgba(15, 23, 42, 0.06);
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-card:hover .reason-card-beam {
  width: 90%;
  opacity: 1;
}

.reason-card:hover .reason-card-corner {
  opacity: 1;
  transform: translate(-2px, 2px);
}

.reason-card[data-accent="blue"] {
  --r-accent: #3c47fb;
  --r-accent-soft: rgba(60, 71, 251, 0.1);
}

.reason-card[data-accent="green"] {
  --r-accent: #10b981;
  --r-accent-soft: rgba(16, 185, 129, 0.1);
}

.reason-card[data-accent="amber"] {
  --r-accent: #f59e0b;
  --r-accent-soft: rgba(245, 158, 11, 0.1);
}

.reason-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.reason-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--r-accent, #3c47fb);
  background: var(--r-accent-soft, rgba(60, 71, 251, 0.1));
  border: 1px solid
    color-mix(in srgb, var(--r-accent, #3c47fb) 25%, transparent);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reason-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.reason-card:hover .reason-icon {
  transform: rotate(-4deg) scale(1.05);
}

.reason-index {
  font-family: "DM Sans", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--r-accent, #3c47fb) 25%, transparent) 0%,
    transparent 90%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reason-title {
  font-size: 20px;
  font-weight: 700;
  color: #0b1020;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.reason-body {
  font-size: 14.5px;
  line-height: 1.72;
  color: #475569;
  margin-bottom: 22px;
}

.reason-body strong {
  color: #0b1020;
  font-weight: 700;
}

.reason-metric {
  position: relative;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--r-accent-soft, rgba(60, 71, 251, 0.08)) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border: 1px solid
    color-mix(in srgb, var(--r-accent, #3c47fb) 18%, transparent);
  overflow: hidden;
}

.reason-metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--r-accent, #3c47fb);
  box-shadow: 0 0 12px var(--r-accent, #3c47fb);
}

.reason-metric-num {
  font-family: "DM Sans", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--r-accent, #3c47fb);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.reason-metric-num span {
  font-size: 22px;
  margin-left: 2px;
}

.reason-metric-label {
  font-size: 12.5px;
  line-height: 1.55;
  color: #475569;
  font-weight: 500;
}

@media (max-width: 991px) {
  .reasons-fx {
    padding: 80px 0;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reasons-head {
    margin-bottom: 44px;
  }

  .reason-card {
    padding: 30px 24px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reasons-orb,
  .reasons-eyebrow-dot,
  .reasons-title-grad,
  .reason-card:hover .reason-icon::after {
    animation: none;
  }

  .reason-card {
    transition: none;
  }
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
}

.earn-card {
  position: relative;
  padding: 34px 30px 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.82) 100%
  );
  backdrop-filter: blur(20px);
  border: 1.5px solid #dde8f5;
  border-radius: 22px;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.45s ease;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  --e-accent: #3c47fb;
  --e-accent-soft: rgba(60, 71, 251, 0.1);
}

.earn-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--e-accent) 0%,
    transparent 50%,
    var(--e-accent) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.earn-card-beam {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--e-accent), transparent);
  filter: blur(1px);
  opacity: 0.7;
  transition:
    width 0.45s ease,
    opacity 0.45s ease;
}

.earn-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow:
    0 24px 60px rgba(60, 71, 251, 0.18),
    0 4px 20px rgba(15, 23, 42, 0.06);
}

.earn-card:hover::before {
  opacity: 1;
}

.earn-card:hover .earn-card-beam {
  width: 90%;
  opacity: 1;
}

.earn-card-featured {
  --e-accent: #3c47fb;
  --e-accent-soft: rgba(124, 58, 237, 0.1);
  background: linear-gradient(
    180deg,
    #ecf3ff 0%,
    rgba(255, 255, 255, 0.92) 45%
  );
  border-color: rgba(124, 58, 237, 0.22);
}

.earn-card-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: #3c47fb;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
  text-transform: uppercase;
}

.earn-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.earn-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #3c47fb;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--e-accent) 35%, transparent);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.earn-icon svg {
  width: 28px;
  height: 28px;
}

.earn-card:hover .earn-icon {
  transform: rotate(-4deg) scale(1.06);
}

.earn-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.earn-title {
  font-size: 22px;
  font-weight: 700;
  color: #0b1020;
  letter-spacing: -0.01em;
  margin: 0;
}

.earn-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.earn-chip-volume {
  color: #3c47fb;
  background: rgba(60, 71, 251, 0.1);
  border: 1px solid rgba(60, 71, 251, 0.22);
}

.earn-chip-ticket {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.earn-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(60, 71, 251, 0.15);
}

.commision_table {
  overflow-x: auto;
}

.earn-table {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(60, 71, 251, 0.12);
  background: rgba(255, 255, 255, 0.6);
  width: 480px;
}

.earn-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #334155;
  border-bottom: 1px solid rgba(60, 71, 251, 0.08);
  transition: background 0.25s ease;
}

.earn-row:last-child {
  border-bottom: none;
}

.earn-row:not(.earn-row-head):hover {
  background: #ecf3ff;
}

.earn-row-head {
  background: linear-gradient(90deg, #ecf3ff, transparent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0b1020;
}

.earn-row-top {
  background: linear-gradient(90deg, #ecf3ff, rgba(255, 255, 255, 0));
  font-weight: 700;
  color: #0b1020;
}

.earn-row-top span:first-child::before {
  content: "★ ";
  color: var(--e-accent);
}

.earn-amt {
  color: var(--e-accent);
  font-weight: 700;
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  100% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@media (max-width: 991px) {
  .earnings-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .earnings-head {
    margin-bottom: 40px;
  }

  .earn-card {
    padding: 28px 22px 24px;
  }

  .earn-card-ribbon {
    top: 14px;
    right: 14px;
    font-size: 10px;
    padding: 5px 10px;
  }

  .earn-row {
    padding: 12px 14px;
    font-size: 13px;
    grid-template-columns: 1.1fr 0.9fr 1fr;
  }
}

@media (max-width: 480px) {
  .earn-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .earn-row-head {
    font-size: 10.5px;
  }
}

.channels {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid #e4ecf7;
}

.ch-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ch-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ecf3ff;
  color: #3c47fb;
}

.ch-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #3c47fb;
}

.ch-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.ch-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.ch-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.68;
  margin-bottom: 20px;
}

.ch-desc strong {
  color: var(--ink2);
  font-weight: 600;
}

/* metric row inside card */
.ch-metric {
  background: #f8faff;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cm-label {
  font-size: 11px;
  color: var(--ink4);
  font-weight: 500;
}

.cm-value {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.form-section {
  background: #ecf3ff;
}

.sla-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.sla-n {
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 22px;
}

.sla-label {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  line-height: 1.4;
}

.sla-label strong {
  color: var(--ink2);
  font-weight: 700;
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.duty-strip {
  border: 1.5px solid #e4ecf7;
  border-radius: 14px;
}

.dav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  margin-left: -9px;
  flex-shrink: 0;
}

.dav:first-child {
  margin-left: 0;
}

.dt-main {
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.dt-sub {
  font-size: 11px;
  color: var(--ink4);
}

.dl-d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.dl-txt {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.dl-time {
  font-size: 10px;
  color: var(--ink4);
}

.form-card {
  background: #fff;
  border: 1.5px solid #e4ecf7;
  border-radius: 20px;
  overflow: hidden;
}

.fct-title {
  font-size: 16px;
}

.fct-sub {
  font-size: 12px;
  color: var(--ink4);
}

.form-fields {
  padding: 20px 28px 28px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.field:last-child {
  margin-bottom: 0;
}

.field label {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.01em;
}

.field input,
.field textarea,
.field select {
  border: 1.5px solid #e4ecf7;
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8596ab;
}

.field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.submit-btn {
  padding: 15px;
  border-radius: 11px;
  background: #3c47fb;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  gap: 9px;
  transition: all 0.2s;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
}

.submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: sh 3.5s ease infinite;
}

@keyframes sh {
  0% {
    left: -100%;
  }

  100% {
    left: 210%;
  }
}

.submit-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

/* PRIVACY POLICY PAGE */

.privacy-hero {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.privacy-meta {
  padding: 10px 22px;
  background: #fff;
  border: 1px solid rgba(60, 71, 251, 0.15);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(60, 71, 251, 0.06);
  font-family: "DM Sans", sans-serif;
  color: #475569;
  font-size: 1rem;
}

.privacy-meta .p-meta-item i {
  color: var(--accent);
  margin-right: 6px;
}

.privacy-meta .p-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd5e1;
}

/* ── TABLE OF CONTENTS ── */
.privacy-toc {
  top: 110px;
  border: 1px solid rgba(60, 71, 251, 0.14);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.p-toc-head {
  color: #0f172a;
  font-size: 0.95rem;
  border-bottom: 1px solid #ecf3ff;
}

.p-toc-head i {
  color: var(--accent);
}

.p-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 60vh;
  overflow-y: auto;
}

.p-toc-list::-webkit-scrollbar {
  width: 4px;
}

.p-toc-list::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 2px;
}

.p-toc-link {
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #475569;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}

.p-toc-link span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
  min-width: 22px;
}

.p-toc-link:hover {
  background: #f1f5ff;
  color: var(--accent);
}

.p-toc-link:hover span {
  color: var(--accent);
}

.p-toc-link.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(60, 71, 251, 0.28);
}

.p-toc-link.active span {
  color: #fff;
}

.p-toc-cta {
  margin-top: 18px;
  padding: 16px;
  background: #ecf3ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-toc-cta i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.p-toc-cta strong {
  display: block;
  color: #0f172a;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.p-toc-cta a {
  color: var(--accent);
  font-size: 0.82rem;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  word-break: break-all;
}

.p-toc-cta a:hover {
  text-decoration: underline;
}

/* ── PRIVACY CONTENT ── */
.privacy-content {
  font-family: "DM Sans", sans-serif;
}

.p-section {
  position: relative;
  padding: 34px 0;
  border-bottom: 1px solid #ecf3ff;
  scroll-margin-top: 120px;
}

.p-section:first-child {
  padding-top: 0;
}

.p-section:last-child {
  border-bottom: 0;
}

.p-sec-num {
  display: inline-block;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(60, 71, 251, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.p-sec-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-family: "Sora", sans-serif;
}

.privacy-content p {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 14px;
}

.privacy-content strong {
  color: #0f172a;
  font-weight: 700;
}

/* ── INFO GRID (section 02) ── */
.p-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.p-info-card {
  border: 1px solid #3c47fb2e;
  border-radius: 16px;
  padding: 22px 20px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.p-info-card:hover {
  border-color: rgba(60, 71, 251, 0.35);
  transform: translateY(-2px);
}

.p-info-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.p-info-head i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(60, 71, 251, 0.1);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.p-info-head h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  font-family: "Sora", sans-serif;
}

.p-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-info-card ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: #475569;
  font-size: 0.94rem;
}

.p-info-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── COOKIE TABLE ── */
.p-cookie-table {
  border: 1px solid #ecf3ff;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 18px;
  background: #fff;
}

.p-cookie-row {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  gap: 16px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #475569;
  border-bottom: 1px solid #ecf3ff;
  align-items: center;
}

.p-cookie-row:last-child {
  border-bottom: 0;
}

.p-cookie-head {
  background: #f8faff;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.p-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.p-tag-blue {
  background: rgba(60, 71, 251, 0.1);
  color: var(--accent);
}

.p-tag-teal {
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
}

.p-tag-amber {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.p-tag-purple {
  background: rgba(126, 52, 210, 0.12);
  color: #7e34d2;
}

/* ── THIRD-PARTY GRID ── */
.p-third-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.p-third-card {
  background: #fff;
  border: 1px solid rgba(60, 71, 251, 0.14);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 14px;
  transition: border-color 0.2s ease;
}

.p-third-card:hover {
  border-color: rgba(60, 71, 251, 0.32);
}

.p-third-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(60, 71, 251, 0.1);
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.p-third-logo.p-logo-teal {
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
}

.p-third-logo.p-logo-amber {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.p-third-logo.p-logo-purple {
  background: rgba(126, 52, 210, 0.12);
  color: #7e34d2;
}

.p-third-card h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  font-family: "Sora", sans-serif;
}

.p-third-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
}

/* ── CALLOUT ── */
.p-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 14px;
  margin-top: 14px;
}

.p-callout i {
  font-size: 1.05rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.p-callout > div {
  color: #334155;
  font-size: 0.96rem;
  line-height: 1.6;
}

.p-callout-accent {
  background: #ecf3ff;
  border: 1px solid #bfd3ff;
}

.p-callout-accent i {
  color: var(--accent);
}

.p-callout-amber {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.p-callout-amber i {
  color: #d97706;
}

/* ── RIGHTS GRID ── */
.p-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.p-rights-card {
  background: #fff;
  border: 1px solid rgba(60, 71, 251, 0.14);
  border-radius: 14px;
  padding: 20px 18px;
  text-align: left;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.p-rights-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(60, 71, 251, 0.1);
  border-color: rgba(60, 71, 251, 0.3);
}

.p-rights-card i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(60, 71, 251, 0.1);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.p-rights-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.p-rights-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* ── CONTACT CARD ── */
.p-contact-card {
  margin-top: 18px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #f8faff 0%, #ecf3ff 100%);
  border: 1px solid rgba(60, 71, 251, 0.18);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.p-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(60, 71, 251, 0.12);
}

.p-contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.p-contact-email {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 0 !important;
}

.p-contact-email:hover {
  color: var(--accent);
}

.p-contact-note {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 2px;
}

/* ── CTA BANNER ── */
.privacy-cta-section {
  background: #fff;
}

.privacy-cta-card {
  background: linear-gradient(135deg, #ecf3ff 0%, #f8faff 100%);
  border: 1px solid rgba(60, 71, 251, 0.18);
  border-radius: 24px;
  padding: 44px 44px;
  position: relative;
  overflow: hidden;
}

.form-control {
  font-size: 16px;
}

.submit-note {
  font-size: 14px;
}

@media (min-width: 1660px) {
  .hero_section {
    padding: 60px 0;
  }
}

@media (min-width: 991px) {
  .f-trust {
    margin-bottom: 24px;

    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .privacy-toc {
    position: static;
    margin-bottom: 30px;
  }

  .p-rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero_section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .top-deal-navbar {
    display: none !important;
  }

  .earn-table {
    width: 480px;
  }

  .p-info-grid,
  .p-third-grid,
  .p-rights-grid {
    grid-template-columns: 1fr;
  }

  .p-cookie-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .p-cookie-head {
    display: none;
  }

  .p-sec-title {
    font-size: 1.35rem;
  }

  .privacy-cta-card {
    padding: 30px 22px;
  }

  .p-contact-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .sband-num {
    font-size: 24px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .stats-band-inner {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sband-item {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .sband-item:nth-child(-n + 3) {
    border-top: 0;
  }

  .sband-item:nth-child(3),
  .sband-item:nth-child(5) {
    border-right: 0;
  }

  .sband-item:nth-child(n + 4) {
    grid-column: span 3;
  }
}

@media (max-width: 767.98px) {
  .stats-band-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sband-item {
    padding: 16px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .sband-item:nth-child(-n + 2) {
    border-top: 0;
  }

  .sband-item:nth-child(2n),
  .sband-item:last-child {
    border-right: 0;
  }

  .sband-item:last-child {
    grid-column: 1 / -1;
  }

  .sband-label {
    max-width: 180px;
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .nav-btn-cta {
    display: none;
  }

  .navbar-custom {
    padding: 16px 0;
  }
}

@media (max-width: 991px) {
  .plan-cta {
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    gap: 6px;
  }

  .hero-img-wrap {
    display: none !important;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.45;
  }

  .trust-col + .trust-col {
    border-left: 0px !important;
  }

  .hero-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px 5px;
    margin-bottom: 0;
  }

  .hf-text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .footer-status {
    padding: 28px 0;
    gap: 16px;
  }

  .testi-marquee::before,
  .testi-marquee::after {
    max-width: 36px;
  }

  .testi-marquee .testi-card {
    flex: 0 0 auto;
    width: 370px;
  }

  .pt-80 {
    padding-top: 50px;
  }

  .pb-80 {
    padding-bottom: 50px;
  }

  .section_para {
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
  }

  .feature-light-card {
    padding: 24px;
  }
}

.thesis {
  background-color: #ecf3ff;
}

.thesis-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.pillar {
  padding: 48px 40px;
  background: #fff;
  transition: background 0.25s;
}

.pillar-body {
  font-size: 13.5px;
  line-height: 1.72;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #00e5a0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  z-index: 2;
}

.tpl-card {
  background: #ffffff;
  border: 1px solid #eef0f5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  position: relative;
}

.tpl-info {
  padding: 20px 22px 24px;
  display: flex;
  gap: 10px;
}

.tpl-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.tpl-cats {
  font-size: 14px;
}

.tpl-preview-btn {
  position: absolute;
  left: 84%;
  top: 3px;
  transform: translate(-50%, 10px);
  background: #ffffff;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* opacity: 0; */
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 2;
}

.tpl-card:hover .tpl-preview-btn {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.tpl-preview {
  height: 210px;
}

.tpl-preview img {
  object-fit: cover;
  height: 100%;
}

.tpl-filter {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.15s ease;
}

.tpl-filter:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.tpl-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.templates-grid > .is-hidden {
  display: none !important;
}

@media (max-width: 575.98px) {
  .check-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.faq-section {
  background: #ecf3ff;
}

.filter-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid #e2eaf6;
  background: transparent;
  color: #06101c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

.filter-tab:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.filter-tab.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.filter-tab svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.filter-tab svg path,
.filter-tab svg circle,
.filter-tab svg rect {
  transition:
    stroke 0.2s ease,
    fill 0.2s ease,
    opacity 0.2s ease;
}

.filter-tab.active svg path,
.filter-tab.active svg circle {
  stroke: #fff !important;
}

.filter-tab.active svg [fill]:not([fill="none"]) {
  fill: #fff !important;
  fill-opacity: 0.9 !important;
}

.filter-tab.active svg rect {
  fill: #fff !important;
  stroke: #fff !important;
  opacity: 0.9;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(6, 16, 28, 0.05);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.15s ease;
  height: 100%;
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}

.faq-item.open {
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.15);
  transform: translateY(0);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-q-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

.faq-icon-img {
  object-fit: contain;
}

.faq-q-text {
  flex: 1;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #06101c;
  line-height: 1.45;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  color: #60697b;
  background: transparent;
  border: 1.5px solid #60697b;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    font-size 0.2s ease;
}

.faq-item.open .faq-toggle,
.faq-item.sibling-open .faq-toggle {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s ease;
}

.faq-item.open .faq-a,
.faq-item.sibling-open .faq-a {
  max-height: 500px;
}

.faq-a-inner {
  padding: 0 50px 20px;
  font-size: 14px;
  color: #475569;
  line-height: 1.75;
  font-weight: 400;
}

.faq-a-inner a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.faq-a-inner strong {
  color: #2a3b50;
  font-weight: 600;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.faq-cta {
  margin-top: 32px;
  background: #ffffff;
  border: 1.5px solid #e2eaf6;
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.faq-cta-left strong {
  font-size: 16px;
  font-weight: 700;
  color: #06101c;
  display: block;
  margin-bottom: 4px;
}

.faq-cta-left span {
  font-size: 14px;
  color: #475569;
}

.faq-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-chat {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.btn-chat:hover {
  background: #0d35b3;
}

.btn-kb {
  background: #f7f9ff;
  color: #2a3b50;
  border: 1.5px solid #e2eaf6;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-kb:hover {
  background: #ebf0ff;
}

@media (max-width: 767px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-q {
    padding: 18px;
  }

  .faq-a-inner {
    padding: 0 18px 18px 76px;
  }
}

/* ── EDITOR'S CHOICE ── */
.editors-section {
  padding: 80px 60px;
  background: #f4f7fe;
  text-align: center;
}

/* ── EDITOR'S CHOICE CARDS (new) ── */
.ec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
  text-align: left;
}

.ec-top-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: center;
}

/* PRICE BLOCK */
.ec-price-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  padding: 4px 6px;
}

.ec-price-pre {
  font-size: 18px;
  font-weight: 700;
  color: #0d1339;
  line-height: 1;
  margin-bottom: 4px;
}

.ec-price-main {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 0.95;
}

.ec-price-main strong {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.025em;
  background: #141752;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ec-price-main em {
  font-style: normal;
  font-size: 18px;
  font-weight: 800;
  color: #0d1339;
  letter-spacing: 0.02em;
}

.ec-price-post {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.14em;
  margin-top: 6px;
}

/* OFFER LABEL PILL (top-left of card) */
.ec-offer-label {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  padding: 6px 15px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.28);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ec-offer-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.feature-light-card:hover .ec-offer-label {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
}

/* FEATURES 2x2 */
.ec-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  padding: 24px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.ec-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #334155;
  font-weight: 500;
}

.ec-feat i {
  color: #4f46e5;
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.ec-guarantee {
  text-align: center;
  font-size: 11px;
  color: #64748b;
  margin: 16px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

.ec-guarantee i {
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .ec-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 540px) {
  .editors-section {
    padding: 60px 16px;
  }

  .ec-top-row {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .ec-price-main strong {
    font-size: 42px;
  }

  .ec-features {
    grid-template-columns: 1fr;
  }
}

.top-vps-head {
  text-align: center;
  margin-bottom: 40px;
}

.top-vps-list {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.1s;
}

.tv-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.tv-btn i {
  font-size: 13px;
}

.tv-btn-blue {
  background: #2563eb;
}

.tv-btn-blue:hover {
  background: #1d4ed8;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tv-cta .tv-btn {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 720px) {
  .top-vps-section {
    padding: 56px 0;
  }

  .tv-cta .tv-btn {
    width: 100%;
  }

  .top-vps-trust {
    gap: 14px;
  }
}

/* ── PROVIDER DETAILED REVIEW CARD ── */
.provider-review-section {
  background: #fff;
}

.features-title {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin: 14px 0;
  line-height: 1.3;
}

.features-title span {
  color: #2563ff;
}

.claim-deal-btn .arrow {
  font-size: 18px;
  line-height: 1;
}

.pr-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e6e8f0;
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* Top section: 3 columns */
.pr-top {
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  gap: 28px;
  align-items: start;
  margin-top: 70px;
}

/* LEFT column — brand tile + rating */
.pr-brand-col {
  text-align: center;
}

.pr-brand-rating {
  margin-top: 14px;
}

.pr-stars {
  color: #ffc107;
  font-size: 15px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.pr-reviews {
  margin: 6px 0 0;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
}

/* CENTER column — title, description, tags */
.pr-content-col {
  min-width: 0;
}

.pr-title {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
  margin: 0 0 32px;
  border: 1px solid #3c47fb;
  border-radius: 20px 0 20px;
  background: #f4f6ff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 21px;
}

.pr-desc {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 14.5px;
  line-height: 1.65;
}

.pr-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  width: 90%;
}

.pr-tag {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.pr-tag i {
  color: #2563ff;
}

/* RIGHT column — price + CTA + coupon */
.pr-price-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.pr-pick-badge {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f4f6ff;
  color: #2563ff;
  border: 1px solid #2563ff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 8px 16px;
  border-radius: 0px 18px 0px 19px;
  margin-bottom: 8px;
  position: absolute;
  top: 0;
  right: 0;
}

.pr-pick-badge i {
  font-size: 12px;
}

.pr-was-price {
  margin: 0;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
  /* text-decoration: line-through; */
  margin-top: 4px;
}

.pr-guarantee {
  font-size: 12px;
  margin-top: 8px;
}

.pr-price-now {
  margin: 2px 0 4px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.pr-price-per {
  color: #6b7280;
  font-size: 15px;
  font-weight: 600;
}

.pr-save {
  margin: 0 0 12px;
  color: #0f8a4f;
  font-size: 12.5px;
  font-weight: 600;
}

.pr-save i {
  font-size: 11px;
  margin-right: 2px;
}

.pr-btn-primary,
.pr-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}

.pr-btn-primary {
  background: #2563ff;
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 255, 0.25);
  margin-bottom: 8px;
  font-size: 12px;
  padding: 8;
}

.pr-btn-primary:hover {
  background: #1e4fd9;
  color: #fff;
  transform: translateY(-1px);
}

.pr-btn-outline {
  color: #2563ff;
  padding: 8px;
  font-size: 12px;
}

.pr-btn-outline:hover {
  background: #f4f6ff;
  color: #2563ff;
}

.pr-btn-primary .arrow {
  font-size: 16px;
}

/* STATS ROW (icon + text, no progress bars) */
.pr-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: #f4f6ff;
  border-radius: 14px;
  padding: 18px 26px;
  margin-top: 24px;
}

.pr-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.pr-stat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563ff;
  box-shadow: 0 2px 8px rgba(37, 99, 255, 0.12);
}

.pr-stat-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.pr-stat-text {
  min-width: 0;
}

.pr-stat-label {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.pr-stat-val {
  margin: 2px 0 0;
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

/* FEATURES grid */
.pr-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
  margin-top: 0px;
  padding-top: 4px;
}

.pr-feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-feat-list li {
  position: relative;
  padding: 6px 0 6px 0px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.pr-feat-list li i {
  color: #3c47fb;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .pr-top {
    grid-template-columns: 180px 1fr 220px;
    gap: 20px;
  }

  .pr-stats {
    gap: 14px;
    padding: 16px;
  }

  .pr-stat-val {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .pr-tags {
    gap: 12px;
    width: 100%;
  }

  .pr-card {
    padding: 22px 20px;
  }

  .pr-brand-col {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .pr-brand-rating {
    margin-top: 0;
  }

  .pr-price-col {
    border-top: 1px solid #eef0f8;
    padding-top: 18px;
  }

  .pr-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .pr-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .pr-brand-col {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pr-title {
    font-size: 15px;
    font-weight: 700;
  }
  .pr-desc {
    font-size: 14px;
  }

  .pr-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pr-features {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pr-price-now {
    font-size: 34px;
  }
}

.sale-row .col-md-3 {
  position: relative;
}

@media (max-width: 1400px) {
  .nav-dropdown-menu {
    width: min(680px, 82vw);
  }

  .hero-main-img {
    max-width: 540px;
  }
}

@media (max-width: 1199px) {
  .nav-dropdown-menu {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .pr-features,
  .features-title {
    display: none;
  }

  .plan-choice-grid,
  .plan-choice-cta {
    grid-template-columns: 1fr;
  }

  .pr-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-main-img {
    max-width: 400px;
  }

  .pr-stat-icon {
    width: 44px;
    height: 44px;
  }

  .pr-stat {
    gap: 8px;
  }

  .pr-stat-label {
    font-size: 12px;
  }

  .pr-stat-val {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .ec-brand-block img {
    width: 75% !important;
  }

  .pr-pick-badge {
    display: none;
  }

  .d-md-grid {
    display: grid !important;
  }

  .app-name {
    font-size: 0.75rem;
  }

  .app-cat {
    font-size: 0.65rem;
  }

  .testi-grid-section {
    padding: 70px 0;
  }

  .testi-rating-num {
    font-size: 2.4rem;
  }

  .tools_grid {
    gap: 6px;
  }
  .app-card {
    border-radius: 12px;
    padding: 6px;
    height: 115px;
    width: 115px;
  }

  .app-card img {
    width: 60% !important;
}
  .mosaic-card {
    padding: 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-sub1 {
    font-size: 20px;
  }

  .achieve-bar {
    flex-direction: column;
    padding: 36px 28px;
    gap: 0;
    border-radius: 18px;
  }

  .achieve-stat {
    padding: 22px 0;
    width: 100%;
  }

  .achieve-divider {
    width: 60%;
    height: 1px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .achieve-bar {
    padding: 36px 28px;
  }

  .achieve-stat-value {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {
  .hero-domain-search {
    min-height: auto;
    gap: 10px;
    padding: 8px;
  }

  .hero-domain-search__button {
    min-width: 82px;
    min-height: 40px;
    font-size: 13px;
  }
}

/* ── NGO Use-Case Bento Grid ── */
.ngo-usecase-section {
  background: #fff;
}

.ngo-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-template-areas:
    "head  card1 card1"
    "card2 card3 card4"
    "card2 card3 card4";
}

.ngo-usecase-head {
  grid-area: head;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .ngo-usecase-head .section_heading {
  margin-bottom: 14px;
} */

.ngo-usecase-subtext {
  font-size: 16px;
  color: #4a6278;
  line-height: 1.7;
  margin: 0;
}

.ngo-usecase-card {
  background: #fff;
  border: 1px solid #e2ebf9;
  border-radius: 24px;
  padding: 26px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
}

.ngo-usecase-card-1 {
  grid-area: card1;
}
.ngo-usecase-card-2 {
  grid-area: card2;
}
.ngo-usecase-card-3 {
  grid-area: card3;
}
.ngo-usecase-card-4 {
  grid-area: card4;
}

.ngo-usecase-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(60, 71, 251, 0.12);
}

.ngo-usecase-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ngo-usecase-title {
  font-size: 19px;
  font-weight: 700;
  color: #06101c;
  margin-bottom: 8px;
}

.ngo-usecase-desc {
  font-size: 16px;
  color: #4a6278;
  line-height: 1.6;
  margin: 0;
  font-family: "DM Sans", sans-serif;
}

.ngo-usecase-media {
  border-radius: 16px;
  overflow: hidden;
  background: #ecf3ff;
  flex-shrink: 0;
}

.ngo-usecase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* image on the right, text on the left */
.ngo-usecase-card.media-right {
  flex-direction: row;
  align-items: center;
}

.ngo-usecase-card.media-right .ngo-usecase-body {
  flex: 1;
}

.ngo-usecase-card.media-right .ngo-usecase-media {
  width: 42%;
  align-self: stretch;
}

/* image at the top, text below */
.ngo-usecase-card.media-top {
  flex-direction: column;
}

.ngo-usecase-card.media-top .ngo-usecase-media {
  order: -1;
  width: 100%;
  height: 150px;
}

@media (max-width: 991.98px) {
  .ngo-usecase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "head  head"
      "card1 card1"
      "card2 card3"
      "card4 card4";
  }

  .ngo-usecase-card.media-right .ngo-usecase-media {
    width: 40%;
  }
}

@media (max-width: 575.98px) {
  .ngo-usecase-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "card1"
      "card2"
      "card3"
      "card4";
  }

  .ngo-usecase-card.media-right {
    flex-direction: column;
    align-items: stretch;
  }

  .ngo-usecase-card.media-right .ngo-usecase-media {
    order: -1;
    width: 100%;
    height: 160px;
  }
}
