/* FONTS ================================================= */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-var.woff2') format('woff2');
}

/* DESIGN TOKENS ========================================= */
/* --ink: #0A0C08; */
:root {
  --bg-light: #F5F6F2;
  --bg-soft: #EDF5DC;
  --ink: #0d1108;
  --green-700: #4D7C0F;
  --green-600: #65A30D;
  --lime-400: #C7F53F;
  --ink-90: rgba(10, 12, 8, 0.9);
  --ink-70: rgba(10, 12, 8, 0.7);
  --ink-50: rgba(10, 12, 8, 0.5);
  --ink-20: rgba(10, 12, 8, 0.12);
  --ink-10: rgba(10, 12, 8, 0.07);
  --paper-90: #f5f6f2eb;
  --paper-70: rgba(245, 246, 242, 0.7);
  --paper-50: rgba(245, 246, 242, 0.5);
  --paper-15: rgba(245, 246, 242, 0.15);
  --paper-08: rgba(245, 246, 242, 0.08);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fs-h1: clamp(2rem, 1.55rem + 2.2vw, 3rem);
  --fs-h2: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
  --fs-h3: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-badge: 0.75rem;
  --lh-heading: 1.2;
  --lh-body: 1.65;
  --space-section-y: 80px;
  --space-heading-gap: 1rem;
  --space-content-gap: 3rem;
  --space-card-gap: 1.5rem;
  --radius-sm: 0.625rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;
  --danger: #C4574A;
  --warning: #D9A23B;
}

/* RESET & BASE ELEMENTS ================================= */

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-90);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: var(--lh-heading);
  color: var(--ink);
  font-weight: 600;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  color: var(--ink-70);
}

a {
  color: inherit;
  text-decoration: none;

}

ul {
  list-style: none;
  padding: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
}

/* LAYOUT UTILITIES ====================================== */

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

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

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* TYPOGRAPHY & SECTION INTROS =========================== */

.section_heading {
  font-weight: 800;
  color: rgb(13, 17, 8);
  letter-spacing: -0.025em;
}

.section_para {
  font-size: 16px;
  color: rgb(90, 97, 84);
  line-height: 1.65;
}

.section-intro {
  max-width: 991px;
}

.section-intro--sm {
  max-width: 991;
}

/* LEGAL / POLICY CONTENT ================================ */

.legal-content {
  max-width: 760px;
  color: var(--ink);
}

.legal-content h2 {
  font-size: 1.375rem;
  margin: 2.5rem 0 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--ink);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  list-style: disc;
  margin: 0 0 1.25rem 1.25rem;
}

.legal-content ul:last-child {
  margin-bottom: 0;
}

.legal-content li {
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.legal-content li:last-child {
  margin-bottom: 0;
}

.legal-content__heading {
  font-weight: 700;
}

.policy-quicklinks {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--ink-10);
  font-size: var(--fs-small);
  color: var(--ink-70);
}

.policy-quicklinks a:hover {
  color: var(--green-700);
}

.policy-content {
  max-width: 980px;
}

.policy-rows {
  border-top: 1px solid var(--ink-10);
}

.policy-row {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--ink-10);
}

.policy-row__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--ink);
}

.policy-row__content p {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  color: var(--ink-70);
  margin-bottom: 1rem;
}

.policy-row__content p:last-child {
  margin-bottom: 0;
}

.policy-row__content ul {
  list-style: disc;
  margin: 0 0 1rem 1.25rem;
}

.policy-row__content ul:last-child {
  margin-bottom: 0;
}

.policy-row__content li {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  color: var(--ink-70);
  margin-bottom: 0.4rem;
}

.policy-row__content li:last-child {
  margin-bottom: 0;
}

.policy-row__content li ul {
  margin-top: 0.4rem;
  margin-bottom: 0;
  list-style: circle;
}

.policy-alert {
  background: rgba(196, 87, 74, 0.06);
  border: 1px solid rgba(196, 87, 74, 0.28);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  color: var(--ink-70);
}

.policy-alert strong {
  color: var(--ink);
}

@media (max-width: 767.98px) {
  .policy-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* BADGE ================================================= */

.badge {
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: var(--fs-badge);
  letter-spacing: 0.04em;
  color: var(--green-700);
  background: var(--bg-soft);
  border: 1px solid var(--ink-10);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-heading-gap);
}

.badge__dot {
  width: 0.4rem;
  height: 0.4rem;
  background: var(--lime-400);
}

.badge__icon {
  color: var(--green-700);
}

/* BUTTONS =============================================== */

.btn {
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  padding: 11px 13px;
  transition: transform 0.3s cubic-bezier(.16, 1, .3, 1), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;

}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  position: relative;
  overflow: hidden;
  background: var(--lime-400);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(101, 163, 13, .26);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .42) 50%, transparent 75%);
  background-size: 220% 100%;
  background-position: 160% 0;
  transition: background-position .7s ease;
}

.btn--primary:hover::before {
  background-position: -60% 0;
}

.btn--primary:hover {
  background: #D4FF52;
  color: #131A02;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(101, 163, 13, .36);
}

.btn--dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--bg-light);
  box-shadow: 0 6px 20px rgba(13, 17, 8, .22);
}

.btn--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .42) 50%, transparent 75%);
  background-size: 220% 100%;
  background-position: 160% 0;
  transition: background-position .7s ease;
}

.btn--dark:hover::before {
  background-position: -60% 0;
}

.btn--dark:hover {
  background: #17200D;
  color: var(--lime-400);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(13, 17, 8, .32);
}

.btn--outline {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #D3DBC4;
  padding: 13px 25px;
}

.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .42) 50%, transparent 75%);
  background-size: 220% 100%;
  background-position: 160% 0;
  transition: background-position .7s ease;
}

.btn--outline:hover::before {
  background-position: -60% 0;
}

.btn--outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--lime-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 17, 8, .2);
}

/* GRID UTILITIES ======================================== */

.grid {
  gap: var(--space-card-gap);
}

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

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

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

/* MISC UTILITIES ======================================== */

.brand-logo {
  height: 3rem;
  width: auto;
}

.stack>*+* {
  margin-top: var(--space-heading-gap);
}

.actions {

  gap: 1rem;

}

.section-glow {
  position: relative;
}

.section-glow::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  top: -8.75rem;
  right: auto;
  left: 12%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(199, 245, 63, 0.13), transparent 66%);
}

.section-glow>.container {
  z-index: 1;
}

/* BREADCRUMB ============================================= */

.breadcrumb-nav {
  padding-top: 1rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5625rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #8B937D;
}

.breadcrumb-list a {
  color: #8B937D;
  transition: color 0.25s ease;
}

.breadcrumb-list a:hover {
  color: var(--green-700);
}

.breadcrumb-list__current {
  color: #3F6410;
}

.breadcrumb-list__sep {
  display: flex;
  align-items: center;
  color: #8B937D;
  opacity: .75;
}

.breadcrumb-list__sep svg {
  width: 9px;
  height: 9px;
  transform: rotate(-90deg);
}

.forex-breadcrumb-glow::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 245, 63, 0.24), transparent 66%);
  pointer-events: none;
  z-index: 0;
}

.forex-breadcrumb-glow .container {
  position: relative;
  z-index: 1;
}

/* BOOTSTRAP OVERRIDES =================================== */

:root {
  --bs-primary: var(--green-600);
  --bs-body-font-family: var(--font-body);
  --bs-body-bg: var(--bg-light);
  --bs-body-color: var(--ink-90);
  --bs-link-color: var(--green-700);
  --bs-link-hover-color: var(--green-600);
  --bs-border-radius: var(--radius-sm);
  --bs-border-radius-lg: var(--radius);
  --bs-border-radius-pill: var(--radius-pill);
}

/* NAVBAR ================================================ */

.navbar {
  --bs-navbar-padding-y: 1rem;
  --bs-navbar-color: var(--ink-70);
  --bs-navbar-hover-color: var(--ink);
  --bs-navbar-active-color: var(--ink);
  --bs-navbar-toggler-border-color: var(--ink-10);

  border-bottom: 1px solid rgb(233, 237, 225);
  z-index: 20;
  box-shadow: rgba(13, 17, 8, 0) 0px 0px 0px;
  background: #fcfdfa;
  padding: 10px 0px;
}


.navbar .navbar-nav {
  gap: 1.875rem !important;
}

.navbar .nav-link {
  gap: 0.35rem;
  color: #3B4433;
  transition: color 0.28s cubic-bezier(.16, 1, .3, 1);
}

.navbar .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--lime-400));
  transition: right 0.34s cubic-bezier(.16, 1, .3, 1);
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
  right: 0;
}

.login_nav_btn {
  gap: 9px;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease, background-color .3s ease, color .3s ease, border-color .3s ease;
  border-radius: 10px;
}

.nav-link .chevron {
  width: 1rem;
  height: 1rem;
  color: var(--green-700);
  transition: transform 0.2s ease;
}

.nav-item.dropdown:hover .chevron {
  transform: rotate(180deg);
}

@media (min-width: 1200px) {
  .mega-menu-wrap {
    position: absolute;
    top: 100%;
    left: -2.5rem;
    padding-top: 1.125rem;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.26s ease, transform 0.26s cubic-bezier(.16, 1, .3, 1), visibility 0s linear 0.26s;
  }

  .nav-item.dropdown:hover .mega-menu-wrap,
  .nav-item.dropdown:focus-within .mega-menu-wrap,
  .nav-item.dropdown.is-open .mega-menu-wrap {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: opacity 0.26s ease, transform 0.26s cubic-bezier(.16, 1, .3, 1);
  }

  .nav-item.dropdown:focus-within .chevron,
  .nav-item.dropdown.is-open .chevron {
    transform: rotate(180deg);
  }
}

@media (max-width: 1199.98px) {
  .mega-menu-wrap {
    display: none;
  }

  .nav-item.dropdown.is-open .mega-menu-wrap {
    display: block;
  }

  .nav-item.dropdown.is-open .chevron {
    transform: rotate(180deg);
  }
}

.offcanvas {
  --bs-offcanvas-width: 20rem;
  --bs-offcanvas-bg: var(--bg-light);
  --bs-offcanvas-border-color: var(--ink-10);
}

/* ANNOUNCEMENT BAR ====================================== */

.announce-bar {
  background: var(--ink);
  color: #c3cbb2;
  font-size: 12px;
  padding-block: 0.4rem;
  font-weight: 500;
}

.announce-bar__dot {
  width: 0.4rem;
  height: 0.4rem;
  background: var(--lime-400);
}

.announce-bar__cta {
  color: var(--lime-400);
  gap: 0.35rem;
}

@media (max-width: 767.98px) {
  .announce-bar .container {
    display: block !important;
    text-align: center;
  }

  .announce-bar .container > * {
    display: inline;
  }

  .announce-bar__dot {
    display: inline-block !important;
    vertical-align: middle;
    margin: 0 0.3rem;
  }

  .announce-bar__cta {
    display: inline !important;
    margin-left: 0.4rem;
  }

  .announce-bar__cta svg {
    display: inline-block;
    width: 12px;
    height: 12px;
    vertical-align: middle;
    margin-left: 0.2rem;
  }
}

/* MEGA MENU ============================================= */

.mega-menu {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 70px rgba(10, 12, 8, 0.18);
  min-width: 34rem;
  padding: 1.5rem;
}

@media (max-width: 1199.98px) {
  .mega-menu {
    background: none;
    border: none;
    box-shadow: none;
    min-width: 0;
    padding: 0.5rem 0 0.5rem 1rem;
    margin-top: 0.25rem;
  }
}

