/* ── SKIP LINK (accessibility) ────────────────────────────── */
.skip-link {
  position: absolute;
  top: auto;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 99999;
}
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  overflow: visible;
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/*
    ============================================================
      CJX STUDIOS — styles.css v3.1
      Serves: services · portfolio · pricing · blog · contact
              partner · website-cost-blog-post
      index.html keeps its own inline <style> block.
      Built from original per-page CSS — exact appearance preserved.
      ============================================================
*/

/* ══ BASE — shared tokens, reset, nav, buttons, footer ════ */
/*
    ============================================================
      CJX STUDIOS — MASTER STYLESHEET v2.0
      Design system: services · portfolio · pricing · process ·
                     index · contact
      Single source of truth for all design tokens.
      ============================================================
*/

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--accent, #4f46e5);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ── BASE BODY (Group B) ───────────────────────────────────── */
/*
    index.html and contact.html override this via their own
      <style> block which is loaded after this stylesheet.
*/
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================ */
/* ============================================ */
/* SCROLL PROGRESS BAR                      */
/* ============================================ */
/* ============================================ */
/* Used as .scroll-bar on services/portfolio/pricing/process */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, #5b8fff 100%);
  z-index: 9999;
  transition: width 0.08s linear;
}

/* ============================================ */
/* ============================================ */
/* BACK TO TOP                              */
/* ============================================ */
/* ============================================ */
/* .back-top used on services/portfolio/pricing/process */
.back-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
  z-index: var(--z-nav);
  font-size: 0.875rem;
}
.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* ============================================ */
/* NAV */
/* ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -1px;
}
.logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.25s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  border-radius: var(--r-md);
  border: none;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(43, 102, 230, 0.35);
}
.mob-btn,
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* ============================================ */
/* UTILITY */
/* ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.grad-text {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================ */
/* TAGS */
/* ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
}
.tag-blue {
  background: rgba(43, 102, 230, 0.12);
  color: var(--accent);
  border: 1px solid rgba(43, 102, 230, 0.25);
}
.tag-green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.tag-cyan {
  background: rgba(6, 182, 212, 0.12);
  color: #67e8f9;
  border: 1px solid rgba(6, 182, 212, 0.25);
}
.tag-cjxblue {
  background: rgba(245, 158, 11, 0.12);
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.tag-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

/* ============================================ */
/* 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;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  box-shadow: 0 4px 20px rgba(43, 102, 230, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(43, 102, 230, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.75rem;
  background: var(--wa);
  color: white;
  border-radius: var(--r-lg);
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* ============================================ */
/* ============================================ */
/* PAGE HEADER                              */
/* ============================================ */
/* ============================================ */
.page-header {
  padding: 7.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(
    ellipse at center,
    rgba(43, 102, 230, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ============================================ */
/* ============================================ */
/* SECTION HEADER                           */
/* ============================================ */
/* ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.section-header p {
  color: var(--text-2);
  font-size: 1rem;
  max-width: 560px;
  margin: 0.5rem auto 0;
}

/* ============================================ */
/* ============================================ */
/* TRUST STRIP                              */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* BOTH NAMING CONVENTIONS USED ACROSS PAGES*/
/* ============================================ */
/* ============================================ */
/* ============================================ */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0.75rem 1.5rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-2);
}
/* services.html / pricing.html variant */
.trust-strip-item,
.ts-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.trust-strip-item i,
.ts-item i {
  color: var(--accent);
  font-size: 0.9rem;
}
.trust-strip-sep,
.ts-sep {
  width: 1px;
  height: 20px;
  background: var(--border-2);
}

/* ============================================ */
/* FAQ */
/* ============================================ */
/* Used in services.html and pricing.html */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.25s;
  margin-bottom: 0.75rem;
  padding: 5px;
}
.faq-item.open {
  border-color: rgba(43, 102, 230, 0.35);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem;
  cursor: pointer;
  background: var(--bg-2);
  font-weight: 600;
  font-size: 0.925rem;
  transition: background 0.2s;
}
.faq-q:hover {
  background: var(--bg-4);
}
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-3);
  transition: all 0.25s;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
  overflow: hidden;
  background: var(--bg-2);
}
.faq-a-inner {
  min-height: 0;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  grid-template-rows: 2fr;
}

