/* PRICING PAGE — original inline CSS */
/* ══════════════════════════════════════════════════════════ */
/* ============================================ */
/* BUTTONS */
/* ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r-lg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   PILL TAB BILLING TOGGLE
   ══════════════════════════════════════════════════════════ */
.billing-tabs {
  display: inline-flex;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  padding: 4px;
  gap: 4px;
  margin-bottom: 0.75rem;
}
.billing-tab {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.55rem 1.35rem;
  border-radius: var(--r-full);
  border: none;
  background: transparent;
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.billing-tab:hover {
  color: var(--text);
}
.billing-tab.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(43, 102, 230, 0.35);
}

/* ── SAVE ROW ────────────────────────────────────── */
.pricing-save-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

/* ══════════════════════════════════════════════════════════
   PRICING HERO — overrides on top of portfolio-hero-new
   ══════════════════════════════════════════════════════════ */
.pricing-hero-new {
  min-height: auto;
  padding: 130px 2rem 4rem;
}
.pricing-hero-new .phn-h1 {
  margin-bottom: 0;
}
.pricing-hero-new .phn-cycle-wrap {
  height: clamp(3rem, 5.5vw, 4.6rem);
  margin-bottom: 0;
}
.pricing-hero-new .phn-sub {
  margin-bottom: 2rem;
}
.pricing-hero-new .phn-guarantee {
  margin-top: 0;
  color: var(--text-3);
}
.pricing-hero-new .phn-guar-item i {
  color: var(--green);
}
.pricing-hero-new .phn-guar-item:last-child i {
  color: var(--amber);
}

@media (max-width: 600px) {
  .billing-tabs {
    flex-direction: column;
    border-radius: var(--r-xl);
    width: 100%;
    max-width: 300px;
  }
  .billing-tab {
    border-radius: var(--r-lg);
    text-align: center;
    width: 100%;
  }
  .pricing-hero-new {
    padding: 100px 1.25rem 3rem;
  }
  .pricing-hero-new .phn-guarantee {
    gap: 0.65rem;
    font-size: 0.7rem;
  }
}
@media (max-width: 375px) {
  .pricing-hero-new {
    padding: 90px 1rem 2.5rem;
  }
}

/* ─────────────────────────────────────────────────────── */
/* PAGE HEADER (replaces hero — compact, immediate) */