.mega-menu__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: var(--ink-50);
  margin-bottom: 1rem;
}

.mega-menu__item {
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--ink);

  gap: 0.75rem;
  transition: background-color 0.22s ease, transform 0.22s cubic-bezier(.16, 1, .3, 1);
}

.mega-menu__item:hover {
  background: var(--bg-soft);
  transform: translateX(3px);
}

.mega-menu__flag {
  width: 1.75rem;
  height: 1.25rem;
  /* object-fit: cover; */
  border-radius: 3px;
  border: 1px solid var(--ink-10);

}

.mega-menu__icon {
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--green-700);

}

.mega-menu__title {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  line-height: 1.2;
}

.mega-menu__meta {
  font-size: 11px;
  color: #8b937d;
  font-weight: 500;
}

.mega-menu__cta {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  gap: 1rem;
  margin-top: 0.5rem;
}

.mega-menu__cta strong {
  font-family: var(--font-heading);
  color: var(--bg-light);
}

.mega-menu__cta span {
  font-size: .75rem;
  color: #96a183;
}

.mega-menu__cta svg {
  color: var(--lime-400);
}

/* HERO ================================================== */

/* .hero__section padding now comes from .pt-80 .pb-80 utility classes in markup */

.hero__section::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -140px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 245, 63, 0.24), transparent 66%);
  pointer-events: none;
}

.hero__section::after {
  content: '';
  position: absolute;
  bottom: -220px;
  left: -160px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101, 163, 13, 0.13), transparent 68%);
  pointer-events: none;
}

.hero__section>.container {
  z-index: 1;
}

.hero-rating {
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--ink-10);
  color: var(--green-700);
  padding: 0.4rem 0.4rem 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-badge);
  margin-bottom: var(--space-heading-gap);
  box-shadow: 0 3px 14px rgba(10, 12, 8, 0.05);
}

.hero-rating__stars {

  gap: 0.1rem;
  color: #E8A33D;
}

.hero-rating__badge {
  background: var(--bg-soft);
  color: var(--green-700);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
}

.hero_heading {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: rgb(13, 17, 8);
  margin: 0px 0px 22px;
  letter-spacing: -0.028em;
  overflow-wrap: break-word;
  animation: 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.06s 1 normal both running fadeUp;
}

.hero-stat {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 0.7rem .9rem;
}

.hero-stat__value {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--ink);
  line-height: 24px;
}

.hero-stat__label {
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--ink-50);
}

.hero-stat__label svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--green-700);

}

/* BUY RDP HERO ORDER CARD ================================ */

.rdp-order-card-wrap {
  margin: 0 auto 2rem;
  max-width: 26rem;
}

.rdp-order-card {
  background: var(--ink);
  border: 1px solid var(--paper-15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.rdp-order-card__head {
  margin-bottom: 1.25rem;
}

.rdp-order-card__status {
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E9EEDC;
}

.rdp-order-card__dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--lime-400);
  box-shadow: 0 0 0 4px rgba(199, 245, 63, 0.18);
}

.rdp-order-card__time {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lime-400);
}

.rdp-order-card__storage {
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
}

.rdp-order-card__storage-track {
  height: 0.4rem;
  background: var(--paper-15);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.rdp-order-card__storage-bar {
  display: block;
  height: 100%;
  background: var(--lime-400);
  border-radius: var(--radius-pill);
}

.rdp-order-card__storage-note {
  font-size: 0.7rem;
  color: var(--paper-50);
}

.rdp-order-card__rows {
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.rdp-order-card__row {
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  gap: 0.5rem;
}

.rdp-order-card__row-label {
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper-50);
}

.rdp-order-card__row-label svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--lime-400);
  flex-shrink: 0;
}

.rdp-order-card__row-value {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-light);
  text-align: right;
}

.rdp-order-card__footer {
  border-top: 1px solid var(--paper-15);
  padding-top: 1rem;
  gap: 0.75rem;
}

.rdp-order-card__id {
  font-size: 0.75rem;
  color: var(--paper-50);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rdp-order-card__admin-badge {
  gap: 0.35rem;
  background: rgba(199, 245, 63, 0.12);
  border: 1px solid rgba(199, 245, 63, 0.3);
  color: var(--lime-400);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.rdp-order-float {
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  max-width: 15.5rem;
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  gap: 0.75rem;
  box-shadow: 0 20px 45px rgba(10, 12, 8, 0.16);
}

.rdp-order-float__icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--bg-soft);
  color: var(--green-700);
  flex-shrink: 0;
}

.rdp-order-float__title {
  font-size: 0.85rem;
  color: var(--ink);
}

.rdp-order-float__text {
  font-size: 0.75rem;
  color: var(--ink-50);
}

@media (max-width: 991.98px) {
  .rdp-order-float {
    position: static;
    margin-top: 1.25rem;
    max-width: none;
  }
}

/* PLAN RECOMMENDER ======================================= */

.recommender-chip {
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.recommender-chip:hover {
  border-color: var(--green-600);
}

.recommender-chip__icon {
  width: 2.1rem;
  height: 2.1rem;
  background: var(--bg-soft);
  color: var(--green-700);
  border-radius: var(--radius-sm);
}

.recommender-chip__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--ink);
}

.recommender-chip__arrow {
  color: var(--ink-50);
  transition: transform .25s ease, color .25s ease;
}

.recommender-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(13, 17, 8, .18);
}

.recommender-chip.is-active .recommender-chip__icon {
  background: rgba(199, 245, 63, 0.16);
  color: var(--lime-400);
}

.recommender-chip.is-active .recommender-chip__label {
  color: #fff;
}

.recommender-chip.is-active .recommender-chip__arrow {
  color: var(--lime-400);
  transform: translateX(2px);
}

.recommender-panel {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(10, 12, 8, 0.08);
  padding: 1.75rem;
  gap: 1.75rem;
}

.recommender-panel__info {
  min-width: 0;
}

.recommender-panel__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--bg-soft);
  color: var(--green-700);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.recommender-panel__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink-50);
  margin-bottom: 0.35rem;
}

.recommender-panel__title {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}

.recommender-panel__why {
  color: var(--ink-70);
  margin-bottom: 1.1rem;
}

.recommender-panel__points {
  gap: 0.6rem;
}

.recommender-panel__points li {
  gap: 0.7rem;
  color: var(--ink-70);
  font-size: var(--fs-small);
}

.recommender-panel__check {
  width: 1.2rem;
  height: 1.2rem;
  background: var(--bg-soft);
  color: var(--green-700);
}

.recommender-plan {
  width: 15.5rem;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.recommender-plan__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--paper-50);
  margin-bottom: 0.5rem;
}

.recommender-plan__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.recommender-plan__price {
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lime-400);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--paper-15);
}

.recommender-plan__price span:last-child {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--paper-50);
}

.recommender-plan__specs {
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.recommender-plan__specs li {
  gap: 0.55rem;
  font-size: var(--fs-small);
  color: #E9EEDC;
}

.recommender-plan__specs svg {
  color: var(--lime-400);
}

.recommender-plan__loc {
  gap: 0.4rem;
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  color: var(--paper-70);
  font-size: 0.72rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.recommender-plan__loc svg {
  color: var(--lime-400);
}

@media (max-width: 991.98px) {
  .recommender-panel {
    flex-direction: column;
  }

  .recommender-plan {
    width: 100%;
  }
}

/* PURPOSE-BUILT RDP CARDS + OS PANEL ====================== */

.purpose-card {
  padding: 1.5rem 1.35rem;
  text-decoration: none;
}

.purpose-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--bg-soft);
  color: var(--green-700);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.purpose-card__title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.purpose-card__desc {
  font-size: 0.82rem;
  color: var(--ink-70);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.purpose-card__foot {
  border-top: 1px solid var(--ink-10);
  padding-top: 0.9rem;
}

.purpose-card__foot-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-50);
}

.purpose-card__foot-plan {
  font-size: 0.85rem;
  color: var(--green-700);
}

.purpose-card__arrow {
  color: var(--ink-50);
  transition: transform 0.25s ease, color 0.25s ease;
}

.purpose-card:hover .purpose-card__arrow {
  color: var(--green-600);
  transform: translateX(3px);
}

.os-panel {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(10, 12, 8, 0.06);
  padding: 2rem;
}

.os-panel__head {
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.os-panel-card {
  background: var(--bg-light);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 1.1rem 0.75rem;
  gap: 0.3rem;
}

.os-panel-card__logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  margin-bottom: 0.4rem;
}

.os-panel-card__name {
  font-size: 0.85rem;
  color: var(--ink);
}

.os-panel-card__note {
  font-size: 0.72rem;
  color: var(--ink-50);
}

@media (max-width: 767.98px) {
  .os-panel {
    padding: 1.5rem;
  }
}

/* PAYMENTS PANEL + GUARANTEE CARDS ======================== */

.payments-panel {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(10, 12, 8, 0.06);
  padding: 2rem;
  margin-bottom: 0.5rem;
}

.payments-panel__points {
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.payments-panel__points li {
  gap: 0.7rem;
  color: var(--ink-70);
  font-size: var(--fs-small);
}

.payments-panel__check {
  width: 1.2rem;
  height: 1.2rem;
  background: var(--bg-soft);
  color: var(--green-700);
  flex-shrink: 0;
}

.payment-method-card {
  background: var(--bg-light);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 0.9rem 0.75rem;
  gap: 0.4rem;
}

.payment-method-card__logo {
  height: 1.5rem;
}

.payment-method-card__logo img {
  max-height: 100%;
  width: auto;
}

.payment-method-card__logo svg {
  color: var(--green-700);
}

.payment-method-card__name {
  font-size: 0.8rem;
  color: var(--ink);
}

.payment-method-card__status {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green-700);
}

.guarantee-card {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.guarantee-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--bg-soft);
  color: var(--green-700);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.guarantee-card__stat {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--ink);
  line-height: 1.1;
}

.guarantee-card__label {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.guarantee-card__desc {
  color: var(--ink-70);
  font-size: var(--fs-small);
  margin-bottom: 1.1rem;
}

.guarantee-card__points {
  gap: 0.55rem;
  border-top: 1px solid var(--ink-10);
  padding-top: 1.1rem;
}

.guarantee-card__points li {
  gap: 0.6rem;
  font-size: var(--fs-small);
  color: var(--ink-70);
}

.guarantee-card__check {
  width: 1.05rem;
  height: 1.05rem;
  background: var(--bg-soft);
  color: var(--green-700);
  flex-shrink: 0;
}

.guarantee-card--dark {
  background: var(--ink);
  border-color: var(--ink);
}

.guarantee-card--dark .guarantee-card__icon {
  background: rgba(199, 245, 63, 0.14);
  color: var(--lime-400);
}

.guarantee-card--dark .guarantee-card__stat {
  color: var(--lime-400);
}

.guarantee-card--dark .guarantee-card__label {
  color: #fff;
}

.guarantee-card--dark .guarantee-card__desc {
  color: var(--paper-70);
}

.guarantee-card--dark .guarantee-card__points {
  border-top-color: var(--paper-15);
}

.guarantee-card--dark .guarantee-card__points li {
  color: #D5DCC6;
}

.guarantee-card--dark .guarantee-card__check {
  background: rgba(199, 245, 63, 0.14);
  color: var(--lime-400);
}

@media (max-width: 767.98px) {
  .payments-panel {
    padding: 1.5rem;
  }
}

/* REVIEW HERO CARD ======================================= */

.review-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-50);
  margin-bottom: 1rem;
}