/* FOOTER                                                    */
/* ────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 4.5rem 4rem 2rem;
  position: relative;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, var(--bg) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.025em;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo span {
  color: var(--accent);
}
.footer-logo:hover {
  opacity: 0.85;
}

.footer-desc {
  font-size: 0.81rem;
  color: var(--text-3);
  line-height: 1.67;
  margin-bottom: 1.3rem;
}
.footer-map-link {
  color: var(--accent);
  text-decoration: none;
}
.footer-map-link:hover {
  color: var(--accent-light);
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.84rem;
  text-decoration: none;
  transition:
    border-color var(--dur-base),
    color var(--dur-base),
    transform var(--dur-fast),
    box-shadow var(--dur-base);
}
.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--blue-glow-sm);
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: var(--text-3);
  text-decoration: none;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    color var(--dur-base),
    transform var(--dur-fast);
}
.footer-links a:hover {
  color: var(--text-2);
  transform: translateX(2px);
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.81rem;
  color: var(--text-3);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.77rem;
  color: var(--text-3);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── BACKGROUND DECORATORS (radial-bg + dots-pattern for services/portfolio pages) ── */
.radial-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(43, 102, 230, 0.08) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(43, 102, 230, 0.06) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(43, 102, 230, 0.03) 0%,
      transparent 60%
    ),
    var(--bg);
}
.dots-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(
    ellipse 90% 80% at 50% 35%,
    black 30%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 80% at 50% 35%,
    black 30%,
    transparent 100%
  );
}
/* ── GRID PATTERN (replaces dots in portfolio hero) ── */
.grid-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 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);
}

/* ══════════════════════════════════════════════════════════════
   UNIVERSAL HERO GRID PATTERN — services · pricing · partner
   Matching the portfolio hero aesthetic across all inner pages.
   ══════════════════════════════════════════════════════════════ */

/* Services hero grid */
.hero-service {
  position: relative;
  overflow: hidden;
}
.hero-service::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(
    ellipse 90% 80% at 60% 35%,
    black 20%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 80% at 60% 35%,
    black 20%,
    transparent 100%
  );
}
.hero-service > * {
  position: relative;
  z-index: 1;
}

/* Pricing hero grid — scoped to .pricing-page */
.pricing-page .hero {
  position: relative;
  overflow: hidden;
}
.pricing-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(
    ellipse 85% 80% at 50% 35%,
    black 25%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 85% 80% at 50% 35%,
    black 25%,
    transparent 100%
  );
}
.pricing-page .hero > * {
  position: relative;
  z-index: 1;
}

/* Partner hero grid — canonically defined here, overrides inline */
.partner-hero {
  overflow: hidden;
}

/* page-header (fallback across inner pages) */
.page-header {
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(
    ellipse 80% 100% at 50% 0%,
    black 30%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 100% at 50% 0%,
    black 30%,
    transparent 100%
  );
}
.page-header > * {
  position: relative;
  z-index: 1;
}