/* ============================================ */
/* ============================================ */
/* BILLING TOGGLE                           */
/* ============================================ */
/* ============================================ */
.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.billing-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.25s;
}
.billing-label.active {
  color: var(--text);
}
.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--bg-4);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-full);
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.toggle-switch.on {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-color: var(--accent);
}
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.toggle-switch.on .toggle-knob {
  transform: translateX(24px);
}
.save-pill {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.7rem;
  border-radius: var(--r-full);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

/* ─────────────────────────────────────────────────────── */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* PRICING CARDS                            */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* ─────────────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
.plan-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
}
.plan-card.featured {
  background: linear-gradient(160deg, #0f1928 0%, #0a0c10 100%);
  border-color: var(--accent);
  border-width: 1.5px;
  overflow: hidden;
  padding-top: 0;
  box-shadow:
    var(--blue-glow-lg),
    0 0 0 1px rgba(43, 102, 230, 0.1);
  transform: translateY(-8px);
}
.plan-card.featured:hover {
  transform: translateY(-14px);
}

/* ── MOST POPULAR BANNER — full-width flush top strip ── */
.plan-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(90deg, var(--accent) 0%, #3d7bff 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  /* break out of card padding to sit flush */
  margin: 0 -2rem 1.75rem;
  white-space: nowrap;
  position: relative;
}
.plan-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.plan-tagline {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.plan-price-block {
  margin-bottom: 0.5rem;
}
.plan-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  transition: all 0.4s var(--ease);
}
.plan-price .currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.3rem;
}
.plan-price .period {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-3);
  margin-left: 0.1rem;
}
.plan-was {
  font-size: 0.82rem;
  color: var(--text-3);
  text-decoration: line-through;
  margin-top: 0.2rem;
  min-height: 1.1rem;
  transition: all 0.3s;
}
.plan-annual-save {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green);
  margin-top: 0.25rem;
  min-height: 1.1rem;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.35s var(--ease);
}
.annual-active .plan-annual-save {
  opacity: 1;
  transform: translateY(0);
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.plan-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.plan-features li:last-child {
  border-bottom: none;
}
.plan-features li .fi {
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.fi-yes {
  color: var(--green);
}
.fi-no {
  color: var(--text-3);
}
.plan-features li.dim {
  color: var(--text-3);
}
.plan-note {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.plan-note i {
  color: var(--accent);
}
.plan-cta {
  width: 100%;
  text-align: center;
}
.plan-sub {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 0.6rem;
}
.plan-sub i {
  color: var(--green);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* COMPARE ROW BELOW CARDS                  */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.plan-agency-compare {
  background: rgba(43, 102, 230, 0.06);
  border: 1px dashed rgba(43, 102, 230, 0.2);
  border-radius: var(--r-md);
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text-2);
  margin-bottom: 0.9rem;
  line-height: 1.4;
}
.plan-agency-compare strong {
  color: var(--green);
}

/* ─────────────────────────────────────────────────────── */
/* VALUE BAR CHART (visual feature breakdown) */
/* ─────────────────────────────────────────────────────── */
.value-chart-section {
  padding: 5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.value-chart-header {
  text-align: center;
  margin-bottom: 3rem;
}
.value-chart-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.value-chart-header p {
  color: var(--text-2);
  font-size: 1rem;
}

.value-chart {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.vc-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr 1fr;
  align-items: center;
  gap: 1rem;
}
.vc-row.header-row {
  margin-bottom: 0.5rem;
}
.vc-label {
  font-size: 0.82rem;
  color: var(--text-2);
  font-weight: 500;
  line-height: 1.3;
}
.vc-plan-head {
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vc-plan-head.feat {
  color: var(--accent);
}
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* BAR FILL KEYFRAME                        */
/* ============================================ */
/* ============================================ */
/* ============================================ */
@keyframes barFill {
  from {
    width: 0%;
  }
  to {
    width: var(--bar-target);
  }
}
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* SHIMMER SWEEP AFTER FILL                 */
/* ============================================ */
/* ============================================ */
/* ============================================ */
@keyframes barShimmer {
  0% {
    transform: translateX(-100%) skewX(-12deg);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(300%) skewX(-12deg);
    opacity: 0;
  }
}

.vc-bar-wrap {
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
}
.vc-bar {
  height: 100%;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  width: 0%; /* ============================================ */
  /* ============================================ */
  /* ============================================ */
  /* START COLLAPSED                          */
  /* ============================================ */
  /* ============================================ */
  /* ============================================ */
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* SHIMMER PSEUDO-ELEMENT                   */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.vc-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: translateX(-100%) skewX(-12deg);
  opacity: 0;
  pointer-events: none;
}
/* Safari-safe: JS sets width directly via style, CSS handles transition */
.vc-bar {
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.vc-bar.animate::after {
  animation: barShimmer 0.7s ease 0.95s forwards;
}

.vc-bar.c1 {
  background: rgba(43, 102, 230, 0.28);
  color: var(--accent);
  --bar-dur: 0.85s;
}
.vc-bar.c2 {
  background: linear-gradient(
    90deg,
    rgba(43, 102, 230, 0.55),
    rgba(6, 182, 212, 0.45)
  );
  color: #bae6fd;
  --bar-dur: 0.95s;
}
.vc-bar.c3 {
  background: rgba(43, 102, 230, 0.2);
  color: var(--accent);
  --bar-dur: 0.8s;
}
.vc-bar.none {
  background: rgba(255, 255, 255, 0.03);
  /* ============================================ */
  /* ============================================ */
  /* ============================================ */
  /* NO FILL ANIMATION NEEDED                 */
  /* ============================================ */
  /* ============================================ */
  /* ============================================ */
  width: 100% !important;
  animation: none !important;
}
.vc-bar-text {
  font-size: 0.76rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  height: 36px;
  padding-left: 0.5rem;
}

/* ─────────────────────────────────────────────────────── */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* FULL COMPARISON TABLE                    */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* ─────────────────────────────────────────────────────── */
.comparison-section {
  padding: 5rem 0;
}

.comp-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.comp-table thead tr th {
  padding: 1.2rem 1rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.comp-table thead tr th:first-child {
  text-align: left;
  color: var(--text-3);
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
}
.comp-table thead tr th.feat-col {
  color: var(--accent);
  background: rgba(43, 102, 230, 0.07);
  position: relative;
}
.comp-table thead tr th.feat-col::after {
  content: "★ MOST POPULAR";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  font-size: 0.62rem;
  padding: 0.15rem 0.7rem;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.08em;
}
.comp-table thead tr th .th-price {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-top: 0.3rem;
}
.comp-table thead tr th .th-annual {
  font-size: 0.7rem;
  color: var(--green);
  display: block;
  margin-top: 0.15rem;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* CATEGORY GROUP ROWS                      */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.comp-table tbody tr.cat-row td {
  background: rgba(43, 102, 230, 0.04);
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 1px solid var(--border);
}
.comp-table tbody tr.cat-row td.feat-col {
  background: rgba(43, 102, 230, 0.08);
}
.comp-table tbody tr td {
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.comp-table tbody tr td:first-child {
  color: var(--text);
  font-weight: 500;
  text-align: left;
}
.comp-table tbody tr td {
  text-align: center;
}
.comp-table tbody tr td.feat-col {
  background: rgba(43, 102, 230, 0.04);
}
.comp-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.comp-table tbody tr:hover td.feat-col {
  background: rgba(43, 102, 230, 0.08);
}
.comp-table tr.cta-row td {
  padding: 1.25rem;
  border-bottom: none;
  background: var(--bg-2);
}
.comp-table tr.cta-row td.feat-col {
  background: rgba(43, 102, 230, 0.06);
}
.ic-yes {
  color: var(--green);
}
.ic-no {
  color: var(--text-3);
}

/* ─────────────────────────────────────────────────────── */
/* WHAT YOU'RE REALLY PAYING (value framing) */
/* ─────────────────────────────────────────────────────── */
.value-frame-section {
  padding: 5rem 0;
}
.value-frame-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.vf-card {
  background: var(--bg-2);
  padding: 2rem 2.25rem;
  position: relative;
}
.vf-card.highlight {
  background: var(--bg-3);
}
.vf-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}
.vf-cost {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.vf-cost.red {
  color: #f87171;
}
.vf-cost.green {
  color: var(--green);
}
.vf-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}
.vf-items {
  list-style: none;
  margin-top: 0.85rem;
}
.vf-items li {
  font-size: 0.8rem;
  color: var(--text-3);
  padding: 0.2rem 0;
  display: flex;
  gap: 0.5rem;
}
.vf-items li i {
  color: var(--text-3);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}
.vf-items li.green i {
  color: var(--green);
}
.vf-items li.green {
  color: var(--text-2);
}

/* ─────────────────────────────────────────────────────── */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* SOCIAL PROOF / TESTIMONIALS              */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* ─────────────────────────────────────────────────────── */
.proof-section {
  padding: 5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.proof-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.proof-card:hover {
  transform: translateY(-4px);
}
.proof-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.proof-result {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--green);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: 0.85rem;
}
.proof-text {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
  font-style: italic;
}
.proof-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.proof-name {
  font-size: 0.82rem;
  font-weight: 700;
}
.proof-role {
  font-size: 0.75rem;
  color: var(--text-3);
}
.proof-verify {
  font-size: 0.7rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.15rem;
  text-decoration: none;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* STATS BAR INSIDE PROOF SECTION           */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.proof-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2.5rem;
  margin: 2.5rem 0;
  background: var(--bg-4);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}
.ps-item {
  text-align: center;
}
.ps-value {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.ps-label {
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: 0.25rem;
}

/* ─────────────────────────────────────────────────────── */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* CAPACITY ALERT                           */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* ─────────────────────────────────────────────────────── */
.capacity-section {
  background: rgba(245, 158, 11, 0.05);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
  padding: 1.25rem 0;
}
.capacity-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  flex-wrap: wrap;
}
.capacity-inner i {
  color: var(--amber);
  font-size: 1.1rem;
}
.capacity-inner p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  margin: 0;
}
.capacity-inner strong {
  color: #fde68a;
}
.cap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: blink 1.5s ease infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ─────────────────────────────────────────────────────── */
/* FAQ */
/* ─────────────────────────────────────────────────────── */
.faq-section {
  padding: 5rem 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 900px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────── */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* BOTTOM CTA                               */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* ─────────────────────────────────────────────────────── */
.bottom-cta {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.bottom-cta::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse at center top,
    rgba(43, 102, 230, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.bottom-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.bottom-cta p {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.bottom-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.bottom-guarantee {
  font-size: 0.8rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
}
.bottom-guarantee i {
  color: var(--green);
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: 280px;
}

/* ============================================ */
/* ============================================ */
/* RESPONSIVE                               */
/* ============================================ */
/* ============================================ */
@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-card.featured {
    transform: none;
  }
  .plan-card.featured:hover {
    transform: translateY(-6px);
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vc-row {
    grid-template-columns: 140px 1fr 1fr 1fr;
  }
  .value-frame-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 6.5rem 0 2.5rem;
  }
  .plans-grid {
    max-width: 100%;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-stats {
    gap: 2rem;
  }
  .vc-row {
    grid-template-columns: 100px 1fr 1fr 1fr;
    gap: 0.5rem;
  }
  .vc-bar .vc-bar-text {
    display: none;
  }
  .bottom-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .bottom-cta-actions .btn {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .billing-toggle-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .vc-row {
    grid-template-columns: 80px 1fr 1fr 1fr;
    gap: 0.35rem;
  }
  .vc-label {
    font-size: 0.72rem;
  }
}

.guarantee-block {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.06) 0%,
    rgba(16, 185, 129, 0.02) 100%
  );
  border: 1.5px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--r-xl);
  padding: 2.5rem 3rem;
  margin: 3rem 0;
}
.guarantee-icon {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
}
.guarantee-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: #34d399;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.guarantee-body {
  color: var(--text-2);
  line-height: 1.7;
  font-size: 0.975rem;
}
.guarantee-body strong {
  color: var(--text);
}
@media (max-width: 600px) {
  .guarantee-block {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
  }
}

/* ══════════════════════════════════════════════════════════ */

.pricing-page .hero {
  padding: 130px 4rem 80px;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
  display: block;
  min-height: auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(43, 102, 230, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(43, 102, 230, 0);
  }
}
.pricing-page .hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.pricing-page .hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.pricing-page .hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.pricing-page .hero-sub strong {
  color: var(--text);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* BILLING TOGGLE                           */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.billing-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}
.billing-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-3);
  transition: color 0.2s;
  cursor: pointer;
}
.billing-label.active {
  color: var(--text);
}
.toggle-sw {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  position: relative;
  cursor: pointer;
  transition: background 0.25s;
  flex-shrink: 0;
}
.toggle-sw.on {
  background: var(--accent);
  border-color: var(--accent);
}
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toggle-sw.on .toggle-knob {
  left: 23px;
}
.save-pill {
  display: inline-flex;
  align-items: center;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.pricing-page .proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding: 0.85rem 2rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-3);
}
.pricing-page .proof-strip span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ps-sep {
  color: var(--border-2);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* PLANS GRID                               */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.plans-section {
  padding: 0 2rem 5rem;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.plan-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 2rem;
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.plan-card:hover {
  border-color: rgba(43, 102, 230, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.plan-card.featured {
  background: linear-gradient(160deg, #0f1928 0%, #0a0c10 100%);
  border-color: var(--accent);
  border-width: 1.5px;
  overflow: hidden;
  padding-top: 0;
  box-shadow:
    0 0 0 1px rgba(43, 102, 230, 0.25),
    0 24px 64px rgba(43, 102, 230, 0.15),
    inset 0 0 0 1px rgba(43, 102, 230, 0.1);
}
.plan-card.featured:hover {
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 32px 80px rgba(43, 102, 230, 0.25),
    inset 0 0 0 1px rgba(43, 102, 230, 0.25);
  transform: translateY(-6px);
}
/* plan-badge defined above — shared rule */
.roi-frame {
  background: rgba(43, 102, 230, 0.06);
  border: 1px solid rgba(43, 102, 230, 0.15);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.55;
}
.roi-frame strong {
  color: var(--accent);
}
.plan-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}
.plan-card.featured .plan-name {
  color: var(--accent);
}
.plan-tagline {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.agency-compare {
  font-size: 0.74rem;
  color: var(--text-3);
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.4rem 0.7rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.agency-compare strong {
  color: var(--text-2);
}
.plan-price-block {
  margin-bottom: 1.25rem;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  line-height: 1;
}
.currency {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-2);
  align-self: flex-start;
  margin-top: 0.35rem;
}
.price-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.plan-card.featured .price-num {
  color: var(--accent);
}
.period {
  font-size: 0.9rem;
  color: var(--text-3);
  margin-left: 0.15rem;
}
.plan-was {
  font-size: 0.75rem;
  color: var(--text-3);
  text-decoration: line-through;
  min-height: 1.2em;
  margin-top: 0.2rem;
}
.annual-save {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--green);
  display: none;
}
.annual-active .annual-save {
  display: block;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.plan-card.featured .plan-divider {
  background: rgba(43, 102, 230, 0.2);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.45;
}
.plan-features li.dim {
  color: var(--text-3);
}
.fi {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.fi-yes {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}
.fi-no {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-3);
}
.plan-note {
  font-size: 0.75rem;
  color: var(--text-3);
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.45rem 0.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.plan-note i {
  color: var(--accent);
}
.btn-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-md);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
  background: var(--accent);
  color: #fff;
}
.btn-orange:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(43, 102, 230, 0.35);
}
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-md);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.plan-sub {
  text-align: center;
  font-size: 0.73rem;
  color: var(--text-3);
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.plan-sub i {
  color: var(--green);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.tag-orange {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}
.tag-gray {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-3);
}
.pricing-page .section {
  padding: 5rem 2rem;
}
.pricing-page .section-sm {
  padding: 3rem 2rem;
}
.pricing-page .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pricing-page .section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.pricing-page .section-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* COMPARISON TABLE                         */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.comp-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.comp-table thead th {
  background: var(--bg-2);
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
}
.comp-table thead th:first-child {
  color: var(--text-3);
  font-size: 0.78rem;
  font-weight: 600;
}
.comp-table thead th.col-featured {
  background: rgba(43, 102, 230, 0.06);
}
.th-price {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
  margin-top: 0.15rem;
}
.th-annual {
  display: none;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green);
}
.annual-active .th-annual {
  display: block;
}
.comp-table tbody td {
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
}
.comp-table tbody td.col-featured {
  background: rgba(43, 102, 230, 0.03);
}
.comp-table tbody tr:last-child td {
  border-bottom: none;
}
.comp-table .cat-row td {
  background: var(--bg-3);
  color: var(--text-3);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.5rem;
}
.comp-table .cta-row td {
  padding: 1.5rem;
}
.ic-yes {
  color: var(--green);
}
.ic-no {
  color: rgba(255, 255, 255, 0.15);
}
.comp-table .feat-name {
  color: var(--text);
  font-weight: 500;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* VALUE FRAME                              */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.vf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}
.vf-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
}
.vf-card.good {
  border-color: var(--accent-border);
  background: rgba(43, 102, 230, 0.04);
}
.vf-card.great {
  border-color: var(--green-border);
  background: var(--green-dim);
}
.vf-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.vf-cost {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.vf-cost.red {
  color: var(--red);
}
.vf-cost.orange {
  color: var(--accent);
}
.vf-cost.green {
  color: var(--green);
}
.vf-desc {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.vf-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vf-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.4;
}
.vf-items li i {
  margin-top: 2px;
  flex-shrink: 0;
}
.vf-items li i.fa-check {
  color: var(--green);
}
.vf-items li i.fa-times {
  color: var(--red);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* HOW IT WORKS                             */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.hiw-steps {
  list-style: none;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.hiw-step:last-child {
  border-bottom: none;
}
.hiw-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(43, 102, 230, 0.35);
}
.hiw-content {
  flex: 1;
}
.hiw-content strong {
  font-size: 0.95rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
}
.hiw-content span {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* TESTIMONIALS PRICING VERSION             */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.pricing-page .testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pricing-page .testi-stars {
  color: var(--amber);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.testi-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.testi-card:hover {
  border-color: rgba(43, 102, 230, 0.2);
  transform: translateY(-3px);
}
.testi-result {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.testi-quote {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.testi-role {
  font-size: 0.74rem;
  color: var(--text-3);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* GUARANTEE BOX                            */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.guarantee-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-2xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee-box::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(43, 102, 230, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.guarantee-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.guarantee-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.guarantee-body {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 1.75rem;
}
.growth-promise {
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  text-align: left;
}
.gp-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.gp-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.gp-body {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}
.g-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  margin-bottom: 2rem;
}
.g-point {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-2);
}
.g-point i {
  color: var(--green);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* ROI CALCULATOR                           */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.roi-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}
.roi-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.roi-plan-btns {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.roi-plan-btn {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.roi-plan-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.roi-field {
  margin-bottom: 1.25rem;
}
.roi-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 0.4rem;
}
.roi-input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 0.65rem 1rem;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.roi-input:focus {
  border-color: var(--accent);
}
.roi-result {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-align: center;
}
.roi-result-label {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.roi-result-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.roi-result-sub {
  font-size: 0.78rem;
  color: var(--text-3);
}
.roi-breakdown {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.roi-row span:first-child {
  color: var(--text-3);
}
.roi-row span:last-child {
  font-weight: 600;
  color: var(--text-2);
}
.roi-row.total span:last-child {
  color: var(--green);
  font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
  padding: 6rem 2rem;
  text-align: center;
}
.final-cta-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.final-cta-box::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(43, 102, 230, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.final-cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.final-cta-box h2 span {
  color: var(--accent);
}
.final-cta-box p {
  font-size: 0.95rem;
  color: var(--text-2);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.final-risk {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 1rem;
}
.final-risk i {
  color: var(--green);
}

/* WA float */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* PROOF STATS BAR                          */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.proof-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.ps-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
}
.ps-item:last-child {
  border-right: none;
}
.ps-value {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.ps-label {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 0.25rem;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* PRICING FAQ                              */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}
.pricing-page .faq-item {
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  overflow: visible;
  transition:
    background 0.2s,
    border-color 0.2s;
  margin-bottom: 0;
}
.pricing-page .faq-item:first-child {
  border-top: 1px solid var(--border);
}
.pricing-page .faq-item.open {
  background: rgba(43, 102, 230, 0.03);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-left: -1rem;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-q-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s;
}
.pricing-page .faq-item.open .faq-q-text {
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s;
}
.pricing-page .faq-item.open .faq-answer {
  max-height: 1200px;
  padding-bottom: 1.25rem;
}
.faq-answer-inner {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
  padding: 0.5rem 0.75rem;
  border-left: 2px solid rgba(43, 102, 230, 0.3);
  padding-left: 1rem;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* MOBILE BAR PRICING                       */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.pricing-page .mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  gap: 0.6rem;
}
.mb-wa {
  background: #25d366;
  color: #fff;
}
.mb-call {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-2);
}

body.pricing-page {
  background: var(--bg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* PRICING SCROLL BAR                       */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.pricing-page #scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* PRICING RESPONSIVE                       */
/* ============================================ */
/* ============================================ */
/* ============================================ */
@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .pricing-page .testi-grid {
    grid-template-columns: 1fr;
  }
  .roi-box {
    grid-template-columns: 1fr;
  }
  .vf-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .pricing-page .hero {
    padding: 90px 1.25rem 0;
  }
  .pricing-page .section,
  .final-cta {
    padding: 3.5rem 1.25rem;
  }
  .guarantee-box {
    padding: 2rem 1.25rem;
  }
  .roi-box {
    padding: 1.5rem;
  }
  .pricing-page .mobile-bar {
    display: flex;
  }
  .wa-float {
    bottom: 80px;
  }
  .ps-item {
    min-width: 100px;
  }
  .comp-table {
    font-size: 0.78rem;
  }
  .comp-table thead th,
  .comp-table tbody td {
    padding: 0.75rem;
  }
}

/* extracted from portfolio.html */
/* BADGE — visible on all portfolio cards at all times */
.p-preview-pill {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #f59e0b;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-family: var(--mono, monospace);
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.p-preview-pill i {
  font-size: 0.55rem;
}

/* -- BRAND COLOUR OVERRIDE (new #2B66E6) --- */
:root {
  --brand: #2b66e6;
  --brand-dim: rgba(43, 102, 230, 0.1);
  --brand-border: rgba(43, 102, 230, 0.25);
}
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* OVERRIDE TRUST BAR ICON COLOUR           */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.phn-trust-item i {
  color: #2b66e6 !important;
}
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* FEATURED RESULTS EYEBROW & INDUSTRY PILLS*/
/* ============================================ */
/* ============================================ */
/* ============================================ */
.fr-eyebrow {
  color: #2b66e6 !important;
  border-color: rgba(43, 102, 230, 0.22) !important;
  background: rgba(43, 102, 230, 0.07) !important;
}
.cs-industry {
  color: #2b66e6 !important;
  border-color: rgba(43, 102, 230, 0.2) !important;
  background: rgba(43, 102, 230, 0.07) !important;
}
.cs-timeline i {
  color: #2b66e6 !important;
}
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* PROCESS SECTION NUMBERS                  */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.proc-num {
  border-color: rgba(43, 102, 230, 0.35) !important;
  color: #2b66e6 !important;
}
.proc-step:first-child .proc-num {
  background: #2b66e6 !important;
  color: #fff !important;
  box-shadow:
    0 0 0 6px rgba(43, 102, 230, 0.12),
    0 4px 20px rgba(43, 102, 230, 0.3) !important;
}
.proc-steps::before {
  background: linear-gradient(
    90deg,
    rgba(43, 102, 230, 0.1),
    rgba(43, 102, 230, 0.3),
    rgba(43, 102, 230, 0.1)
  ) !important;
}
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* WHY US ICONS                             */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.wu-icon {
  color: #2b66e6 !important;
  border-color: rgba(43, 102, 230, 0.18) !important;
  background: rgba(43, 102, 230, 0.08) !important;
}
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* SCROLL LINE IN NEW HERO                  */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.phn-scroll-line {
  background: linear-gradient(to bottom, #2b66e6, transparent) !important;
}
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* CASE STUDY RESULT GRADIENT PANEL         */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.cs-result {
  background: linear-gradient(
    160deg,
    rgba(43, 102, 230, 0.06),
    rgba(43, 102, 230, 0.02)
  ) !important;
}
/* prc metric vals in old hero card (removed, no-op) */

/* • • FEATURED RESULTS • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • */
.featured-results {
  padding: 5rem 0 4rem;
  position: relative;
}
.featured-results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(43, 102, 230, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.fr-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.fr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2b66e6;
  margin-bottom: 1rem;
  padding: 0.28rem 0.9rem;
  border: 1px solid rgba(43, 102, 230, 0.22);
  border-radius: 4px;
  background: rgba(43, 102, 230, 0.07);
}
.fr-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.9rem;
}
.fr-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}
.cs-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cs-card {
  display: grid;
  grid-template-columns: 1fr 1fr 260px;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.cs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #2b66e6;
  opacity: 0;
  transition: opacity 0.3s;
}
.cs-card:hover {
  border-color: rgba(43, 102, 230, 0.28);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
}
.cs-card:hover::before {
  opacity: 1;
}
.cs-info {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.cs-industry {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2b66e6;
  padding: 0.2rem 0.65rem;
  background: rgba(43, 102, 230, 0.08);
  border: 1px solid rgba(43, 102, 230, 0.2);
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 0.2rem;
}
.cs-client {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cs-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
}
.cs-timeline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.67rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.25rem;
}
.cs-timeline i {
  color: #2b66e6;
  font-size: 0.62rem;
}
.cs-ba {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.cs-ba-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
}
.cs-ba-item.before {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.12);
}
.cs-ba-item.after {
  background: rgba(0, 198, 122, 0.05);
  border: 1px solid rgba(0, 198, 122, 0.15);
}
.cs-ba-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cs-ba-item.before .cs-ba-label {
  color: #ef4444;
}
.cs-ba-item.after .cs-ba-label {
  color: #00c67a;
}
.cs-ba-text {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.55;
}
.cs-result {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(43, 102, 230, 0.05);
  text-align: center;
}
.cs-result-big {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: #00c67a;
  line-height: 1;
  letter-spacing: -0.04em;
}
.cs-result-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.5;
  max-width: 180px;
}
.cs-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.cs-cta:hover {
  background: rgba(37, 211, 102, 0.18);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .cs-card {
    grid-template-columns: 1fr;
  }
  .cs-info,
  .cs-ba {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .cs-result {
    padding: 1.5rem;
  }
}
/* • • PROCESS • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • */
.process-section {
  padding: 5rem 0 4.5rem;
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.proc-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.proc-steps::before {
  content: "";
  position: absolute;
  top: 2.1rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(43, 102, 230, 0.1),
    rgba(43, 102, 230, 0.35),
    rgba(43, 102, 230, 0.1)
  );
  z-index: 0;
}
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}
.proc-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(43, 102, 230, 0.4);
  background: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  color: #2b66e6;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 6px rgba(43, 102, 230, 0.06);
}
.proc-step:first-child .proc-num {
  background: #2b66e6;
  border-color: transparent;
  color: #fff;
  box-shadow:
    0 0 0 6px rgba(43, 102, 230, 0.12),
    0 4px 20px rgba(43, 102, 230, 0.3);
}
.proc-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.proc-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
}
.proc-cta-wrap {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 750px) {
  .proc-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .proc-steps::before {
    display: none;
  }
}
@media (max-width: 480px) {
  .proc-steps {
    grid-template-columns: 1fr;
  }
}
/* • • WHY US • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • */
.why-us-section {
  padding: 5rem 0 4.5rem;
}
.wu-header {
  text-align: center;
  margin-bottom: 3rem;
}
.wu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.wu-card {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition:
    border-color 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}
.wu-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  background: #2b66e6;
  transition: opacity 0.25s;
}
.wu-card:hover {
  border-color: rgba(43, 102, 230, 0.25);
  transform: translateY(-3px);
}
.wu-card:hover::after {
  opacity: 1;
}
.wu-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(43, 102, 230, 0.09);
  border: 1px solid rgba(43, 102, 230, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b66e6;
  font-size: 0.95rem;
}
.wu-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.wu-desc {
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.65;
}
@media (max-width: 750px) {
  .wu-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .wu-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --brand: #2b66e6;
  --brand-dim: rgba(43, 102, 230, 0.12);
  --brand-border: rgba(43, 102, 230, 0.28);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* HERO --------------------------------------------------*/
/* ============================================ */
/* ============================================ */
/* ============================================ */
.portfolio-hero-new {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 2rem 5rem;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* VERY SUBTLE RADIAL GLOW BEHIND THE TEXT  */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.portfolio-hero-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 60% at 50% 42%,
    rgba(43, 102, 230, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* fine grid — replacing dots, matching contact page style */
.portfolio-hero-new::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black, transparent);
}

.phn-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
}

/* label */
.phn-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono, monospace);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
  margin-bottom: 2rem;
  padding: 0.26rem 0.8rem;
  border: 1px solid var(--brand-border);
  border-radius: 4px;
  background: var(--brand-dim);
  opacity: 0;
  animation: hero-up 0.55s cubic-bezier(0.23, 1, 0.32, 1) 0.05s forwards;
}
.phn-label-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

/* headline */
.phn-h1 {
  font-family: var(--font-head, "Outfit", sans-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.06;
  color: var(--text, #eef2ff);
  margin-bottom: 0;
  opacity: 0;
  animation: hero-up 0.55s cubic-bezier(0.23, 1, 0.32, 1) 0.14s forwards;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* TYPING LINE                              */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.phn-typing-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.3rem 0 0;
  height: clamp(3.2rem, 5.5vw, 4.8rem);
  opacity: 0;
  animation: hero-up 0.55s cubic-bezier(0.23, 1, 0.32, 1) 0.23s forwards;
}

.phn-typed-for {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.06;
  color: var(--text-2, #8b96b5);
  flex-shrink: 0;
}

.phn-typed-word {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.06;
  color: var(--brand);
  white-space: nowrap;
  min-width: 2px;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* BLINKING CURSOR                          */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.phn-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--brand);
  border-radius: 2px;
  vertical-align: middle;
  flex-shrink: 0;
  animation: cursor-blink 0.9s step-end infinite;
}
@keyframes cursor-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* sub */
.phn-sub {
  font-size: 1rem;
  color: var(--text-2, #8b96b5);
  line-height: 1.8;
  max-width: 480px;
  margin: 1.75rem auto 2.5rem;
  opacity: 0;
  animation: hero-up 0.55s cubic-bezier(0.23, 1, 0.32, 1) 0.32s forwards;
}

/* CTAs */
.phn-ctas {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  animation: hero-up 0.55s cubic-bezier(0.23, 1, 0.32, 1) 0.41s forwards;
}
.phn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.25);
}
.phn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.38);
}
.phn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.11);
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.phn-cta-secondary:hover {
  border-color: rgba(43, 102, 230, 0.4);
  color: var(--brand);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* GUARANTEE LINE                           */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.phn-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-3, #3e4f6e);
  font-weight: 600;
  font-family: var(--mono);
  opacity: 0;
  animation: hero-up 0.55s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}
.phn-guar-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.phn-guar-item i {
  color: #00c67a;
  font-size: 0.7rem;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* SCROLL INDICATOR                         */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.phn-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  opacity: 0.28;
  animation: phn-bob 3s ease-in-out infinite 1s;
}
.phn-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--brand), transparent);
}
.phn-scroll-lbl {
  font-size: 0.58rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--mono);
}

/* trust bar */
.phn-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0.85rem 2rem;
  background: var(--ink-2, #0b0e16);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--text-2, #8b96b5);
  font-weight: 600;
}
.phn-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.phn-trust-item i {
  color: var(--brand);
}
.phn-trust-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
}

/* keyframes */
@keyframes hero-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes phn-bob {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(5px);
  }
}

@media (max-width: 600px) {
  .portfolio-hero-new {
    padding: 110px 1.5rem 4rem;
    min-height: 80vh;
  }
  .phn-h1,
  .phn-typed-word,
  .phn-typed-for {
    font-size: 2.1rem;
  }
  .phn-ctas {
    flex-direction: column;
    align-items: center;
  }
  .phn-cta-primary,
  .phn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  .phn-guarantee {
    gap: 0.85rem;
  }
}

/* ============================================================

/* ============================================================
   ANIMATION ENHANCEMENTS — pricing.css additions
   Font cycling · Reveal animations · Count-up · HIW Process
   ============================================================ */

/* ── FONT CYCLE ELEMENT ─────────────────────────────────── */
#font-cycle-text {
  display: inline-block;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, filter, transform;
}
#font-cycle-text.cycling-out {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-12px) scale(0.96);
}
#font-cycle-text.cycling-in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