.review-hero-card {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(10, 12, 8, 0.08);
}

.review-hero-card__score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.review-hero-card__stars {
  gap: 0.1rem;
  color: #E8A33D;
  margin-bottom: 0.3rem;
}

.review-hero-card__meta {
  font-size: var(--fs-small);
  color: var(--ink-50);
}

.review-bars {
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.review-bar {
  gap: 0.75rem;
}

.review-bar__label {
  width: 3.25rem;
  font-size: var(--fs-small);
  color: var(--ink-70);
  flex-shrink: 0;
}

.review-bar__count {
  width: 2.25rem;
  text-align: right;
  font-size: var(--fs-small);
  color: var(--ink-50);
  flex-shrink: 0;
}

.review-hero-card__stats {
  border-top: 1px solid var(--ink-10);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-hero-card__fineprint {
  gap: 0.4rem;
  color: var(--ink-50);
  font-size: var(--fs-badge);
  margin-top: 0.75rem;
}

.review-hero-card__fineprint svg {
  color: var(--green-600);
  flex-shrink: 0;
}

/* TRUST MARQUEE ========================================= */

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

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

.trust-marquee {
  background: var(--bg-light);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  padding-block: 1.5rem;
}

.trust-marquee__fade {
  top: 0;
  bottom: 0;
  width: 7.5rem;
  z-index: 2;
  pointer-events: none;
}

.trust-marquee__fade--start {
  left: 0;
  background: linear-gradient(90deg, var(--bg-light), transparent);
}

.trust-marquee__fade--end {
  right: 0;
  background: linear-gradient(270deg, var(--bg-light), transparent);
}

.trust-marquee__track {
  width: max-content;
  animation: marquee 34s linear infinite;
}

.trust-marquee__item {
  gap: 0.65rem;
  font-size: var(--fs-small);
  color: var(--ink-70);
  padding-inline: 1.75rem;
}

.trust-marquee__item svg {
  color: var(--green-600);
}

.trust-marquee__item strong {
  font-family: var(--font-heading);
  color: var(--ink);
}

.trust-marquee__item--trustpilot svg {
  color: #00B67A;
}

.trust-marquee__item--hostadvice svg {
  color: #E8A33D;
}

/* PRICING — CARD GRID (homepage) ======================== */

.pricing-section {
  background: linear-gradient(0deg,
      #ffffff 0%,
      #f5f8ed 30%,
      #eaeFE0 60%,
      #dce8c9 100%);
}

.pricing-cycle {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-pill);
  padding: 5px;
  gap: 4px;
  box-shadow: 0 3px 14px rgba(13, 17, 8, 0.05);
  margin-top: 1.5rem;
}

.pricing-cycle__btn {
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  padding: 0.2rem 1.2rem;
  border-radius: var(--radius-pill);
  color: var(--ink-50);
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-cycle__btn.is-active {
  background: var(--ink);
  color: var(--bg-light);
  box-shadow: 0 6px 18px rgba(13, 17, 8, 0.22);
}

.pricing-cycle__save {
  background: var(--bg-soft);
  color: var(--green-700);
  font-size: 0.66rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
}

.pricing-cycle__btn.is-active .pricing-cycle__save {
  background: var(--lime-400);
  color: var(--ink);
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}

.pricing-card--featured {
  background: var(--ink);
  border-color: var(--ink);
}

.pricing-card__badge {
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  gap: 0.4rem;
  background: var(--lime-400);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);

}

.pricing-card__name {
  font-size: var(--fs-h3);
  margin-bottom: 0.4rem;
}

.pricing-card--featured .pricing-card__name {
  color: var(--bg-light);
}

.pricing-card__desc {
  font-size: var(--fs-small);
  /* min-height: 2.6rem; */
  margin-bottom: 1.25rem;
}

.pricing-card--featured .pricing-card__desc {
  color: var(--paper-70);
}

.pricing-card__price {
  gap: 0.4rem;
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.pricing-card--featured .pricing-card__amount {
  color: var(--bg-light);
}

.pricing-card__period {
  font-size: var(--fs-small);
  color: var(--ink-50);
}

.pricing-card--featured .pricing-card__period {
  color: var(--paper-50);
}

.pricing-card__usd {
  font-size: 0.85rem;
  color: var(--green-700);
  margin-top: 0.35rem;
}

.pricing-card__best {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.pricing-card__best-label {
  font-size: 0.68rem;
  color: var(--green-700);
  letter-spacing: 0.04em;
  width: 3.5rem;
}

.pricing-card__best-text {
  font-size: var(--fs-small);
  color: var(--ink-90);
}

.pricing-card__note {
  font-size: 0.75rem;
  color: var(--ink-50);
  margin: 0.5rem 0 1.25rem;
}

.pricing-card--featured .pricing-card__note {
  color: var(--paper-50);
}

.pricing-card__divider {
  border: 0;
  border-top: 1px solid var(--ink-10);
  margin: 1.5rem 0 1.25rem;
}

.pricing-card--featured .pricing-card__divider {
  border-top-color: var(--paper-15);
}

.pricing-card__specs {
  gap: 0.8rem;
}

.pricing-card__specs li {
  gap: 0.65rem;
  font-size: var(--fs-small);
  color: var(--ink-90);
}

.pricing-card--featured .pricing-card__specs li {
  color: var(--paper-90);
}

.pricing-card__specs svg {
  color: var(--green-600);
}

.pricing-card--featured .pricing-card__specs svg {
  color: var(--lime-400);
}

.pricing-cta {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: var(--space-card-gap);
}

.pricing-cta__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--green-700);
  place-items: center;

}

.pricing-cta__title {
  font-family: var(--font-heading);
  color: var(--ink);
}

.pricing-cta__text {
  font-size: var(--fs-small);
}

.pricing-guarantees li {
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--ink-70);
}

.pricing-guarantees svg {
  color: var(--green-700);
}

.pricing-secure__label {
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--ink-50);
}

.pricing-secure__label svg {
  color: var(--green-700);
}

.pricing-secure {
  background: #fff;
  border: 1px solid rgb(220, 227, 205);
  border-radius: 90px;
  padding: 6px 16px;
}

.pricing-secure__badge {
  padding: 0.3rem;
}

.pricing-secure__badge--logo {
  height: 1.75rem;
}

.pricing-secure__badge--logo img {
  height: 100%;
  width: auto;
  max-width: 2.75rem;
  object-fit: contain;
}

/* PRICING — ROW LAYOUT (admin/country pages) ============ */

.plan-row {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.plan-row--featured {
  border: 2px solid var(--lime-400);
  box-shadow: 0 20px 44px rgba(101, 163, 13, 0.14);
}

.plan-row__ribbon {
  top: -0.9rem;
  left: 1.75rem;
  background: var(--lime-400);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
}

.plan-row__tag {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--ink-50);
  background: var(--bg-soft);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.plan-row__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ink);
}

.plan-row__off {
  font-size: 0.68rem;
  color: #fff;
  background: var(--green-600);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
}

.plan-row__stock {
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--danger);
}

.plan-row__price {
  gap: 0.35rem;
}

.plan-row__amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.plan-row__period {
  font-size: var(--fs-small);
  color: var(--ink-50);
}

.plan-row__note {
  font-size: 0.72rem;
  color: var(--ink-50);
  margin-top: 0.3rem;
}

/* Unused: no element in the codebase carries this class (only .plan-row__spec is used)
.plan-row__specs {
  gap: 0.6rem;
}
*/

.plan-row__spec {
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 600;
}

.plan-row__spec svg {
  color: var(--green-600);
}

.plan-row__widget {
  background: var(--bg-light);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
}

.plan-row__widget-label {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--ink-50);
  margin-bottom: 0.4rem;
}

.plan-row__widget-value {
  font-size: 0.85rem;
  color: var(--ink);
}

.plan-row__widget-value svg {
  color: var(--green-600);
}

.plan-row__widget-bar {
  height: 0.4rem;
  background: var(--ink-10);
  border-radius: var(--radius-pill);
  margin-bottom: 0.4rem;
  overflow: hidden;
}

.plan-row__widget-bar-fill {
  height: 100%;
  background: var(--green-600);
  border-radius: var(--radius-pill);
}

/* FEATURE / STEP CARDS ================================== */

.features-section {
  /* padding-block: var(--space-section-y); */
  background: var(--bg-light);
}

.feature-card__icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}

.feature-hero__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;

  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 1.25rem 0 0.7rem;
}

.feature-hero__text {
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.feature-hero__chips {
  gap: 0.6rem;
  margin-top: auto;
}

.feature-hero__chip {
  background: rgba(199, 245, 63, 0.11);
  border: 1px solid rgba(199, 245, 63, 0.26);
  font-size: var(--fs-badge);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
}

.feature-card--stat {
  background: linear-gradient(165deg, var(--bg-soft), #fff 58%);
}

.feature-card__title {
  font-family: var(--font-heading);

  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 1.25rem 0 0.55rem;
}

.feature-card--hero .feature-card__title,
.feature-card--stat .feature-card__title {
  font-size: var(--fs-h3);
}

.feature-card__text {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  margin-bottom: 0px;
}

.feature-card__text a,
.feature-card__without a {
  color: var(--green-700);
  text-decoration: underline;
  text-decoration-color: var(--ink-20);
  text-underline-offset: 2px;
}

.feature-card__text a:hover,
.feature-card__without a:hover {
  color: var(--green-600);
}

.feature-card--stat .feature-card__stats {
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--ink-20);
}

.feature-card__stat-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.feature-card__stat-label {
  font-size: 0.72rem;
  color: var(--ink-50);
  margin-top: 0.25rem;
}

.step-card {
  background: linear-gradient(165deg, var(--bg-soft), #fff 58%);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.875rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.35s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(13, 17, 8, .13);
  border-color: #BFD28F;
}

.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(420px 200px at 50% -10%, rgba(199, 245, 63, .30), transparent 65%);
  transition: opacity .45s ease;
}

.step-card:hover::after {
  opacity: 1;
}

.step-card:hover .feature-icon-tile {
  transform: translateY(-3px) rotate(-6deg) scale(1.06);
}

.step-card__body {
  z-index: 1;
}

.feature-icon-tile {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.8125rem;
  place-items: center;
  margin-bottom: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.feature-icon-tile--dark {
  background: var(--ink);
  color: var(--lime-400);
}

.feature-icon-tile svg,
.feature-icon-tile img {
  width: 2.3125rem;
  height: 2.3125rem;
  object-fit: contain;
}

.step-card__number {
  position: absolute;
  top: 0.9rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--ink-10);
  line-height: 1;
  pointer-events: none;
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--ink);
  margin: 1.25rem 0 0.55rem;
}

.step-card__text {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.step-card__time {

  gap: 0.55rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--ink-20);
  font-size: 0.78rem;
  color: var(--green-700);
}

.feature-card__without {
  color: var(--ink-50);
  font-weight: 600;
}

.feature-card__tagline {
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--ink-20);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-700);
}

.feature-card__tagline-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(101, 163, 13, 0.14);
  color: var(--green-700);
  font-size: 0.65rem;
  line-height: 1;
}

/* GENERIC CARD ========================================== */

.card {

  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(13, 17, 8, 0.13);
  border-color: #bfd28f;
}

.avatar-ring {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.card:hover .avatar-ring {
  transform: scale(1.07);
  box-shadow: 0 0 0 3px var(--lime-400);
}

/* WHO BUYS / PERSONAS =================================== */

.who-buys-section {
  background: #eaefe0;
}

.persona-card {
  padding: 1.875rem 1.75rem;
}

.persona-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--lime-400);
}