/* ============================================ */
/* ============================================ */
/* WHATSAPP FLOAT                           */
/* ============================================ */
/* ============================================ */
.wa-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--wa);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: var(--z-nav);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ============================================ */
/* ============================================ */
/* EXIT INTENT MODAL                        */
/* ============================================ */
/* ============================================ */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
}
.exit-modal.active {
  opacity: 1;
  visibility: visible;
}
/*
    Both naming conventions: .exit-modal-box (services/portfolio/pricing)
      and .exit-box (process)
*/
.exit-modal-box,
.exit-box {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  max-width: 440px;
  width: 90%;
  transform: scale(0.95);
  transition: transform 0.35s var(--bounce);
  text-align: center;
}
.exit-modal.active .exit-modal-box,
.exit-modal.active .exit-box {
  transform: scale(1);
}
.exit-modal-box h3,
.exit-box h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.exit-modal-box p,
.exit-box p {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.exit-close {
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  font-size: 0.85rem;
  margin-top: 0.85rem;
  display: block;
  width: 100%;
  text-align: center;
  transition: color 0.2s;
}
.exit-close:hover {
  color: var(--text);
}

/* ============================================ */
/* ============================================ */
/* SCROLL ANIMATIONS                        */
/* ============================================ */
/* ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
/* Delay helpers — both naming conventions */
.d1,
.fade-up-d1 {
  transition-delay: 0.05s;
}
.d2,
.fade-up-d2 {
  transition-delay: 0.12s;
}
.d3,
.fade-up-d3 {
  transition-delay: 0.19s;
}
.d4,
.fade-up-d4 {
  transition-delay: 0.26s;
}
.d5,
.fade-up-d5 {
  transition-delay: 0.33s;
}
.d6,
.fade-up-d6 {
  transition-delay: 0.4s;
}

/* ── RESPONSIVE — SHARED NAV BREAKPOINT ────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE NAV — full-screen drawer (replaces dropdown)
   Driven by .nav-links.open  +  body.nav-open  toggled via JS.
   ══════════════════════════════════════════════════════════════ */

/* ── BODY OVERLAY BACKDROP ──────────────────────────────────── */
body.nav-open {
  overflow: hidden;
}
body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: calc(var(--z-nav) - 2);
  cursor: pointer;
  animation: mob-fade-in 0.3s var(--ease) forwards;
}
@keyframes mob-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  /* ── NAV BAR ───────────────────────────────────────────────── */
  nav {
    padding: 0.75rem 1.25rem;
    gap: 0.5rem;
  }

  /* ── SLIDE-IN DRAWER PANEL ─────────────────────────────────── */
  .nav-links {
    /* hidden state — off-screen right */
    display: flex !important; /* always in DOM for animation */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: #0d0d0d;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 5.5rem 2.25rem 3rem;
    gap: 0.15rem;
    z-index: calc(var(--z-nav) - 1);
    box-shadow: -28px 0 80px rgba(0, 0, 0, 0.7);
    /* animation — off-screen right by default */
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.42s var(--ease),
      opacity 0.35s var(--ease),
      visibility 0s linear 0.42s;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  /* Accent top bar on drawer */
  .nav-links::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
  }

  /* "CJX." brand inside drawer */
  .nav-links::after {
    content: "CJX.";
    position: absolute;
    top: 1.3rem;
    left: 2.25rem;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.04em;
  }

  /* ── OPEN STATE ─────────────────────────────────────────────── */
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: calc(var(--z-nav) + 1);
    transition:
      transform 0.42s var(--ease),
      opacity 0.3s var(--ease),
      visibility 0s linear 0s;
  }

  /* ── LIST ITEMS ─────────────────────────────────────────────── */
  .nav-links li {
    border-bottom: none;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition:
      opacity 0.35s var(--ease),
      transform 0.35s var(--ease);
  }

  /* Staggered reveal when open */
  .nav-links.open li:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.07s;
  }
  .nav-links.open li:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.12s;
  }
  .nav-links.open li:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.17s;
  }
  .nav-links.open li:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.22s;
  }
  .nav-links.open li:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: 0.27s;
  }
  .nav-links.open li:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: 0.32s;
  }

  /* Subtle separator between links */
  .nav-links li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* ── LINK TYPOGRAPHY ────────────────────────────────────────── */
  .nav-links a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 0;
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--text-2);
    transition:
      color 0.2s var(--ease),
      padding-left 0.22s var(--ease);
  }
  .nav-links a:hover {
    color: var(--text);
    padding-left: 0.4rem;
  }
  .nav-links a.active {
    color: var(--accent);
  }
  .nav-links a.active::after {
    display: none;
  }
  /* Nav icon pills — injected by mobile-nav.js as <i> elements */
  .nav-links a i.fas,
  .nav-links a i.far {
    font-size: 0.78rem;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-3);
    transition:
      background 0.2s,
      border-color 0.2s,
      color 0.2s;
    margin-right: 0; /* gap handles spacing */
  }
  .nav-links a:hover i.fas,
  .nav-links a:hover i.far,
  .nav-links a.active i.fas,
  .nav-links a.active i.far {
    background: var(--accent-dim);
    border-color: var(--accent-border);
    color: var(--accent);
  }

  /* ── WHATSAPP CTA at bottom of drawer ──────────────────────── */
  .nav-links li:last-child::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 1.25rem;
  }

  /* ── HAMBURGER BUTTON ───────────────────────────────────────── */
  .mob-btn,
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    z-index: var(--z-nav);
    transition:
      background 0.2s,
      border-color 0.2s,
      color 0.2s,
      transform 0.2s;
  }
  .mob-btn:hover,
  .mobile-menu-btn:hover {
    background: var(--bg-4);
    border-color: var(--border-2);
    color: var(--text);
  }

  /* Icon morphs bars → X when open */
  .mobile-menu-btn[aria-expanded="true"] {
    background: var(--accent-dim);
    border-color: var(--accent-border);
    color: var(--accent);
    transform: rotate(90deg);
  }

  /* ── NAV CTA on mobile (compact) ───────────────────────────── */
  .nav-cta {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }

  /* ── FOOTER ────────────────────────────────────────────────── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .trust-strip,
  .ts-sep,
  .trust-strip-sep {
    gap: 1rem;
  }
  .ts-sep,
  .trust-strip-sep {
    display: none;
  }
}

/* Contact page — founder photo as avatar */
img.c-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(43, 102, 230, 0.45);
  box-shadow:
    0 0 0 5px rgba(43, 102, 230, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.45);
  display: block;
  object-fit: cover;
  object-position: center top;
}
/* Services page — founder photo inline */
img.svc-founder-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(43, 102, 230, 0.4);
  display: block;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════ */
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-2, #b0b8c8);
  margin-top: 1rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(96, 152, 255, 0.25);
  border-radius: 100px;
  background: rgba(96, 152, 255, 0.06);
}
.hero-urgency strong {
  color: var(--blue-l, #5b8fff);
  font-weight: 700;
}

/*
    ═══════════════════════════════════════════════════════════════
      EXIT SLIDE-IN PANEL
      Bottom-right slide-in. Activated by initExitSlideIn() in main.js.
      ═══════════════════════════════════════════════════════════════
*/
.exit-slide-in {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: min(340px, calc(100vw - 2rem));
  background: #0b0e16;
  border: 1px solid rgba(96, 152, 255, 0.3);
  border-radius: 16px;
  padding: 1.4rem 1.4rem 1.4rem 1.4rem;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  z-index: 9900;
  transform: translateY(120%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
  /* Prevent any parent background from bleeding through during animation */
  isolation: isolate;
  will-change: transform, opacity;
}
.exit-slide-in.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.exit-slide-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-3, #6b7280);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.3rem 0.4rem;
  border-radius: 6px;
  line-height: 1;
  transition:
    color 0.2s,
    background 0.2s;
}
.exit-slide-close:hover {
  color: var(--text, #f0f4ff);
  background: rgba(255, 255, 255, 0.06);
}
.exit-slide-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-l, #5b8fff);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.exit-slide-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text, #f0f4ff);
  line-height: 1.35;
  margin: 0 0 0.4rem 0;
  padding-right: 1.5rem;
}
.exit-slide-sub {
  font-size: 0.82rem;
  color: var(--text-2, #b0b8c8);
  line-height: 1.5;
  margin: 0 0 1rem 0;
}
.exit-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  width: 100%;
  justify-content: center;
  /* ============================================ */
  /* ============================================ */
  /* ============================================ */
  /* SUPPRESS THE WHITE SHIMMER SWEEP THAT CAUSES THE GLARE FLASH*/
  /* ============================================ */
  /* ============================================ */
  /* ============================================ */
  overflow: hidden;
}
.exit-slide-btn::after {
  display: none !important;
}
@media (max-width: 480px) {
  .exit-slide-in {
    bottom: 5rem; /* ============================================ */
    /* ============================================ */
    /* ============================================ */
    /* CLEAR MOBILE BAR                  */
    /* ============================================ */
    /* ============================================ */
    /* ============================================ */
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}

/*
    ═══════════════════════════════════════════════════════════════
      PRICING PAGE — HOW PAYMENT WORKS TIMELINE
      ═══════════════════════════════════════════════════════════════
*/
.hiw-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 0;
  position: relative;
}
.hiw-step:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hiw-num {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(96, 152, 255, 0.12);
  border: 1px solid rgba(96, 152, 255, 0.3);
  color: var(--blue-l, #5b8fff);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.hiw-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hiw-content strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text, #f0f4ff);
}
.hiw-content span {
  font-size: 0.87rem;
  color: var(--text-2, #b0b8c8);
  line-height: 1.55;
}

/*
    ═══════════════════════════════════════════════════════════════
      BLOG SOCIAL PROOF STRIP
      Used in all blog post pages before the conclusion CTA.
      Classes: .blog-social-proof, .bsp-stars, .bsp-quote,
               .bsp-author, .bsp-link
      ═══════════════════════════════════════════════════════════════
*/
.blog-social-proof {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background: rgba(0, 229, 160, 0.05);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-left: 4px solid var(--green-l, #00e5a0);
  border-radius: 12px;
}
.bsp-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.bsp-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text, #f0f4ff);
  line-height: 1.65;
  margin: 0 0 0.75rem 0;
  border: none;
  padding: 0;
}
.bsp-author {
  font-size: 0.85rem;
  color: var(--text-2, #b0b8c8);
  margin-bottom: 0.6rem;
}
.bsp-author strong {
  color: var(--text, #f0f4ff);
}
.bsp-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-l, #00e5a0);
  text-decoration: none;
}
.bsp-link:hover {
  text-decoration: underline;
}

/* ── ACCESSIBILITY — reduced motion ───────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/*
    ============================================================
      CJX STUDIOS - NEW SHARED COMPONENTS
      cta-pair,  footer-capture, pricing-page rules
      ============================================================
*/

/* CTA PAIR */
.cta-pair {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-pair .btn-ghost {
  font-size: 0.875rem;
  color: var(--text-2);
  text-decoration: none;
  border: 1px solid var(--border-2);
  padding: 0.65rem 1.25rem;
  border-radius: var(--r-md);
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.cta-pair .btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-2);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* FOOTER EMAIL CAPTURE                     */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.footer-capture {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.footer-capture-label {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 0.85rem;
}
.footer-capture-label strong {
  color: var(--text);
}
.footer-capture-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-capture-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 0.65rem 1rem;
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
.footer-capture-form input[type="email"]:focus {
  border-color: var(--accent);
}
.footer-capture-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.footer-capture-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.footer-capture-sent {
  font-size: 0.875rem;
  color: var(--green);
  margin-top: 0.5rem;
}

/*
    ============================================================
      PRICING PAGE - unique layout (migrated from inline style)
      ============================================================
*/
.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: var(--bg-3);
  border-color: var(--accent-border);
  box-shadow:
    0 0 0 1px var(--accent-border),
    0 24px 64px rgba(43, 102, 230, 0.12),
    inset 0 0 0 1px rgba(43, 102, 230, 0.15);
}
.plan-card.featured:hover {
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 32px 80px rgba(43, 102, 230, 0.2),
    inset 0 0 0 1px rgba(43, 102, 230, 0.25);
  transform: translateY(-6px);
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, var(--accent), rgba(43, 102, 230, 0.8));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(43, 102, 230, 0.25);
  margin-top: 0.5rem;
}
.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-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;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* 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);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* 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;
  }
}
/* ============================================================

/* ══════════════════════════════════════════════════════════════
   GLOBAL MOBILE SAFETY LAYER — appended v4.0
   Matching portfolio.css as the reference implementation.
   ══════════════════════════════════════════════════════════════ */

/* ── 1. UNIVERSAL OVERFLOW PREVENTION ───────────────────────── */
html {
  overflow-x: hidden;
  max-width: 100%;
}

img,
video,
svg,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}