/* ── HERO ENTRANCE ANIMATIONS ───────────────────────────── */
.hero-eyebrow {
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s forwards;
}
.pricing-page .hero h1 {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.25s forwards;
}
.pricing-page .hero-sub {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.65s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}
.billing-wrap {
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.55s forwards;
}
.proof-strip {
  opacity: 0;
  animation: heroFadeUp 0.55s ease 0.7s forwards;
}
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── REVEAL ANIMATION CLASSES (scroll-triggered via JS) ─── */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.reveal-blur {
  opacity: 0;
  filter: blur(12px);
  transition:
    opacity 0.7s var(--ease),
    filter 0.7s var(--ease);
}
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-blur.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ── PROOF STATS — staggered count-up items ─────────────── */
.proof-stats .ps-item {
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.proof-stats .ps-item.visible {
  opacity: 1;
  transform: none;
}
.proof-stats .ps-item:nth-child(1) {
  transition-delay: 0s;
}
.proof-stats .ps-item:nth-child(2) {
  transition-delay: 0.08s;
}
.proof-stats .ps-item:nth-child(3) {
  transition-delay: 0.16s;
}
.proof-stats .ps-item:nth-child(4) {
  transition-delay: 0.24s;
}
.proof-stats .ps-item:nth-child(5) {
  transition-delay: 0.32s;
}

/* ── HOW IT WORKS — ANIMATED PROCESS TIMELINE ───────────── */
.hiw-process {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 0.5rem 0 0;
}
.hiw-timeline-track {
  position: absolute;
  left: 28px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--border);
  z-index: 0;
  overflow: hidden;
}
.hiw-timeline-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent) 0%, #5b8fff 100%);
  transition: height 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 2px;
}