.persona-card__plan {
  font-size: 0.68rem;
  color: var(--green-700);
  background: var(--bg-soft);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.persona-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--ink);
}

.persona-card__desc {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.persona-card__loc {
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-50);
}

.persona-card__loc svg {
  color: var(--green-600);
}

.persona-card__link {
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink);
  padding-top: 0.9rem;
  margin-top: auto;
  border-top: 1px dashed var(--ink-20);
}

.persona-card__link svg {
  color: var(--green-600);
  transition: transform 0.25s ease;
}

.persona-card:hover .persona-card__link svg {
  transform: translateX(3px);
}

/* FAQ =================================================== */

.faq-section {
  background: var(--bg-light);
}

.faq-tabs {
  top: 6rem;
  gap: 0.5rem;
}

.faq-tabs .nav-link {

  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--ink-10);
  color: var(--ink-70);
  font-size: var(--fs-small);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}

.faq-tabs .nav-link:hover {
  transform: translateX(3px);
}

.faq-tabs .nav-link.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.faq-tab__count {
  background: #F1F4EA;
  color: #7C8471;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-pill);
}

.faq-tabs .nav-link.active .faq-tab__count {
  background: var(--lime-400);
  color: var(--ink);
}

.faq-section .accordion-button::after {
  display: none;
}

.faq-section .accordion {
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-border-width: 0;
}

.faq-section .accordion-item {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.7rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: #BFD28F;
  box-shadow: 0 14px 34px rgba(13, 17, 8, 0.08);
}

.faq-section .accordion-button {
  color: var(--ink);
  padding: 1.1rem 1.4rem;
  background: transparent;
}

.faq-section .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}

.faq-toggle-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-sm);
  background: #F1F4EA;
  color: var(--green-700);
  transition: transform 0.35s cubic-bezier(.16, 1, .3, 1), background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) .faq-toggle-icon {
  background: var(--lime-400);
  color: var(--ink);
  transform: rotate(45deg);
}

.faq-section .accordion-body {
  color: var(--ink-70);
  line-height: var(--lh-body);
  max-width: 48rem;
  padding: 0 1.4rem 1.3rem;
}

/* CTA BANNER ============================================ */

/* .cta-section {
  padding: 0 0 var(--space-section-y);
} */

.cta-banner {
  background: var(--ink);
  border-radius: 1.625rem;
  padding: 3.75rem 3.5rem;
  gap: 2.75rem;

}

.cta-banner__glow {
  top: -8.75rem;
  right: -3.75rem;
  width: 28.75rem;
  height: 28.75rem;
  background: radial-gradient(circle, rgba(199, 245, 63, 0.2), transparent 66%);
  pointer-events: none;
}

.cta-banner__copy {
  max-width: 37.5rem;
}

.cta-banner__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 0.8rem;
}

.cta-banner__text {
  color: var(--paper-70);
}

.cta-banner__action {
  gap: 0.75rem;
}

.cta-banner__fineprint {
  font-size: 0.8rem;
  color: var(--paper-50);
}

/* TESTIMONIALS ========================================== */

.testimonial-section {
  background: var(--ink);
  padding-block: var(--space-section-y);
}

.testimonial-section.section-glow::before {
  top: -10rem;
  right: auto;
  left: 20%;
  width: 33.75rem;
  height: 33.75rem;
  background: radial-gradient(circle, rgba(199, 245, 63, 0.12), transparent 66%);
}

.testimonial-card {
  border-color: transparent;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
  padding: 1.875rem 1.75rem;
}

.testimonial-stars {
  gap: 0.15rem;
  color: #e8a33d;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: #3b4433;
  line-height: 1.7;

}

.testimonial-card__footer {
  border-top: 1px solid var(--ink-10);
}

.testimonial-avatar {
  width: 2.875rem;
  height: 2.875rem;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--bg-soft);
}

.testimonial-card__name {
  font-size: 0.9rem;
  color: var(--ink);
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: #8b937d;
}

.testimonial-cta {
  margin-top: 2.75rem;
}

.testimonial-more-link {
  color: var(--paper-70);
  font-size: var(--fs-small);
}

@media (max-width: 1199.98px) {
  .testimonial-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-grid>[class*="col-"] {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: center;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .testimonial-grid>[class*="col-"] {
    flex: 0 0 58%;
    max-width: 58%;
  }
}

/* WRITTEN REVIEWS MASONRY ================================ */

.review-masonry {
  column-count: 1;
  column-gap: 1.25rem;
}

.review-masonry__item {
  break-inside: avoid-column;
  page-break-inside: avoid;
  margin-bottom: 1.25rem;
}

.review-tabs {
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.review-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--ink-10);
  color: var(--ink-70);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.review-tab:hover {
  border-color: #bfd28f;
}

.review-tab__count {
  background: var(--bg-soft);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-pill);
}

.review-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.review-tab.is-active .review-tab__count {
  background: var(--lime-400);
  color: var(--ink);
}

.review-card {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.375rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: #bfd28f;
  box-shadow: 0 16px 36px rgba(13, 17, 8, 0.08);
}

.review-card__stars {
  gap: 0.1rem;
  color: #E8A33D;
}

.review-card__stars svg.is-empty {
  color: var(--ink-10);
}

.review-card__tag {
  background: var(--ink-10);
  color: var(--ink-50);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--ink-90);
  line-height: 1.65;
}

.review-card__footer {
  border-top: 1px solid var(--ink-10);
  margin-top: 1.25rem;
  padding-top: 1rem;
}

.review-card__name {
  font-size: 0.9rem;
  color: var(--ink);
}

.review-card__meta {
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--ink-50);
}

.review-card__meta svg {
  color: var(--green-600);
  flex-shrink: 0;
}

.review-avatar {
  width: 2.75rem;
  height: 2.75rem;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.review-avatar--a {
  background: var(--green-700);
}

.review-avatar--b {
  background: var(--green-600);
}

.review-avatar--c {
  background: var(--lime-400);
  color: var(--ink);
}

@media (min-width: 768px) {
  .review-masonry {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .review-masonry {
    column-count: 3;
  }
}

/* LOCATIONS ============================================= */

.locations-section {
  background: var(--bg-light);
}

.locations-head {
  gap: 2rem;
  margin-bottom: var(--space-content-gap);
}

.locations-head__copy {
  max-width: 45rem;
}

.locations-head__copy .section_heading {
  margin: var(--space-heading-gap) 0 0.75rem;
}

.location-card {
  gap: 0.875rem;
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 1.0625rem 1.1875rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.35s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(13, 17, 8, .13);
  border-color: #BFD28F;
}

.location-card:hover .location-card__ping {
  background: var(--lime-400);
  color: #131A02;
}

.location-card__flag {
  width: 2.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.18);

}

.location-card__info {
  gap: 0.125rem;
  flex-basis: 0;
  min-width: 0;
}

.location-card__name {
  font-size: var(--fs-small);
  color: var(--ink);
  line-height: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-card__city {
  font-size: 12px;
  color: var(--ink-50);
  text-overflow: ellipsis;
}

.location-card__ping {
  gap: 0.3rem;
  background: var(--bg-soft);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.375rem 0.7rem;
  border-radius: var(--radius-pill);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* SECURITY / HARDENING SECTION ========================== */

.sec-chip {
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--ink-10);
  color: var(--ink-70);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sec-chip svg {
  color: var(--green-600);
}

.sec-chip:hover {
  border-color: var(--lime-400);
  transform: translateY(-2px);
}

.security-card {
  padding: 1.6rem 1.5rem;
}

/* RELATED PAGES ========================================= */

.related-section {
  background: #eaefe0;
}

.related-card {
  flex-direction: row;
  gap: 0.8rem;
  padding: 1rem 1.125rem;
}

.related-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--green-700);
  overflow: hidden;
}

.related-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card__text {
  font-size: 0.875rem;
  color: var(--ink);
}

.related-card__arrow {
  color: var(--green-600);
  transition: transform 0.25s ease;
}

.related-card:hover .related-card__arrow {
  transform: translateX(3px);
}

/* OS SELECTION / CAPABILITIES (dark section) ============ */

.os-section {
  padding-block: var(--space-section-y);
  background: var(--ink);
}

.os-section.section-glow::before {
  top: -8.75rem;
  right: auto;
  left: 12%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(199, 245, 63, 0.13), transparent 66%);
}

.os-head {
  gap: 2rem;
  margin-bottom: var(--space-content-gap);
}

.os-head__copy {
  max-width: 37.5rem;
}

.os-note {
  gap: 0.6rem;
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  color: var(--paper-90);
  font-size: var(--fs-small);
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-sm);
}

.os-note svg {
  color: var(--lime-400);
}

.os-card {
  gap: 8px;
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  border-radius: var(--radius);
  padding: 1.5rem 1.1rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.os-card:hover {
  transform: translateY(-5px);
  border-color: var(--lime-400);
  background: #141A0D;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .34);
}

.os-card__logo {
  height: 2.25rem;
  width: auto;
  max-width: 2.75rem;
  object-fit: contain;

}

.os-card__name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--bg-light);
}

.os-card__note {
  font-size: 0.72rem;
  color: var(--paper-50);
}

.os-selection--tally .row > [class*="col-"] {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .os-selection--tally .row > [class*="col-"] {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

/* VIDEO REVIEWS GRID ===================================== */

.video-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--lime-400);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .34);
}

.video-card__thumb {
  aspect-ratio: 16 / 10;
  background: radial-gradient(circle at 28% 22%, rgba(199, 245, 63, 0.12), transparent 60%), linear-gradient(160deg, #131A0D, #070905);
}

.video-card__thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__badge {
  top: 0.85rem;
  left: 0.85rem;
  gap: 0.35rem;
  background: rgba(7, 9, 5, 0.55);
  border: 1px dashed rgba(199, 245, 63, 0.4);
  color: var(--lime-400);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
}

.video-card__play {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--bg-light);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
}

.video-card__play::before {
  content: '';
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent var(--ink);
}

.video-card__body {
  border-top: 1px solid var(--paper-15);
  padding: 1.1rem 1.25rem 1.25rem;
}

.video-card__title {
  color: var(--bg-light);
  font-size: 0.95rem;
}

.video-card__link {
  gap: 0.5rem;
  color: var(--paper-70);
  font-size: var(--fs-small);
}

.video-card__link:hover {
  color: var(--lime-400);
}

.video-card__link-icon {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--green-600);
  color: var(--ink);
  border-radius: 50%;
}

.video-claim {
  border-top: 1px solid var(--paper-15);
  margin-top: 2.5rem;
  padding-top: 2rem;
}

.video-claim__copy {
  max-width: 40rem;
}

.video-claim__heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.video-claim__text {
  color: var(--paper-50);
  font-size: var(--fs-small);
  line-height: 1.65;
}

.os-section .btn--outline {
  background: var(--paper-08);
  border-color: var(--paper-15);
  color: var(--bg-light);
}

.os-section .btn--outline:hover {
  background: var(--paper-15);
  border-color: var(--lime-400);
  color: var(--lime-400);
}

.capability-card__icon {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: var(--radius-sm);
  background: rgba(199, 245, 63, 0.12);
  color: var(--lime-400);
}

.capability-card__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--bg-light);
}

.capability-card__desc {
  font-size: 0.78rem;
  color: var(--paper-50);
  line-height: 1.55;
}

/* PLAN FINDER (homepage) ================================ */