/* Tables can overflow — wrap them */
table {
  max-width: 100%;
  word-break: break-word;
}

/* ── 2. SAFE TOUCH TARGETS ───────────────────────────────────── */
a,
button,
[role="button"],
input[type="submit"],
input[type="button"],
label {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ── 3. BODY SAFE AREA (notch / home indicator) ─────────────── */
@supports (padding: env(safe-area-inset-bottom)) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* ── 4. MOBILE BAR (sticky bottom CTA strip) ────────────────── */
/* Ensure WA float doesn't overlap the mobile bar */
@media (max-width: 768px) {
  .wa-float {
    bottom: 5.5rem;
  }
  .back-top {
    bottom: 5.5rem;
    left: 1rem;
  }
}

/* ── 5. 480px — reduce universal section padding ────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  /* Section padding reduction across all shared sections */
  .section-pad {
    padding: 3.5rem 1.25rem !important;
  }
  .bg-ink.section-pad,
  .bg-ink-2.section-pad,
  .bg-ink-3.section-pad {
    padding: 3.5rem 1.25rem !important;
  }

  /* Stats bar — shared across portfolio, pricing, services */
  .stats-bar {
    padding: 2rem 0;
  }
  .stats-inner {
    gap: 1.5rem;
    padding: 0 1.25rem;
  }
  .si-val {
    font-size: 2rem;
  }

  /* Bottom CTA */
  .bottom-cta {
    padding: 4rem 0;
  }

  /* Footer */
  .footer-grid {
    gap: 1.75rem;
  }

  /* Tags */
  .tag {
    font-size: 0.68rem;
    padding: 0.25rem 0.7rem;
  }

  /* Trust strip */
  .trust-strip {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
}

/* ── 6. 375px — fine-tune for iPhone / standard Android ─────── */
@media (max-width: 375px) {
  .container {
    padding: 0 1rem;
  }

  /* Buttons — prevent overflow on narrow screens */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.88rem;
  }
  .btn-wa {
    padding: 0.75rem 1.25rem;
    font-size: 0.88rem;
  }
  .nav-cta {
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
  }

  /* Tags */
  .tag {
    font-size: 0.64rem;
    padding: 0.22rem 0.6rem;
  }

  /* Stats bar */
  .stats-inner {
    gap: 1.25rem;
  }
  .si-val {
    font-size: 1.75rem;
  }
}