/* step row */
.hiw-process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.hiw-process-step.step-visible {
  opacity: 1;
  transform: none;
}
.hiw-process-step:nth-child(2) {
  transition-delay: 0.12s;
}
.hiw-process-step:nth-child(3) {
  transition-delay: 0.24s;
}
.hiw-process-step:nth-child(4) {
  transition-delay: 0.36s;
}
.hiw-process-step:nth-child(5) {
  transition-delay: 0.48s;
}

/* icon column */
.hiw-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 58px;
}
.hiw-icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition:
    border-color 0.4s,
    background 0.4s,
    box-shadow 0.4s;
}
.hiw-process-step.step-visible .hiw-icon-ring {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(43, 102, 230, 0.3);
}
.hiw-step-num-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  border: 2px solid var(--bg-2);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.hiw-process-step.step-visible .hiw-step-num-badge {
  transform: scale(1);
}
.hiw-step-pill {
  margin-top: 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(43, 102, 230, 0.1);
  border: 1px solid rgba(43, 102, 230, 0.2);
  border-radius: var(--r-full);
  padding: 0.18rem 0.55rem;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.3s ease 0.45s,
    transform 0.3s ease 0.45s;
  white-space: nowrap;
}
.hiw-process-step.step-visible .hiw-step-pill {
  opacity: 1;
  transform: scale(1);
}