.finder-section {
  background: var(--ink);
}

/* .finder-section::before {
  content: '';
  position: absolute;
  bottom: -11.25rem;
  right: -6.25rem;
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 245, 63, 0.14), transparent 66%);
  pointer-events: none;
  z-index: 0;
} */

.finder-section .container {
  z-index: 1;
}

.finder-badge {

  gap: 0.5rem;
  background: rgba(199, 245, 63, 0.1);
  border: 1px solid rgba(199, 245, 63, 0.24);
  color: var(--lime-400);
  font-size: var(--fs-badge);
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-heading-gap);
}

.finder-chip {
  gap: 0.5rem;
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  color: var(--paper-70);
  font-size: var(--fs-small);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.finder-chip:hover {
  border-color: var(--lime-400);
  color: var(--bg-light);
  background: rgba(199, 245, 63, 0.08);
}

.finder-chip svg {
  color: var(--lime-400);

}

.finder-chip.is-active {
  background: var(--lime-400);
  border-color: var(--lime-400);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(199, 245, 63, 0.22);
}

.finder-chip.is-active svg {
  color: var(--ink);
}

.finder-card {
  background: #151c0d;
  border: 1px solid var(--paper-15);
  border-radius: var(--radius-lg);
  padding: 2.1rem 2.25rem;
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.34);
}

.finder-card__eyebrow {
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--lime-400);
  margin-bottom: 1rem;
}

.finder-card__head {
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.finder-card__plan {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--bg-light);
  letter-spacing: -0.02em;
}

.finder-card__price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--lime-400);
}

.finder-card__price span {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--paper-50);
}

.finder-card__specs {
  gap: 0.7rem;
  background: rgba(199, 245, 63, 0.08);
  border: 1px solid rgba(199, 245, 63, 0.2);
  color: #E9EEDC;
  font-size: var(--fs-small);
  padding: 0.85rem 1.05rem;
  border-radius: var(--radius);
  margin-bottom: 1.1rem;
}

.finder-card__specs svg {
  color: var(--lime-400);
}

.finder-card__why {
  color: var(--paper-70);
  margin-bottom: 1.25rem;
}

.finder-card__points {
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.finder-card__points li {
  gap: 0.7rem;
  font-size: var(--fs-small);
  color: #D5DCC6;
}

.finder-card__check {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--lime-400);
  color: var(--ink);

}

.finder-card__loc {
  border-top: 1px solid var(--paper-15);
  padding-top: 1.1rem;
  margin-bottom: 1.4rem;
  font-size: var(--fs-small);
}

.finder-card__loc span {
  gap: 0.5rem;
  color: var(--paper-50);
}

.finder-card__loc span svg {
  color: var(--lime-400);
}

.finder-card__loc strong {
  color: var(--bg-light);
}

/* VPS SIZING QUIZ ======================================== */

.quiz-chip {
  background: #fff;
  border: 1px solid var(--ink-10);
  color: var(--ink-70);
  font-size: var(--fs-small);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.quiz-chip:hover {
  border-color: var(--ink-20);
}

.quiz-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg-light);
}

.quiz-card {
  background: #151c0d;
  border: 1px solid var(--paper-15);
  border-radius: var(--radius-lg);
  padding: 2.1rem 2.25rem;
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.34);
}

.quiz-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--paper-50);
}

.quiz-card__badge {
  gap: 0.35rem;
  background: rgba(199, 245, 63, 0.08);
  border: 1px solid rgba(199, 245, 63, 0.3);
  color: var(--lime-400);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.quiz-card__plan {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--bg-light);
  letter-spacing: -0.02em;
}

.quiz-card__desc {
  color: var(--paper-70);
  font-size: var(--fs-small);
  margin: 0.9rem 0 1.4rem;
}

.quiz-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.quiz-hours__box {
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  border: 1px solid;
}

.quiz-hours__box--laptop {
  background: rgba(196, 87, 74, 0.1);
  border-color: rgba(196, 87, 74, 0.35);
}

.quiz-hours__box--qloud {
  background: rgba(199, 245, 63, 0.08);
  border-color: rgba(199, 245, 63, 0.3);
}

.quiz-hours__label {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quiz-hours__box--laptop .quiz-hours__label {
  color: #E8998F;
}

.quiz-hours__box--qloud .quiz-hours__label {
  color: var(--lime-400);
}

.quiz-hours__value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 0.15rem;
}

.quiz-hours__box--laptop .quiz-hours__value {
  color: #F0B8B0;
}

.quiz-hours__box--qloud .quiz-hours__value {
  color: var(--lime-400);
}

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

.quiz-spec {
  padding: 0.6rem 0;
}

.quiz-spec+.quiz-spec {
  border-top: 1px solid var(--paper-08);
}

.quiz-spec__label {
  gap: 0.5rem;
  color: var(--paper-50);
  font-size: var(--fs-small);
}

.quiz-spec__label svg {
  color: var(--lime-400);
}

.quiz-spec__value {
  color: var(--bg-light);
  font-size: var(--fs-small);
}

.quiz-card__note {
  color: var(--paper-50);
  font-size: 0.78rem;
  margin-top: 0.9rem;
}

/* MARKET SESSIONS TIMELINE =============================== */

.sessions-card {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}

.sessions-scale span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink-50);
  letter-spacing: 0.02em;
}

.session-row {
  gap: 1.25rem;
  padding-block: 0.45rem;
}

.session-row__label {
  width: 8rem;
  flex-shrink: 0;
}

.session-row__label span {
  display: block;
  color: var(--ink-50);
  font-size: 0.7rem;
  font-weight: 500;
}

.session-row__track {
  position: relative;
  height: 2.25rem;
  background: var(--bg-soft);
  border-radius: 10px;
  overflow: hidden;
}

.session-bar {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
}

.sessions-live {
  margin-top: 0.6rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--ink-20);
}

.sessions-live__track {
  height: 2.25rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--lime-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* WATCH-HOUR STATS ======================================= */

.watch-stat {
  padding: 1.5rem 1.25rem;
}

.watch-stat__label {
  display: block;
  font-size: 0.68rem;
  color: var(--ink-50);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.watch-stat__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.watch-stat__desc {
  font-size: var(--fs-small);
  color: var(--ink-70);
  margin: 0.4rem 0 0.75rem;
}

.watch-stat__rate {
  display: block;
  font-size: 0.78rem;
  color: var(--green-700);
}

/* RENDER SPEED COMPARISON ================================ */

.render-speed__note {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  color: var(--ink-70);
  font-size: var(--fs-small);
  margin-top: 1.5rem;
}

.render-speed-card {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}

.render-speed-row+.render-speed-row {
  margin-top: 1.5rem;
}

.render-speed-row__label strong {
  font-size: var(--fs-small);
  margin-right: 0.5rem;
}

.render-speed-row__icon {
  margin-right: 0.6rem;
}

.render-speed-row__icon--danger {
  color: var(--danger);
}

.render-speed-row__icon--warning {
  color: var(--warning);
}

.render-speed-row__icon--lime {
  color: var(--green-600);
}

.render-speed-row__icon--green {
  color: var(--green-700);
}

.render-speed-row__sub {
  color: var(--ink-50);
  font-size: 0.78rem;
}

.render-speed-row__time {
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}

.render-speed-row__time--danger {
  color: var(--danger);
}

.render-speed-row__time--warning {
  color: var(--warning);
}

.render-speed-row__time--lime {
  color: var(--green-600);
}

.render-speed-row__time--green {
  color: var(--green-700);
}

.render-speed-track {
  height: 0.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.render-speed-bar {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
}

.render-speed-bar--danger {
  background: var(--danger);
}

.render-speed-bar--warning {
  background: var(--warning);
}

.render-speed-bar--lime {
  background: var(--green-600);
}

.render-speed-bar--green {
  background: var(--green-700);
}

@media (max-width: 575.98px) {
  .render-speed-row__label {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  .render-speed-row__sub {
    flex-basis: 100%;
    margin-left: 1.6rem;
  }
}

/* BLOG MEDIA CARDS ======================================= */

.blog-media__cover {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: var(--bg-soft);
}

.blog-media__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-media:hover .blog-media__cover img {
  transform: scale(1.06);
}

.blog-media__tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
}

.blog-media__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.7rem;
}

.blog-media__link {
  color: var(--green-700);
  font-size: 0.85rem;
}

.blog-media:hover .blog-media__link {
  color: var(--green-600);
}

.blog-media__link svg {
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.blog-media:hover .blog-media__link svg {
  transform: rotate(0deg);
}

/* COMPARISON TABLE ====================================== */

.comparison-table-wrap {
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 40px rgba(10, 12, 8, 0.07);
}

.comparison-table {
  --bs-table-border-color: var(--ink-10);
  --bs-table-hover-bg: var(--bg-soft);
  min-width: 840px;
}

.comparison-table th,
.comparison-table td {
  vertical-align: middle;
}

.comparison-table thead th {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  padding: 1.25rem;
  border: 0;

}

.comparison-table thead th:first-child {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.08em;
  color: var(--ink-50);
  background: transparent;
}

.comparison-table thead th:nth-child(3) {
  background: var(--ink);
  color: var(--lime-400);
}

.comparison-table__badge {
  background: var(--lime-400);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-left: 0.5rem;
}

.comparison-table tbody th {
  font-size: var(--fs-small);
  color: var(--ink-70);
  padding: 0.9rem 1.25rem;
}

.comparison-table tbody th svg {
  color: var(--green-600);

}

.comparison-table tbody td,
.comparison-table tfoot td {
  font-size: var(--fs-small);
  color: var(--ink-70);
  padding: 0.9rem 1.25rem;
}

.comparison-table tbody th:nth-child(3),
.comparison-table tbody td:nth-child(3),
.comparison-table tfoot td:nth-child(3) {
  background: var(--bg-soft);
  font-weight: 600;
  color: #000;
}

.comparison-table__check {
  color: var(--green-600);
}

.comparison-table--admin thead th:nth-child(3) {
  background: var(--bg-soft);
  color: var(--ink);
}

.comparison-table--admin thead th:nth-child(4) {
  background: var(--ink);
  color: var(--lime-400);
}

.comparison-table--admin tbody th:nth-child(3),
.comparison-table--admin tbody td:nth-child(3),
.comparison-table--admin tfoot td:nth-child(3) {
  background: transparent;
  font-weight: 500;
  color: var(--ink-70);
}

.comparison-table--admin tbody th:nth-child(4),
.comparison-table--admin tbody td:nth-child(4),
.comparison-table--admin tfoot td:nth-child(4) {
  background: var(--bg-soft);
  font-weight: 600;
  color: #000;
}

.comparison-table__status--bad {
  color: var(--danger);
}

.comparison-table__status--warn {
  color: var(--warning);
}

.comparison-table__status--good {
  color: var(--green-600);
}

/* FOOTER ================================================ */

.footer-newsletter {
  background: var(--ink);
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--paper-15);
}

.footer-newsletter__icon {
  border-radius: var(--radius-sm);
  background: #c7f53f1c;
  color: var(--lime-400);
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(199, 245, 63, 0.24);
}

.footer-newsletter__title {
  font-family: var(--font-heading);
  color: var(--bg-light);
}

.footer-newsletter__text {
  font-size: var(--fs-small);
  color: var(--paper-50);
}

.footer-newsletter__input {
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.25rem;
  color: var(--bg-light);
  font-size: var(--fs-small);
  min-width: 260px;
}

.footer-newsletter__input::placeholder {
  color: var(--paper-50);
}

/* FORM VALIDATION & SUBMIT FEEDBACK (newsletter + contact forms) ===== */

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-field__error {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--danger);
  margin-top: 0.35rem;
}

.footer-newsletter__input[aria-invalid="true"],
.contact-form-input[aria-invalid="true"] {
  border-color: var(--danger);
}

.form-status-anchor {
  position: relative;
  display: inline-flex;
}

.form-status {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 5;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.form-status::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
}

.form-status.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.form-status--success {
  background: var(--lime-400);
  color: var(--ink);
}

.form-status--success::after {
  border-top-color: var(--lime-400);
}

.form-status--error {
  background: var(--danger);
  color: #fff;
}

.form-status--error::after {
  border-top-color: var(--danger);
}

.site-footer {
  background: #0d1108;
  color: var(--paper-70);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 245, 63, 0.08), transparent 66%);
  pointer-events: none;
  z-index: 1;
}