/* ── 7. 320px — small phone edge case ───────────────────────── */
@media (max-width: 320px) {
  html {
    font-size: 14px; /* scale root font slightly */
  }
  .container {
    padding: 0 0.875rem;
  }
  .btn {
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
  }
  nav {
    padding: 0.65rem 0.875rem;
  }
}

/* ── 8. HERO SECTION SHARED FIXES ───────────────────────────── */
/* Shared .hero class used across pages — prevent top padding overflow */
@media (max-width: 480px) {
  .hero {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Section title font safety */
  h1 {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  h2 {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  h3 {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/* ── 9. NAV — shared nav-cta hide on tiny phones ────────────── */
@media (max-width: 360px) {
  .nav-cta {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL FIXES FOR MOBILE VIEW
   1. Universal Mobile Menu
   2. Pricing Centering
   3. Services "How It Works" Skew
   4. Index Hero Centering
   5. Mobile Bar Styling (Call / Get Free Demo)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1.25rem !important;
    justify-content: space-between !important;
    align-items: center !important;
    overflow: visible !important;
    height: 64px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  /* 1. Universal Mobile Menu Drawer Force */
  .nav-links {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    height: 100dvh !important; /* Escapes backdrop-filter containing block height */
    max-height: 100dvh !important;
    width: min(300px, 80vw) !important;
    background: #111111 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 5rem 2rem 2rem !important;
    gap: 0.75rem !important;
    overflow-y: auto !important; /* Allow scrolling if screen is incredibly tiny */
    transform: translateX(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 10001 !important;
    box-shadow: -28px 0 80px rgba(0, 0, 0, 0.9) !important;
  }
  .nav-links li {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .nav-links a {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    padding: 0.6rem 0 !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    color: #fff !important;
    text-decoration: none !important;
  }
  .nav-links.open,
  .nav-links.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
  }
  .mobile-menu-btn {
    display: flex !important;
    z-index: 10002 !important;
    width: 40px !important;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--bg-3) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r-sm) !important;
    color: var(--text) !important;
  }

  /* 2. Index Hero Centered */
  .hero-inner,
  .hero-content {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }
  .hero-sub {
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero-promise {
    border-left: none !important;
    padding-left: 0 !important;
  }
  .hero-promise::before {
    display: none !important;
  }
  .cta-pair {
    justify-content: center !important;
  }
  .hero-trust {
    justify-content: center !important;
  }

  /* 3. Pricing Cards Centered */
  .plans-grid {
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  .plan-card {
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto 1.5rem auto !important;
  }

  /* 4. Services "How It Works" 3 steps skew right */
  .hiw-steps {
    padding-left: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
  }
  .hiw-step {
    padding-left: 0 !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
  .hiw-step:not(:last-child) {
    margin-bottom: 1rem !important;
  }
  .hiw-process-step {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  .hiw-process {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .hiw-line,
  .hiw-fill {
    display: none !important; /* Often lines skew things on mobile */
  }
}

/* 5. "Get my free and call things at the bottom" mobile bar styling */
.mobile-bar {
  display: none !important;
}
@media (max-width: 768px) {
  .mobile-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #0a0a0a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    z-index: 10000 !important;
    padding: 0.75rem 1rem !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom)) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }
  .mb-call {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    background: rgba(43, 102, 230, 0.15) !important;
    border: 1px solid rgba(43, 102, 230, 0.3) !important;
    color: var(--accent) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    font-size: 1.2rem !important;
  }
  .mb-wa {
    flex-grow: 1 !important;
    height: 48px !important;
    background: #25d366 !important;
    color: #fff !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    gap: 0.5rem !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
  }
  body,
  html {
    padding-bottom: 80px !important;
  }
  .wa-widget {
    bottom: 95px !important;
  }
}
/* ══════════════════════════════════════════════════════════════ */