/* content column */
.hiw-body {
  flex: 1;
  padding-top: 0.5rem;
}
.hiw-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.hiw-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
}
.hiw-check-list {
  list-style: none;
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hiw-check-list li {
  font-size: 0.75rem;
  color: var(--text-3);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.2rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.hiw-check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 0.7rem;
}
.hiw-divider {
  width: calc(100% - 74px);
  margin-left: 74px;
  height: 1px;
  background: var(--border);
}
.hiw-divider:last-child {
  display: none;
}

/* plan cards stagger */
.plans-grid .plan-card:nth-child(1) {
  transition-delay: 0s;
}
.plans-grid .plan-card:nth-child(2) {
  transition-delay: 0.12s;
}
.plans-grid .plan-card:nth-child(3) {
  transition-delay: 0.24s;
}

/* ══════════════════════════════════════════════════════════════
   PRICING — Mobile Optimisation Layer v4.0
   ══════════════════════════════════════════════════════════════ */

/* ── HERO — CRITICAL: 4rem sides → safe mobile padding ──────── */
@media (max-width: 768px) {
  .pricing-page .hero {
    padding: 100px 1.5rem 3.5rem;
  }
  .pricing-page .hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
}

@media (max-width: 480px) {
  .pricing-page .hero {
    padding: 90px 1.25rem 3rem;
  }
  .pricing-page .hero h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.4rem);
  }
  .pricing-page .hero-sub {
    font-size: 0.95rem;
  }
}