.site-footer>.footer-newsletter,
.site-footer>.container {
  position: relative;
  /* z-index: 1; */
}

.site-footer h4 {
  color: var(--bg-light);
  font-size: var(--fs-small);
  margin-bottom: 1rem;
}

.site-footer p {
  color: var(--paper-70);
  font-size: var(--fs-small);
}

.footer-brand__desc {
  margin-top: 1rem;
  max-width: 30ch;
}

.site-footer a {
  font-size: var(--fs-small);
  color: #96A183;
}

.site-footer a:hover {
  color: #fff;
}

.footlink {
  position: relative;
  display: inline-block;
  transition: color 0.28s ease, padding-left 0.28s cubic-bezier(.16, 1, .3, 1);
}

.footlink::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1.5px;
  border-radius: 2px;
  background: var(--lime-400);
  transform: translateY(-50%);
  transition: width 0.3s cubic-bezier(.16, 1, .3, 1);
}

.footlink:hover {
  padding-left: 14px;
}

.footlink:hover::before {
  width: 9px;
}

.site-footer li {
  padding-top: 0.35rem;
}

.footer-contact {
  margin-top: 1.25rem;
}

.footer-contact li {
  gap: 0.6rem;
  font-size: var(--fs-small);
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: var(--lime-400);
}

.footer-social {
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer-social__item {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  place-items: center;
  color: var(--paper-70);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

a.footer-social__item:hover {
  background: var(--lime-400);
  border-color: var(--lime-400);
  color: var(--ink);
  transform: translateY(-4px);
}

.footer-social__item svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.site-footer__grid {
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--space-card-gap);
}

.footer-trust {
  padding-top: 1.25rem;
  margin-top: var(--space-content-gap);
  border-top: 1px solid var(--paper-15);
}

.footer-trust__list {
  gap: 1rem;
  margin-bottom: 0;
}

.footer-trust__list li {
  gap: 0.5rem;
  font-size: 13px;
  padding-block: 0;
}

.footer-trust__list svg {
  width: 1rem;
  height: 1rem;
  color: var(--lime-400);
}

.footer-payments {
  gap: 0.9rem;
  /* background: #fff; */
  border-radius: var(--radius-lg);
  padding: 0.6rem 1.25rem;
      border: 1px solid var(--paper-15);
}

.footer-payments__badge {
  height: 1.25rem;
  padding: 0;
}

.footer-payments__badge img {
  height: 100%;
  width: auto;
  max-width: 1.75rem;
  object-fit: contain;
}

.site-footer__bottom {
  border-top: 1px solid var(--paper-15);
  margin-top: 1rem;
  padding-top: 1rem;
  gap: 1rem;
  font-size: 0.75rem;
}

.site-footer__bottom span {
  gap: 0.4rem;
}

.site-footer__bottom svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--lime-400);
}

/* RESPONSIVE OVERRIDES ================================== */

@media (max-width: 1200px) {
  .navbar .navbar-nav {
    gap: 0 !important;
  }
}

@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid> :first-child {
    grid-column: 1 / -1;
  }

  .navbar .navbar-nav {
    gap: 0 !important;
  }
}

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

/* ========================================================
   FOREX RDP PAGE (forex-rdp.php)
   ======================================================== */

.forex-terminal__card {
  background: var(--ink);
  border: 1px solid #26301A;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(13, 17, 8, .3);
}

.forex-terminal__topbar {
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid #1F2716;
  background: #111708;
}

.forex-terminal__dots {
  gap: 5px;
}

.forex-terminal__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3A4530;
  display: inline-block;
}

.forex-terminal__dots-accent {
  background: var(--lime-400) !important;
}

.forex-terminal__url {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  color: #8B937D;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.forex-terminal__badge {
  gap: 7px;
  background: rgba(199, 245, 63, .11);
  border: 1px solid rgba(199, 245, 63, .26);
  color: var(--lime-400);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.forex-terminal__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-400);
  margin-right: 7px;
  animation: forexPulse 2s ease-in-out infinite;
}

@keyframes forexPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(199, 245, 63, .45);
  }

  50% {
    opacity: .7;
    box-shadow: 0 0 0 4px rgba(199, 245, 63, 0);
  }
}

.forex-terminal__price {
  gap: 16px;
  padding: 18px 18px 6px;
}

.forex-terminal__pair {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.forex-terminal__meta {
  font-size: 11.5px;
  color: #8B937D;
  font-weight: 600;
}

.forex-terminal__value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--lime-400);
  line-height: 1;
  animation: forexTick 3.4s ease-in-out infinite;
}

@keyframes forexTick {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .72;
  }
}

.forex-terminal__change {
  font-size: 11px;
  color: #8FBF3A;
  font-weight: 700;
}

.forex-terminal__chart {
  position: relative;
  height: 132px;
  padding: 12px 18px 0;
  gap: 4px;
  overflow: hidden;
}

.forex-candle {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.forex-candle__wick {
  position: absolute;
  top: -6px;
  bottom: -6px;
  width: 1.5px;
  border-radius: 2px;
  opacity: .5;
}

.forex-candle__wick--up {
  background: var(--lime-400);
}

.forex-candle__wick--down {
  background: var(--danger);
}

.forex-candle__body {
  position: relative;
  width: 100%;
  border-radius: 2px;
}

.forex-candle__body--up {
  background: var(--lime-400);
  opacity: .95;
}

.forex-candle__body--down {
  background: var(--danger);
  opacity: .8;
}

.forex-terminal__chart-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 52%;
  height: 1px;
  background: rgba(199, 245, 63, .16);
}

.forex-terminal__rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px 18px;
  border-top: 1px solid #1F2716;
  margin-top: 12px;
}

.forex-terminal__row {
  gap: 14px;
  padding: 9px 11px;
  border-radius: 10px;
  transition: background-color .2s ease;
}

.forex-terminal__row:hover {
  background: rgba(255, 255, 255, .03);
}

.forex-terminal__row-icon {
  color: var(--lime-400);
}

.forex-terminal__row-label {
  font-size: 13px;
  font-weight: 600;
  color: #E9EEDC;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.forex-terminal__row-value {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}

.forex-terminal__row-value--accent {
  color: var(--lime-400);
}

.forex-terminal__row-value--green {
  color: #8FBF3A;
}

.forex-terminal__float {
  position: absolute;
  bottom: -18px;
  left: -14px;
  gap: 12px;
  background: #fff;
  border: 1px solid #E5EADB;
  border-radius: 15px;
  padding: 13px 17px;
  box-shadow: 0 20px 44px rgba(13, 17, 8, .16);
}

.forex-terminal__float-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: #EEF5DE;
  color: var(--green-700);
}

.forex-terminal__float-title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.2;
}

.forex-terminal__float-text {
  font-size: 11.5px;
  color: #7C8471;
  font-weight: 600;
}

@media (max-width: 991px) {
  .forex-terminal__float {
    display: none;
  }
}

/* AFFILIATE HERO CARD ==================================== */

.aff-hero-card {
  background: var(--ink);
  border: 1px solid var(--paper-15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: 0 20px 60px rgba(10, 12, 8, 0.25);
}

.aff-hero-card__badge {
  top: -18px;
  right: 24px;
  background: var(--lime-400);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  line-height: 1.25;
  font-size: var(--fs-small);
  box-shadow: 0 10px 24px rgba(199, 245, 63, 0.35);
}

.aff-hero-card__badge span {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.75;
}

.aff-hero-card__eyebrow {
  font-size: var(--fs-badge);
  letter-spacing: 0.04em;
  color: var(--paper-50);
}

.aff-hero-card__eyebrow--accent {
  color: var(--lime-400);
}

.aff-hero-card__bars {
  gap: 0.75rem;
  border-bottom: 1px solid var(--paper-15);
  padding-bottom: 1.5rem;
  margin-bottom: 1.25rem;
}

.aff-bar-col {
  flex: 1;
  gap: 0.35rem;
}

.aff-bar-col__value {
  font-size: 1.05rem;
  color: var(--paper-70);
}

.aff-bar-col:last-child .aff-bar-col__value {
  font-size: 1.35rem;
  color: var(--lime-400);
}

.aff-bar-col__bar {
  width: 100%;
  border-radius: var(--radius-sm);
}

.aff-bar-col__bar.aff-bar--muted {
  background: var(--paper-08);
}

.aff-bar-col__bar.aff-bar--mid {
  background: var(--green-600);
}

.aff-bar-col__bar.aff-bar--top {
  background: var(--lime-400);
}

.aff-bar-col__label {
  font-size: var(--fs-small);
  color: var(--paper-90);
  margin-top: 0.5rem;
}

.aff-bar-col__range {
  font-size: 0.75rem;
  color: var(--paper-50);
}

.aff-hero-card__row {
  padding-block: 0.6rem;
  font-size: var(--fs-small);
  color: var(--paper-70);
}

.aff-hero-card__row+.aff-hero-card__row {
  border-top: 1px solid var(--paper-15);
}

.aff-hero-card__row svg {
  color: var(--lime-400);
}

.aff-hero-card__row .fw-bold {
  color: var(--paper-90);
}

/* AFFILIATE STATS BAR ===================================== */

.aff-stats-bar {
  background: var(--bg-light);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}

.aff-stats-bar__row {
  padding-block: 2rem;
}

.aff-stats-bar__item {
  padding: 0 1.5rem;
  border-right: 1px solid var(--ink-10);
}

.aff-stats-bar__item:last-child {
  border-right: none;
}

.aff-stats-bar__item svg {
  color: var(--green-600);
  margin-bottom: 0.6rem;
}

.aff-stats-bar__value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.aff-stats-bar__label {
  font-size: var(--fs-small);
  color: var(--ink-50);
}

@media (max-width: 767px) {
  .aff-stats-bar__row {
    flex-wrap: wrap;
    gap: 1.75rem 0;
  }

  .aff-stats-bar__item {
    flex: 0 0 50%;
    border-right: none;
  }
}

/* STATS HIGHLIGHT (dark, glow section — contact-us.php, about-us.php) ===== */

.stats-highlight__intro {
  margin-bottom: 3rem;
}

.stats-highlight__row {
  display: grid;
  grid-template-columns: 1fr;
}

.stats-highlight__item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--paper-15);
}

.stats-highlight__item:first-child {
  border-top: none;
  padding-top: 0;
}

.stats-highlight__value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--lime-400);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-highlight__suffix {
  position: relative;
  top: -0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--paper-70);
  margin-left: 0.15rem;
}

.stats-highlight__label {
  font-size: var(--fs-small);
  color: var(--paper-50);
  line-height: 1.5;
  max-width: 26ch;
}

@media (min-width: 768px) {
  .stats-highlight__row {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }

  .stats-highlight__item {
    padding: 1.75rem 0 1.75rem 2rem;
    border-top: none;
  }

  .stats-highlight__item:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--paper-15);
  }

  .stats-highlight__item:nth-child(-n+2) {
    padding-top: 0;
  }

  .stats-highlight__item:nth-child(n+3) {
    border-top: 1px solid var(--paper-15);
    margin-top: 0.25rem;
  }
}

@media (min-width: 992px) {
  .stats-highlight__row {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 0;
  }

  .stats-highlight__item {
    padding: 0 2rem;
    border-top: none !important;
    margin-top: 0 !important;
  }

  .stats-highlight__item:nth-child(odd) {
    border-right: 1px solid var(--paper-15);
  }

  .stats-highlight__item:last-child {
    border-right: none;
  }

  .stats-highlight__item:first-child {
    padding-left: 0;
  }
}

/* TALLY SOLO PRICE CARD (tally-on-cloud-shared.php) ======= */

.tally-price-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(10, 12, 8, 0.14);
  border: 1px solid var(--ink-10);
}

@media (max-width: 767.98px) {
  .tally-price-card {
    grid-template-columns: 1fr;
  }
}

.tally-price-card__light {
  background: #fff;
  padding: 2.5rem;
}

.tally-price-card__dark {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
}

.tally-price-card__dark::before {
  content: '';
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 245, 63, 0.16), transparent 66%);
  pointer-events: none;
}

.tally-price-card__tags {
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.tally-price-card__tag {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--lime-400);
  color: var(--ink);
}

.tally-price-card__tag--outline {
  background: transparent;
  color: var(--paper-70);
  border: 1px solid var(--paper-15);
}

.tally-price-card__title {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.tally-price-card__desc {
  color: var(--paper-70);
  font-size: var(--fs-small);
  margin-bottom: 1.5rem;
  max-width: 34ch;
  position: relative;
}

.tally-price-card__amount {
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  position: relative;
}

.tally-price-card__amount-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #fff;
  line-height: 1;
}

.tally-price-card__amount-period {
  font-size: 1rem;
  color: var(--paper-50);
  font-weight: 600;
}

.tally-price-card__usd {
  color: var(--lime-400);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.tally-price-card__billed {
  color: var(--paper-50);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.tally-price-card__aside {
  gap: 0.75rem;
  background: var(--paper-08);
  border: 1px dashed var(--paper-15);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 1.75rem;
  color: var(--paper-70);
  font-size: 0.85rem;
  position: relative;
}

.tally-price-card__aside strong {
  color: var(--lime-400);
}

.tally-price-card__actions {
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
}

.tally-price-card__fineprint {
  color: var(--paper-50);
  font-size: 0.75rem;
  gap: 0.4rem;
  position: relative;
}

.tally-price-card__fineprint svg {
  color: var(--lime-400);
  flex-shrink: 0;
}

.tally-spec-head {
  margin-bottom: 1.5rem;
}

.tally-spec-head__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-50);
}

.tally-spec-head__live {
  gap: 0.35rem;
  background: var(--bg-soft);
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}

.tally-spec-row {
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--ink-10);
}

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

.tally-spec-row__label {
  gap: 0.55rem;
  color: var(--ink-50);
  font-size: 0.85rem;
}

.tally-spec-row__label svg {
  color: var(--green-600);
  flex-shrink: 0;
}

.tally-spec-row__value {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
  font-size: 0.88rem;
}

.tally-spec-disclaimer {
  font-size: 0.72rem;
  color: var(--ink-50);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--ink-10);
}

.tally-included__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin: 1.5rem 0 1rem;
}

.tally-included__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

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

.tally-included__chip {
  gap: 0.45rem;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-70);
}

.tally-included__chip svg {
  color: var(--green-600);
  flex-shrink: 0;
}

.tally-upsell {
  background: var(--bg-light);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  gap: 1.25rem;
}

.tally-upsell__icon {
  width: 3rem;
  height: 3rem;
  background: var(--bg-soft);
  color: var(--green-700);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.tally-upsell__title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.tally-upsell__desc {
  color: var(--ink-50);
  font-size: var(--fs-small);
  max-width: 60ch;
}

@media (max-width: 767.98px) {
  .tally-upsell {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

/* AFFILIATE COMMISSION SLABS ============================= */

.aff-slab {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: 0 3px 14px rgba(10, 12, 8, 0.04);
}

.aff-slab__num {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  color: var(--ink-50);
  min-width: 1.5rem;
}

.aff-slab__title {
  font-size: 1.125rem;
  color: var(--ink);
}

.aff-slab__sub {
  font-size: var(--fs-small);
  color: var(--ink-50);
}

.aff-slab__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--ink);
}

.aff-slab__note {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--ink-50);
}

.aff-slab--dark {
  background: var(--ink);
  border-color: var(--ink);
}

.aff-slab--dark .aff-slab__num {
  color: var(--lime-400);
}

.aff-slab--dark .aff-slab__title {
  color: #fff;
}

.aff-slab--dark .aff-slab__sub {
  color: var(--paper-70);
}

.aff-slab--dark .aff-slab__price {
  color: var(--lime-400);
}

.aff-slab--dark .aff-slab__note {
  color: var(--paper-50);
}

.aff-slab--dashed {
  background: transparent;
  border-style: dashed;
  box-shadow: none;
}

/* AFFILIATE EARNINGS CALCULATOR =========================== */

.aff-calc-panel {
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
}

.aff-calc-panel__eyebrow {
  font-size: var(--fs-badge);
  letter-spacing: 0.04em;
  color: var(--paper-50);
}

.aff-calc-panel__value {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: #fff;
}

.aff-calc-pill {
  gap: 0.4rem;
  background: var(--lime-400);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
}

.aff-calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--paper-15);
  outline: none;
  cursor: pointer;
  margin: 1rem 0 0.5rem;
}

.aff-calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime-400);
  border: 4px solid var(--ink);
  box-shadow: 0 0 0 3px rgba(199, 245, 63, 0.35);
  cursor: pointer;
}

.aff-calc-range::-moz-range-track {
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--paper-15);
}

.aff-calc-range::-moz-range-progress {
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--lime-400);
}

.aff-calc-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime-400);
  border: 4px solid var(--ink);
  box-shadow: 0 0 0 3px rgba(199, 245, 63, 0.35);
  cursor: pointer;
}

.aff-calc-range__scale {
  font-size: 0.75rem;
  color: var(--paper-50);
  margin-bottom: 1.5rem;
}

.aff-calc-panel__rows {
  border-top: 1px solid var(--paper-15);
  padding-top: 0.25rem;
}

.aff-calc-result {
  background: var(--lime-400);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.aff-calc-result__eyebrow {
  font-size: var(--fs-badge);
  letter-spacing: 0.04em;
  color: rgba(10, 12, 8, 0.6);
}

.aff-calc-result__value {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--ink);
}

.aff-calc-result__sub {
  font-size: var(--fs-small);
  color: rgba(10, 12, 8, 0.6);
  margin-bottom: 1.5rem;
}

.aff-calc-result__rows {
  border-top: 1px solid rgba(10, 12, 8, 0.15);
  padding-top: 1rem;
}

.aff-calc-result__row {
  padding-block: 0.4rem;
  font-size: var(--fs-small);
  color: rgba(10, 12, 8, 0.7);
}

.aff-calc-result__row .fw-bold {
  color: var(--ink);
}

.aff-calc-note {
  font-size: var(--fs-small);
  color: var(--paper-50);
  max-width: 62rem;
  margin-top: 2.5rem;
}

/* AFFILIATE PAYOUT JOURNEY ================================ */

.aff-journey {
  margin-bottom: 2.5rem;
}

.aff-journey__step {
  flex: 1;
  position: relative;
  padding-right: 1.5rem;
}

.aff-journey__step:last-child {
  padding-right: 0;
}

.aff-journey__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 56px;
  right: 0;
  border-top: 2px dashed var(--ink-20);
}

.aff-journey__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime-400);
  position: relative;
  z-index: 1;
  margin-bottom: 0.9rem;
}

.aff-journey__step--active .aff-journey__icon {
  background: var(--lime-400);
  color: var(--ink);
  box-shadow: 0 0 0 6px rgba(199, 245, 63, 0.18);
}

.aff-journey__time {
  font-size: 0.8rem;
  color: var(--green-600);
  margin-bottom: 0.35rem;
}

.aff-journey__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.aff-journey__desc {
  font-size: var(--fs-small);
  color: var(--ink-50);
  line-height: var(--lh-body);
}

.aff-journey-banner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}

.aff-journey-banner__title {
  color: #fff;
  font-size: 1.05rem;
}

.aff-journey-banner__text {
  color: var(--paper-70);
  font-size: var(--fs-small);
  max-width: 44rem;
}

@media (max-width: 991px) {
  .aff-journey {
    flex-direction: column;
    gap: 1.75rem;
  }

  .aff-journey__step {
    padding-right: 0;
    padding-left: 4.375rem;
  }

  .aff-journey__step:not(:last-child)::after {
    top: 56px;
    left: 27px;
    right: auto;
    width: 2px;
    height: calc(100% - 8px);
    border-top: none;
    border-left: 2px dashed var(--ink-20);
  }

  .aff-journey__icon {
    position: absolute;
    left: 0;
    top: 0;
  }
}

/* AFFILIATE CHANNELS ====================================== */

.aff-channels__note {
  font-size: var(--fs-small);
  color: var(--paper-50);
  margin-top: 1.25rem;
}

.aff-channel-row {
  padding-block: 1.25rem;
}

.aff-channel-row+.aff-channel-row {
  border-top: 1px solid var(--paper-15);
}

.aff-channel-row__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  color: var(--lime-400);
}

.aff-channel-row__title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.aff-channel-row__desc {
  color: var(--paper-70);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.aff-channel-row__tag {
  color: var(--lime-400);
  font-size: var(--fs-small);
}

.aff-channel-row__tag-sub {
  color: var(--paper-50);
  font-size: 0.75rem;
}

/* AFFILIATE FAQ (no group filter) ========================= */

.aff-faq-grid {
  column-count: 2;
  column-gap: 1.5rem;
}

.aff-faq-grid .accordion-item {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}

@media (max-width: 767px) {
  .aff-faq-grid {
    column-count: 1;
  }
}

/* BUY RDP FAQ (no group filter) =========================== */

.buy-faq-grid {
  column-count: 2;
  column-gap: 1.5rem;
}

.buy-faq-grid .accordion-item {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}

@media (max-width: 767px) {
  .buy-faq-grid {
    column-count: 1;
  }
}

/* CONTACT CHANNEL CARDS =================================== */

.contact-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--green-700);
}

.contact-card__meta {
  gap: 0.4rem;
  background: var(--bg-soft);
  color: var(--green-700);
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  width: fit-content;
}

.contact-card__meta svg {
  color: var(--green-600);
}

.desk-row__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--green-700);
}


/* INDEPENDENT PLATFORMS ==================================== */

.platform-stars {
  gap: 0.1rem;
  color: var(--green-600);
}

/* SPOTLIGHT QUOTE ========================================== */

.spotlight-quote {
  max-width: 46rem;
}

.spotlight-quote__mark {
  color: var(--lime-400);
  margin-bottom: 1.25rem;
}

.spotlight-quote__text {
  font-size: 1.5rem;
  line-height: 1.4;
  max-width: 44rem;
}