/* ── BILLING TOGGLE ──────────────────────────────────────────── */
@media (max-width: 375px) {
  .billing-toggle-wrap {
    gap: 0.6rem;
  }
  .billing-label {
    font-size: 0.82rem;
  }
}

/* ── PLANS GRID — already stacked at 1024px; compact on mobile ─ */
@media (max-width: 480px) {
  .plans-grid {
    max-width: 100%;
  }
  .plan-card {
    padding: 1.5rem;
  }
  .plan-name {
    font-size: 1.15rem;
  }
  .plan-price {
    font-size: 2.5rem;
  }
  .plan-cta .btn {
    justify-content: center;
    width: 100%;
  }
  /* Plan badge — mobile: tighten the flush banner */
  .plan-badge {
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
    margin: 0 -1.5rem 1.5rem;
  }
}

@media (max-width: 375px) {
  .plan-card {
    padding: 1.25rem;
  }
  .plan-badge {
    margin: 0 -1.25rem 1.25rem;
  }
  .plan-price {
    font-size: 2.2rem;
  }
  .plan-features li {
    font-size: 0.85rem;
    padding: 0.45rem 0;
  }
}

/* ── VALUE CHART — CRITICAL: horizontal scroll wrapper ──────── */
/*  At ≤600px the fixed 80px label column + 3 plan columns
    becomes dangerously narrow on 320-375px phones.
    Wrap the chart in a scroll container instead of breaking layout. */