.spotlight-quote__meta {
  gap: 0.4rem;
  color: var(--paper-50);
  font-size: var(--fs-small);
}

.spotlight-quote__stars {
  gap: 0.1rem;
  color: var(--lime-400);
}

/* CONTACT MESSAGE FORM ==================================== */

.contact-quote {
  border-left: 2px solid var(--lime-400);
  padding-left: 1.1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.5;
}

.contact-tips {
  gap: 0.9rem;
  display: flex;
  flex-direction: column;
}

.contact-tips svg {
  color: var(--lime-400);
  margin-top: 0.15rem;
}

.contact-tips span {
  color: var(--paper-70);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.contact-form-input {
  width: 100%;
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: var(--fs-small);
  font-family: var(--font-body);
}

.contact-form-input::placeholder {
  color: var(--paper-50);
}

.contact-form-input:focus {
  outline: none;
  border-color: var(--lime-400);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 7rem;
}

.contact-form-select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form-select option {
  background: var(--ink);
  color: #fff;
}

.contact-form-select-wrap__icon {
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--paper-50);
  pointer-events: none;
}

.contact-form-fineprint {
  font-size: 0.8rem;
  color: var(--paper-50);
  max-width: 32rem;
}

/* WHAT TO EXPECT ========================================== */

.expect-rating {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.expect-rating__score {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0.6rem 0 0.5rem;
}

.expect-rating__text {
  font-size: var(--fs-small);
  color: var(--ink-70);
  line-height: var(--lh-body);
}

/* CONTACT — WHERE WE ARE ================================== */

.contact-info-card__icon {
  color: var(--lime-400);
  display: block;
  margin-bottom: 0.9rem;
}

.contact-info-card__title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.contact-info-card__desc {
  font-size: var(--fs-small);
  color: var(--paper-70);
  line-height: var(--lh-body);
}

.contact-info-card__desc--note {
  color: rgba(199, 245, 63, 0.75);
}

.contact-region-head {
  border-top: 1px solid var(--paper-15);
  padding-top: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-region-head__title {
  color: #fff;
  font-size: 1.05rem;
}

.contact-region-head__note {
  font-size: var(--fs-small);
  color: var(--paper-50);
}

.contact-region {
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-region:hover {
  transform: translateY(-5px);
  border-color: var(--lime-400);
  background: #141A0D;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .34);
}

.contact-region__head {
  border-bottom: 1px solid var(--paper-15);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.contact-region__name {
  color: #fff;
  font-size: 0.95rem;
}

.contact-region__count {
  color: var(--lime-400);
  font-size: 0.75rem;
}

.contact-region__country {
  padding-block: 0.6rem;
}

.contact-region__flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
}

.contact-region__country-name {
  color: #fff;
  font-size: var(--fs-small);
}

.contact-region__country-city {
  color: var(--paper-50);
  font-size: 0.75rem;
}

/* CONTACT LOCATIONS — LIGHT SECTION OVERRIDE ============= */

.contact-locations-section.os-section {
  background: var(--bg-light);
}

.contact-locations-section .finder-badge {
  background: var(--bg-soft);
  border-color: var(--ink-20);
  color: var(--green-700);
}

.contact-locations-section .aff-calc-panel {
  background: #fff;
  border-color: var(--ink-10);
}

.contact-locations-section .aff-calc-panel__eyebrow {
  color: var(--ink-50);
}

.contact-locations-section .contact-info-card__title {
  color: var(--ink);
}

.contact-locations-section .contact-info-card__desc {
  color: var(--ink-70);
}

.contact-locations-section .contact-info-card__desc--note {
  color: var(--green-700);
}

.contact-locations-section .contact-region-head,
.contact-locations-section .contact-region__head {
  border-color: var(--ink-10);
}

.contact-locations-section .contact-region-head__title,
.contact-locations-section .contact-region__name,
.contact-locations-section .contact-region__country-name {
  color: var(--ink);
}

.contact-locations-section .contact-region-head__note,
.contact-locations-section .contact-region__country-city {
  color: var(--ink-50);
}

.contact-locations-section .contact-region__count {
  color: var(--green-700);
}

.contact-locations-section .contact-region {
  background: #fff;
  border-color: var(--ink-10);
}

.contact-locations-section .contact-region:hover {
  background: var(--bg-soft);
  box-shadow: 0 18px 40px rgba(13, 17, 8, 0.08);
}

/* CONTACT TEAM CARDS ======================================= */

.team-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--green-700);
  font-size: 0.85rem;
}

.team-card__role {
  color: var(--green-600);
  font-size: var(--fs-small);
  margin: 0.35rem 0 0.75rem;
}

/* ABOUT — OUR STORY TIMELINE =============================== */

@media (min-width: 992px) {
  .about-history__intro {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

.about-timeline {
  border-top: 1px solid var(--paper-15);
}

.about-timeline__year {
  width: 3.5rem;
  color: var(--lime-400);
  font-family: var(--font-heading);
  font-size: 1rem;
}

/* ABOUT — WHAT WE OFFER ===================================== */

.about-quote {
  border-left: 2px solid var(--lime-400);
  padding-left: 1.1rem;
  margin: 1.5rem 0 0;
  font-style: italic;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.5;
}

.about-offer__text {
  color: var(--paper-70);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.about-offer__text strong {
  color: #fff;
}

.about-pill {
  gap: 0.75rem;
  background: var(--paper-08);
  border: 1px solid var(--paper-15);
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 600;
}

.about-pill svg {
  color: var(--lime-400);
  flex-shrink: 0;
}

.about-value-card__num {
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--ink-10);
}

.about-quote-banner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 3rem 2.75rem;
}

.about-quote-banner__mark {
  color: var(--lime-400);
  font-family: Georgia, serif;
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.about-quote-banner__text {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.45;
  max-width: 46rem;
}

.about-quote-banner__author {
  color: var(--paper-50);
  font-size: var(--fs-small);
  margin-top: 1.25rem;
}

/* ABOUT — WHY CUSTOMERS STAY ================================ */

.about-pillar-list {
  border-top: 1px solid var(--ink-10);
}

.about-pillar-row {
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--ink-10);
}

.about-pillar-row__num {
  width: 1.5rem;
  color: var(--ink-50);
  font-family: var(--font-heading);
  font-size: 0.85rem;
}

.about-pillar-row__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--green-700);
}

.about-pillar-row__title {
  width: 13rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--ink);
}

.about-pillar-row__desc {
  font-size: var(--fs-small);
  color: var(--ink-70);
  line-height: var(--lh-body);
  max-width: 34rem;
}

.about-pillar-row__arrow {
  color: var(--ink-20);
}

@media (max-width: 767px) {
  .about-pillar-row__title {
    width: auto;
  }

  .about-pillar-row__desc {
    max-width: none;
    flex-basis: 100%;
    padding-left: calc(1.5rem + 3rem + 1rem);
  }

  .about-pillar-row__arrow {
    display: none;
  }
}

/* DATING RDP — STEPS & CAPABILITIES ======================= */

.dating-step__num {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  background: rgba(199, 245, 63, 0.12);
  border: 1px solid rgba(199, 245, 63, 0.3);
  color: var(--lime-400);
  font-size: 0.85rem;
}

.dating-step__title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.dating-step__desc {
  color: var(--paper-70);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.dating-cap-label {
  font-size: var(--fs-badge);
  letter-spacing: 0.04em;
  color: var(--paper-50);
}

.dating-cap-link {
  color: var(--lime-400);
  text-decoration: underline;
  text-decoration-color: rgba(199, 245, 63, 0.4);
  text-underline-offset: 2px;
}

.dating-cap-link:hover {
  color: #fff;
}

/* ABOUT — HISTORY TIMELINE ================================ */

.about-timeline {
  position: relative;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--ink-10);
}

.about-timeline__item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2rem;
}

.about-timeline__item:last-child {
  padding-bottom: 0;
}

.about-timeline__dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink-20);
}

.about-timeline__item--current .about-timeline__dot {
  background: var(--lime-400);
  border-color: var(--lime-400);
  box-shadow: 0 0 0 4px rgba(199, 245, 63, 0.25);
}

.about-timeline__year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--ink);
}

.about-timeline__item--current .about-timeline__year {
  color: var(--green-700);
}

.about-timeline__badge {
  background: var(--bg-soft);
  color: var(--green-700);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
}

.about-timeline__item--current .about-timeline__badge {
  background: var(--lime-400);
  color: var(--ink);
}

.about-timeline__desc {
  color: var(--ink-70);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  max-width: 36rem;
}

/* ABOUT — OUR COMMITMENTS ================================= */

.commit-list {
  border-top: 1px solid var(--ink-10);
}

.commit-row {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--ink-10);
}

.commit-row__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--green-700);
}

.commit-row__title {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.commit-row__desc {
  color: var(--ink-70);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.inter_links{
      color: var(--green-700);
    text-decoration: underline;
    text-decoration-color: var(--ink-20);
    text-underline-offset: 2px;
}

/* BUYING GUIDE ============================================ */

.guide-toc {
  background: #fff;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 5.5rem;
}

.guide-toc__eyebrow {
  font-size: var(--fs-badge);
  color: var(--ink-50);
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.guide-toc__list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1.5rem;
}

.guide-toc__link {
  gap: 0.65rem;
  padding: 0.55rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--ink-70);
  font-size: var(--fs-small);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.guide-toc__link:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.guide-toc__link.is-active {
  background: var(--bg-soft);
  color: var(--green-700);
}

.guide-toc__num {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-10);
  color: var(--ink-50);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-heading);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.guide-toc__link:hover .guide-toc__num,
.guide-toc__link.is-active .guide-toc__num {
  background: var(--green-600);
  color: #fff;
}

#guidePanels {
  scroll-margin-top: 5.5rem;
}

.guide-card {
  padding: 1.75rem 1.85rem;
}

.guide-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--bg-soft);
  color: var(--green-700);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.guide-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.guide-card p {
  color: var(--ink-70);
}

.guide-card p + p {
  margin-top: 0.85rem;
}

.guide-card p + .table-responsive {
  margin-top: 1.1rem;
}

.guide-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.guide-checklist li {
  gap: 0.7rem;
  color: var(--ink-70);
  font-size: var(--fs-small);
}

.guide-checklist li strong {
  color: var(--ink);
}

.guide-checklist__icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  background: var(--bg-soft);
  color: var(--green-700);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.guide-table {
  --bs-table-border-color: var(--ink-10);
  font-size: var(--fs-small);
}

.guide-table thead th {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--ink-50);
}

.os-panel__copy{
  width:75%
}

@media(max-width:1440px) {
  .grid {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .finder-chip {
    gap: 0.25rem;
    font-size: 13px;
    padding: 0.6rem .75rem;
}
}

@media (max-width: 767px) {
  .pricing-guarantees{
    gap: 10px !important;
  }

  .btn {
    padding: 11px 8px;
}

  .footer-newsletter__input {
    padding: 0.7rem .5rem;
    min-width: 180px;
}
  .cta-banner {
    padding: 28px;
    gap: 1.75rem;
}
  .pricing-cycle__btn {
    padding: 0.2rem .8rem;
}
  .grid {
    gap: 6px;
    margin-bottom: 12px;
  }

  .hero-stat {
    padding: 8px;
  }

  .hero-stat__value {
    font-size: 18px;
  }

  .pb-80 {
    padding-bottom: 50px;
}
.pt-80 {
    padding-top: 50px;
}
}
@media (max-width: 575px) {
  .pricing-secure {
    align-items: center !important;
    justify-content: center;
    width: 100%;
}
}