@media (max-width: 600px) {
  .value-chart-section .container {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
  .value-chart-section .value-chart-header {
    padding: 0 1.25rem;
    margin-bottom: 2rem;
  }
  /* Scrollable wrapper */
  .value-chart {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 1.25rem 0.75rem;
    /* Indicate scrollability */
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--border-2) transparent;
  }
  .value-chart::-webkit-scrollbar {
    height: 4px;
  }
  .value-chart::-webkit-scrollbar-track {
    background: transparent;
  }
  .value-chart::-webkit-scrollbar-thumb {
    background: var(--border-2);
    border-radius: 2px;
  }
  /* Fix minimum width so chart is readable while scrolling */
  .vc-row {
    grid-template-columns: 100px 1fr 1fr 1fr !important;
    gap: 0.5rem !important;
    min-width: 360px;
  }
  .vc-label {
    font-size: 0.75rem;
    line-height: 1.25;
    word-break: break-word;
  }
  .vc-plan-head {
    font-size: 0.72rem;
  }
}

@media (max-width: 375px) {
  .vc-row {
    grid-template-columns: 88px 1fr 1fr 1fr !important;
    min-width: 340px;
  }
}

/* ── GUARANTEE BLOCK ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .guarantee-block {
    padding: 1.5rem;
    gap: 0.85rem;
  }
  .guarantee-title {
    font-size: 1.25rem;
  }
  .guarantee-body {
    font-size: 0.9rem;
  }
  .guarantee-icon {
    font-size: 2.25rem;
  }
}

/* ── FAQ / COMPARISON SECTION SPACING ───────────────────────── */
@media (max-width: 768px) {
  .value-chart-section {
    padding: 3.5rem 0;
  }
  .faq-section {
    padding: 3.5rem 0;
  }
  .bottom-cta {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .value-chart-section {
    padding: 3rem 0;
  }
  .faq-section {
    padding: 3rem 0;
  }
  .bottom-cta {
    padding: 3.5rem 0;
  }
}

/* ── PAGE HEADER (compact version) ──────────────────────────── */
@media (max-width: 480px) {
  .page-header {
    padding: 90px 0 2.5rem;
  }
}

/* ── HOW-IT-WORKS PROCESS STEPS ─────────────────────────────── */
@media (max-width: 480px) {
  .hiw-process-step {
    gap: 1rem;
  }
  .hiw-icon-col {
    width: 48px;
  }
  .hiw-icon-ring {
    width: 46px;
    height: 46px;
  }
  .hiw-divider {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
}
/* ══════════════════════════════════════════════════════════════ */
