/* ===================================================
   WebaxisMedia — Main Stylesheet
   =================================================== */
/* Removed @import url() to prevent render blocking. Font loaded via <link> in HTML */

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

:root {
  --green: #00E5A0;
  --green-dim: #00b07a;
  --bg: #0A0A0A;
  --bg2: #080808;
  --card: #0d0d0d;
  --border: #1a1a1a;
  --border2: #2a2a2a;
  --white: #ffffff;
  --text: var(--white);
  --muted: #555555;
  --muted2: #444444;
  --muted3: #777777;
  --green-bg: #061410;
  --green-border: #0F3322;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 3px;
}

/* ===================================================
   NAVIGATION
   =================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #141414;
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 10px 20px;
  transition: border-color 0.2s;
}

.nav-logo:hover {
  border-color: var(--green);
}

.nav-logo-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

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

.nav-logo-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: bold;
  font-size: 14px;
  color: var(--muted3);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  padding: 11px 24px;
  border-radius: 50px;
  border: none;
  letter-spacing: -0.2px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 229, 160, 0.3);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================================================
   STAT PILL
   =================================================== */
.stat-pill-wrap {
  display: flex;
  justify-content: center;
  padding: 32px 0 0;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  background: #141414;
  border: 1px solid var(--border2);
  border-radius: 50px;
  overflow: hidden;
  flex-wrap: wrap;
}

.sp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 12px;
  color: #888;
}

.sp-item:not(:last-child) {
  border-right: 1px solid var(--border2);
}

.sp-val {
  color: var(--white);
  font-weight: 700;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  padding: 48px 60px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: 68px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -3px;
  max-width: 820px;
  margin: 0 auto 24px;
  animation: fadeUp 0.6s ease both;
}

.hero h1 .accent {
  color: var(--green);
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.2s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ===================================================
   BUTTONS
   =================================================== */
.hbtn-primary {
  background: var(--green);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  padding: 17px 34px;
  border-radius: 50px;
  border: none;
  letter-spacing: -0.3px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.hbtn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 229, 160, 0.35);
}

.hbtn-secondary {
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 17px 34px;
  border-radius: 50px;
  border: 1px solid #333;
  transition: border-color 0.2s, background 0.2s;
}

.hbtn-secondary:hover {
  border-color: #555;
  background: rgba(255, 255, 255, 0.04);
}

/* ===================================================
   LOGO TICKER
   =================================================== */
.logo-ticker {
  padding: 30px 60px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  overflow: hidden;
}

.lt-label {
  font-size: 11px;
  color: #444;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

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

.lt-chip {
  background: #141414;
  border: 1px solid #252525;
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 12px;
  color: #555;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

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

/* ===================================================
   SECTIONS
   =================================================== */
.sec {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}

.sec-alt {
  background: var(--bg2);
}

.sec-eyebrow {
  font-size: 11px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 16px;
}

.sec h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.5px;
  max-width: 580px;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ===================================================
   SERVICES GRID
   =================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.svc-card {
  background: var(--card);
  padding: 32px;
  transition: background 0.2s;
}

.svc-card:hover {
  background: #101010;
}

.svc-num {
  font-size: 11px;
  color: #333;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.svc-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.svc-tag {
  display: inline-block;
  margin-top: 18px;
  background: #0A1A12;
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 700;
}

/* ===================================================
   PROBLEM → SOLUTION
   =================================================== */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ps-col {
  border-radius: 18px;
  padding: 32px;
}

.ps-before {
  background: var(--card);
  border: 1px solid #1f1f1f;
}

.ps-after {
  background: #061410;
  border: 1px solid var(--green-border);
}

.ps-col-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}

.lbl-before {
  color: #444;
}

.lbl-after {
  color: var(--green);
}

.ps-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.ps-dot-x {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1f1010;
  border: 1px solid #3a1515;
  color: #E24B4A;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ps-dot-c {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #061a10;
  border: 1px solid #0F4422;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ps-item span {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.ps-after .ps-item span {
  color: #888;
}

/* ===================================================
   USP GRID
   =================================================== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.usp-card {
  background: var(--card);
  padding: 28px;
  transition: background 0.2s;
}

.usp-card:hover {
  background: #101010;
}

.usp-big {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 14px;
}

.usp-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.usp-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===================================================
   PROCESS
   =================================================== */
.proc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.proc-card {
  background: var(--card);
  padding: 28px 22px;
  transition: background 0.2s;
}

.proc-card:hover {
  background: #101010;
}

.proc-step-num {
  font-size: 11px;
  color: #333;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.proc-day-badge {
  display: inline-block;
  background: #0A1A12;
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  font-weight: 700;
}

.proc-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.proc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===================================================
   RESULTS
   =================================================== */
.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.res-card {
  background: var(--card);
  border: 1px solid #1f1f1f;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.res-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-border);
}

.res-top {
  background: var(--green-bg);
  border-bottom: 1px solid var(--green-border);
  padding: 24px;
}

.res-industry {
  font-size: 10px;
  color: #00A070;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.res-num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.res-num-label {
  font-size: 13px;
  color: #336655;
}

.res-body {
  padding: 18px 24px;
}

.res-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.res-svc {
  font-size: 12px;
  color: #444;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testi-card {
  background: var(--card);
  border: 1px solid #1f1f1f;
  border-radius: 18px;
  padding: 26px;
  transition: transform 0.2s, border-color 0.2s;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-border);
}

.testi-stars {
  color: var(--green);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-q {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #061a10;
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
}

.testi-biz {
  font-size: 12px;
  color: #444;
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-sec {
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 229, 160, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-sec h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  max-width: 640px;
  margin: 0 auto 20px;
}

.cta-sec h2 span {
  color: var(--green);
}

.cta-sec p {
  font-size: 16px;
  color: var(--muted);
  max-width: 450px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  padding: 15px 28px;
  border-radius: 50px;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.cta-trust-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust-row span {
  font-size: 13px;
  color: #444;
}

.cta-trust-row span::before {
  content: '✓  ';
  color: var(--green);
  font-weight: 800;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  padding: 50px 60px 28px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.ft-logo-text {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.ft-tagline {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 18px;
}

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

.ft-social {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #141414;
  border: 1px solid #222;
  color: #555;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.ft-social:hover {
  border-color: var(--green);
  color: var(--green);
}

.ft-col h4 {
  font-size: 11px;
  color: #444;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.ft-col a {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.ft-col a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.ft-copy {
  font-size: 12px;
  color: #333;
}

.ft-links {
  display: flex;
  gap: 20px;
}

.ft-links a {
  font-size: 12px;
  color: #333;
  transition: color 0.2s;
}

.ft-links a:hover {
  color: var(--green);
}

.ft-book-btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--green);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: 50px;
  transition: transform 0.15s;
}

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

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #0d0d0d;
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 16px;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  .hero {
    padding: 36px 20px 60px;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .sec {
    padding: 50px 20px;
  }

  .sec h2 {
    font-size: 28px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .ps-grid {
    grid-template-columns: 1fr;
  }

  .usp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proc-row {
    grid-template-columns: 1fr 1fr;
  }

  .res-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .cta-sec {
    padding: 60px 20px;
  }

  .cta-sec h2 {
    font-size: 32px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .stat-pill {
    flex-direction: column;
    border-radius: 16px;
  }

  .sp-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border2);
  }

  .logo-ticker {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }

  .usp-grid,
  .proc-row {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--green-border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px;
  border: none;
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}

.faq-q:hover {
  background: #101010;
}

.faq-icon {
  color: var(--green);
  font-size: 20px;
  flex-shrink: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  padding: 0 20px;
  background: var(--card);
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
}

/* ══════════════════════════════════
   CONTACT PAGE EXACT DESIGN
══════════════════════════════════ */
.hero-contact {
  padding: 148px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-contact::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 191, .14) 0%, transparent 68%);
  pointer-events: none;
}

.hero-contact::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 214, 143, .07) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-left .eyebrow {
  margin-bottom: 22px;
}

.hero-left h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.06;
  margin-bottom: 20px;
}

.hero-left h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-left p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 32px;
}

/* quick-contact row */
.qc-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color .2s;
}

.qc-item:hover {
  border-color: var(--green);
}

.qc-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--green-dim);
  border: 1px solid rgba(0, 214, 143, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.qc-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.qc-val {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  margin-top: 1px;
}

/* ── HERO RIGHT: FORM CARD ── */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(124, 92, 191, .35), transparent 55%);
  z-index: -1;
}

.form-card-title {
  font-family: var(--HF);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  margin-bottom: 6px;
}

.form-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.frow-full {
  margin-bottom: 14px;
}

.flabel {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 7px;
}

.finput,
.fselect,
.ftextarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 13px 15px;
  color: var(--white);
  font-family: var(--BF);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}

.finput::placeholder,
.ftextarea::placeholder {
  color: var(--muted);
}

.finput:focus,
.fselect:focus,
.ftextarea:focus {
  border-color: var(--green);
}

.fselect {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A72' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.fselect option {
  background: #111118;
}

.ftextarea {
  resize: vertical;
  min-height: 90px;
}

.fsubmit {
  width: 100%;
  background: var(--green);
  color: #000;
  font-family: var(--BF);
  font-size: 15px;
  font-weight: 800;
  padding: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .15s;
}

.fsubmit:hover {
  opacity: .9;
}

.fmicro {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* ══════════════════════════════════
   DIVIDER STATS BAR
══════════════════════════════════ */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 60px;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
  text-align: center;
}

.stat-item {
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

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

.stat-num {
  font-family: var(--HF);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.2px;
  line-height: 1;
}

.stat-num em {
  font-style: normal;
  color: var(--green);
}

.stat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ══════════════════════════════════
   CONTACT OPTIONS (3 ways to reach)
══════════════════════════════════ */
.options-sec {
  padding: 80px 60px;
  background: var(--bg-alt);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.opt-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}

.opt-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}

.opt-card.featured {
  border-color: var(--green);
  background: linear-gradient(145deg, #0A1A10, #0D0D12);
}

.opt-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-dim);
  border: 1px solid rgba(0, 214, 143, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.opt-card.featured .opt-icon-wrap {
  background: rgba(0, 214, 143, .2);
  border-color: rgba(0, 214, 143, .4);
}

.opt-card h3 {
  font-family: var(--HF);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.opt-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.opt-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0, 214, 143, .2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.opt-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: transparent;
  border: 1px solid rgba(0, 214, 143, .3);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
}

.opt-cta:hover {
  background: var(--green-dim);
}

.opt-cta-wa {
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  cursor: pointer;
}

/* ══════════════════════════════════
   WHAT HAPPENS NEXT (process strip)
══════════════════════════════════ */
.next-sec {
  padding: 80px 60px;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px;
}

.next-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}

.next-step:last-child {
  border-right: none;
}

.step-num-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  background: var(--purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--HF);
  font-size: 16px;
  font-weight: 800;
  color: var(--purple);
  flex-shrink: 0;
}

.step-arrow {
  font-size: 16px;
  color: var(--border2);
}

.next-step h3 {
  font-family: var(--HF);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.next-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.step-time {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0, 214, 143, .2);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ══════════════════════════════════
   OFFICE / LOCATION SECTION
══════════════════════════════════ */
.office-sec {
  padding: 80px 60px;
  background: var(--bg-alt);
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.office-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  transition: border-color .2s;
}

.office-card:hover {
  border-color: var(--border2);
}

.office-city {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.city-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.city-name {
  font-family: var(--HF);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.city-tag {
  font-size: 11px;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0, 214, 143, .2);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 700;
}

.office-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.od-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.od-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.od-val {
  font-size: 14px;
  color: var(--white);
  margin-top: 2px;
  line-height: 1.5;
}

.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  gap: 8px;
  flex-direction: column;
}

.map-placeholder span {
  font-size: 24px;
}

/* ══════════════════════════════════
   SOCIAL PROOF STRIP
══════════════════════════════════ */
.proof-strip {
  padding: 80px 60px;
  border-top: 1px solid var(--border);
}

.proof-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

.proof-left h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.proof-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.proof-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ptesti {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}

.ptesti-stars {
  color: #F5A623;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.ptesti-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.ptesti-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ptesti-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--HF);
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.ptesti-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.ptesti-biz {
  font-size: 11px;
  color: var(--muted);
}

/* ══════════════════════════════════
   BOTTOM CTA BANNER
══════════════════════════════════ */
.cta-banner {
  padding: 80px 60px;
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 560px;
  margin: 0 auto 16px;
}

.cta-banner h2 em {
  font-style: normal;
  color: var(--green);
}

.cta-banner p {
  font-size: 15px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  font-family: var(--BF);
  font-size: 15px;
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--BF);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid var(--border2);
  text-decoration: none;
}

.trust-row {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-row span {
  font-size: 13px;
  color: var(--muted);
}

.trust-row span::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .hero-inner,
  .proof-inner,
  .office-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-inner,
  .options-grid,
  .next-steps,
  .proof-testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stats-inner {
    divide-x: none;
    border-bottom: none;
  }

  .stat-item {
    border-right: none;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
  }

  .next-steps {
    border: none;
    background: transparent;
  }

  .next-step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
  }
}

@media (max-width: 768px) {

  .stats-inner,
  .options-grid,
  .next-steps,
  .proof-testi-grid {
    grid-template-columns: 1fr;
  }

  .frow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-contact {
    padding: 36px 20px 60px;
  }

  .stats-bar,
  .options-sec,
  .next-sec,
  .office-sec,
  .proof-strip,
  .cta-banner {
    padding: 50px 20px;
  }
}

/* ===================================================
   LIGHT THEME OVERRIDES
   =================================================== */
[data-theme="light"] {
  --green: #00b07a;
  --green-dim: #00E5A0;
  --bg: #f8f9fa;
  --bg2: #ffffff;
  --card: #ffffff;
  --border: #e9ecef;
  --border2: #dee2e6;
  --text: #111111;
  --muted: #666666;
  --muted2: #555555;
  --muted3: #777777;
  --green-bg: #e6f7f0;
  --green-border: #c2e6d6;
  --bg-alt: #f0f0f0;
  --white: #111111;
}

[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}

[data-theme="light"] .nav {
  background: rgba(255, 255, 255, 0.92);
}

[data-theme="light"] .nav-logo,
[data-theme="light"] .stat-pill,
[data-theme="light"] .lt-chip {
  background: var(--bg2);
  color: var(--text);
}

[data-theme="light"] .nav-links a {
  color: var(--muted);
}

[data-theme="light"] .nav-links a:hover {
  color: var(--text);
}

[data-theme="light"] .hbtn-secondary,
[data-theme="light"] .btn-ghost {
  color: var(--text);
  border-color: var(--border2);
}

[data-theme="light"] .hbtn-secondary:hover,
[data-theme="light"] .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .svc-grid,
[data-theme="light"] .usp-grid,
[data-theme="light"] .proc-row {
  background: var(--border);
}

[data-theme="light"] .svc-card:hover,
[data-theme="light"] .usp-card:hover,
[data-theme="light"] .proc-card:hover {
  background: var(--bg);
}

[data-theme="light"] .sec-alt,
[data-theme="light"] .hero-contact {
  background: var(--bg-alt);
}

[data-theme="light"] .ps-before {
  background: var(--card);
  border-color: var(--border);
}

[data-theme="light"] .ps-after {
  background: var(--green-bg);
  border-color: var(--green-border);
}

[data-theme="light"] .ps-dot-x {
  background: #ffebeb;
  border-color: #ffc2c2;
}

[data-theme="light"] .ps-dot-c {
  background: var(--green-bg);
  border-color: var(--green-border);
}

[data-theme="light"] .ft-social {
  background: var(--bg2);
  border-color: var(--border2);
  color: var(--muted);
}

[data-theme="light"] .ft-social:hover {
  border-color: var(--green);
  color: var(--green);
}

[data-theme="light"] .faq-q {
  background: var(--card);
  color: var(--text);
}

[data-theme="light"] .faq-a {
  background: var(--card);
  color: var(--muted);
}

[data-theme="light"] .qc-item,
[data-theme="light"] .form-card,
[data-theme="light"] .stats-bar,
[data-theme="light"] .options-sec,
[data-theme="light"] .next-sec,
[data-theme="light"] .office-sec,
[data-theme="light"] .cta-banner {
  background: var(--card);
}

[data-theme="light"] .finput,
[data-theme="light"] .fselect,
[data-theme="light"] .ftextarea {
  background: var(--bg2);
  color: var(--text);
}

/* ════════════════════════════════════
   Extracted from seo.php
════════════════════════════════════ */
.seo-page-wrapper {
  --black: #060608;
  --off-black: #0E0E12;
  --card: #13131A;
  --border: #1E1E2A;
  --accent: #7B5EA7;
  --accent-bright: #9D7FCC;
  --accent-glow: rgba(123, 94, 167, 0.18);
  --green: #2DD4A0;
  --green-dim: rgba(45, 212, 160, 0.12);
  --text: #C8C8D8;
  --muted: #6E6E88;
  --heading-font: 'Inter', sans-serif;
  --body-font: 'Inter', sans-serif;
}

[data-theme="light"] .seo-page-wrapper {
  --black: #ffffff;
  --off-black: #f8f9fa;
  --card: #ffffff;
  --border: #e9ecef;
  --text: #111111;
  --muted: #555555;
}

/* ─── STICKY NAV ─── Removed as it is in header */

/* ─── WA STICKY ─── Removed */

/* ─── SHARED ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--off-black);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(45, 212, 160, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1,
.section h2,
.section h3 {
  font-family: var(--heading-font);
  line-height: 1.1;
}

.section h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 56px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

/* ─── CARDS ─── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(123, 94, 167, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(45, 212, 160, 0.2);
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 14px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* ════════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════════ */
.hero {
  padding: 160px 0 100px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 94, 167, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 212, 160, 0.08);
  border: 1px solid rgba(45, 212, 160, 0.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2.5px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero h1 .hl {
  color: var(--green);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.trust-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(45, 212, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--green);
}

/* Hero right — stats card */
.hero-stats-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  position: relative;
}

.hero-stats-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  z-index: -1;
  opacity: 0.3;
}

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

.stat-box {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.stat-num {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num span {
  color: var(--green);
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
}

.mini-graph {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.bar {
  background: var(--border);
  border-radius: 4px 4px 0 0;
  flex: 1;
  transition: background 0.2s;
}

.bar.active {
  background: var(--accent);
}

.bar.peak {
  background: var(--green);
}

.graph-label {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

/* ════════════════════════════════════
   SECTION 2 — PROBLEM
════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

.problem-item:hover {
  border-color: #3a1515;
}

.p-x {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E24B4A;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.problem-item p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.problem-right {
  position: sticky;
  top: 100px;
}

.reality-card {
  background: linear-gradient(135deg, #0F1A14 0%, #060A0A 100%);
  border: 1px solid #1A2E22;
  border-radius: 20px;
  padding: 32px;
}

.reality-card h3 {
  font-size: 22px;
  color: var(--green);
  margin-bottom: 8px;
}

.reality-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.reality-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #1A2E22;
}

.reality-stat:last-of-type {
  border-bottom: none;
}

.r-label {
  font-size: 13px;
  color: var(--muted);
}

.r-val {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
}

/* ════════════════════════════════════
   SECTION 3 — SERVICES
════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  opacity: 0;
  transition: opacity 0.25s;
}

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

.svc-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  transition: all 0.25s;
}

.svc-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.svc-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.svc-includes {
  margin-top: 16px;
  padding-left: 0;
}

.svc-includes li {
  font-size: 12px;
  color: var(--muted);
  padding: 3px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.svc-includes li::before {
  content: '→';
  color: var(--green);
  font-size: 11px;
}

/* ════════════════════════════════════
   SECTION 4 — PROCESS
════════════════════════════════════ */
.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--accent), var(--border), transparent);
}

.proc-step {
  text-align: center;
  padding: 0 16px;
}

.proc-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.proc-icon {
  font-size: 22px;
}

.proc-step h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.proc-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.proc-step .proc-day {
  display: inline-block;
  background: var(--green-dim);
  border: 1px solid rgba(45, 212, 160, 0.2);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════
   SECTION 5 — RESULTS
════════════════════════════════════ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.result-top {
  background: linear-gradient(135deg, #0A1A12, #060E09);
  border-bottom: 1px solid #1A2E22;
  padding: 28px;
}

.result-industry {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.result-industry::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.result-kpi {
  margin-bottom: 8px;
}

.result-kpi-num {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -2px;
  line-height: 1;
}

.result-kpi-label {
  font-size: 12px;
  color: rgba(45, 212, 160, 0.6);
  margin-top: 3px;
}

.result-body {
  padding: 20px 28px;
}

.result-body h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.result-body p {
  font-size: 12px;
  color: var(--muted);
}

.result-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.result-tag {
  font-size: 11px;
  color: var(--muted);
  background: var(--off-black);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ════════════════════════════════════
   SECTION 6 — WHY US
════════════════════════════════════ */
.usp-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.usp-left h2 {
  margin-bottom: 20px;
}

.usp-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.usp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: border-color 0.2s;
}

.usp-card:hover {
  border-color: var(--accent);
}

.usp-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.usp-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.usp-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.usp-big-stat {
  background: linear-gradient(135deg, var(--off-black), var(--card));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  margin-top: 16px;
}

.usp-big-num {
  font-family: var(--heading-font);
  font-size: 72px;
  font-weight: 800;
  color: var(--accent-bright);
  letter-spacing: -4px;
  line-height: 1;
}

.usp-big-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

/* ════════════════════════════════════
   SECTION 7 — TESTIMONIALS
════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  position: relative;
}

.testi-quote {
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.testi-stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testi-biz {
  font-size: 12px;
  color: var(--muted);
}

.testi-result-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green-dim);
  border: 1px solid rgba(45, 212, 160, 0.2);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ════════════════════════════════════
   SECTION 8 — TOOLS
════════════════════════════════════ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.tool-chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.tool-chip:hover {
  border-color: var(--accent);
  background: rgba(123, 94, 167, 0.06);
}

.tool-emoji {
  font-size: 22px;
}

.tool-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.tool-cat {
  font-size: 11px;
  color: var(--muted);
}

/* ════════════════════════════════════
   SECTION 9 — FAQs
════════════════════════════════════ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
}

.faq-left h2 {
  margin-bottom: 16px;
}

.faq-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.faq-question:hover {
  color: var(--green);
}

.faq-chevron {
  color: var(--muted);
  font-size: 16px;
  transition: transform 0.2s;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-item.open {
  border-color: var(--accent);
}

/* ════════════════════════════════════
   SECTION 10 — FINAL CTA
════════════════════════════════════ */
.cta-section {
  padding: 120px 0;
  background: var(--off-black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 160, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 212, 160, 0.08);
  border: 1px solid rgba(45, 212, 160, 0.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.cta-section h2 {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -2px;
  max-width: 640px;
  margin: 0 auto 20px;
}

.cta-section h2 span {
  color: var(--green);
}

.cta-section p {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

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

.cta-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust span {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-trust span::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
}

/* ─── FORM INLINE ─── */
.inline-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  max-width: 540px;
  margin: 0 auto 36px;
  text-align: left;
}

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

.form-field label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 7px;
}

.form-field input,
.form-field select {
  width: 100%;
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 14px;
  outline: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--green);
}

.form-field input::placeholder {
  color: var(--muted);
}

.form-full {
  margin-bottom: 14px;
}

.form-submit {
  width: 100%;
}

.form-micro {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* ════════════════════════════════════
   RESPONSIVE (TABLET & MOBILE)
════════════════════════════════════ */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero::before {
    top: 0;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .problem-grid,
  .usp-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-right,
  .faq-left {
    position: relative;
    top: 0;
  }

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

  .process-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
  }

  .process-row::before {
    display: none;
  }

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

  .container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

  .services-grid,
  .results-grid,
  .testi-grid,
  .usp-grid {
    grid-template-columns: 1fr;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .inline-form {
    padding: 24px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section h2 {
    font-size: 28px;
  }

  .hero-stats-panel {
    padding: 24px;
  }
}

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

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns a,
  .cta-btns a {
    width: 100%;
    justify-content: center;
  }
}

/* ════════════════════════════════════
   Extracted from smm.php
════════════════════════════════════ */
/* Phone Mockup Specifics */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 229, 160, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.02);
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--bg);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  padding: 8px 12px 12px;
}

.ig-story {
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), #0F3322);
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.ig-story::before {
  content: 'WEBAXISMEDIA';
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: .08em;
}

.ig-story-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.ig-post-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border2);
}

.ig-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.ig-post-meta {
  font-size: 11px;
}

.ig-name {
  font-weight: 600;
  color: var(--white);
}

.ig-stat {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  margin-left: auto;
}

.metric-pill {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mp-left {
  left: -40px;
  top: 160px;
}

.mp-right {
  right: -40px;
  top: 280px;
}

.mp-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}

/* Platform Pills */
.platforms-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s;
}

.platform-pill:hover {
  border-color: var(--green);
  transform: scale(1.04);
}

.plat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Content Strategy Grid */
.strategy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.tile h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin: 10px 0 4px;
}

.tile p {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .strategy-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }
}

/* ════════════════════════════════════
   Extracted from webdesign.php
════════════════════════════════════ */
/* Browser Mockup */
.browser {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 229, 160, 0.1);
}

.browser-bar {
  background: #080808;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.b-dots {
  display: flex;
  gap: 6px;
}

.b-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.b-dot-r {
  background: #FF5F57;
}

.b-dot-y {
  background: #FFBD2E;
}

.b-dot-g {
  background: #27C840;
}

.b-url {
  flex: 1;
  background: #141414;
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--muted);
  font-family: monospace;
}

.site-preview {
  background: linear-gradient(160deg, #0A1510 0%, #060A08 100%);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sp-nav {
  width: 85%;
  height: 8px;
  background: var(--border2);
  border-radius: 4px;
}

.sp-hero-txt {
  width: 60%;
  height: 20px;
  background: var(--green);
  border-radius: 6px;
  opacity: .7;
}

.sp-sub {
  width: 45%;
  height: 10px;
  background: var(--border);
  border-radius: 4px;
}

.sp-btns {
  display: flex;
  gap: 8px;
}

.sp-btn {
  width: 80px;
  height: 14px;
  border-radius: 6px;
}

.sp-btn-1 {
  background: var(--green);
  opacity: .8;
}

.sp-btn-2 {
  background: var(--border2);
}

.sp-cards {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.sp-card {
  width: 60px;
  height: 36px;
  background: var(--border);
  border-radius: 6px;
}

.speed-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #141414;
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.speed-score {
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.speed-lbl {
  font-size: 11px;
  color: var(--muted);
}

.browser-wrap {
  position: relative;
}

/* ===================================================
   LIGHT THEME OVERRIDES FOR EXTRACTED COMPONENTS
   =================================================== */
[data-theme="light"] .seo-page-wrapper {
  --black: #f8f9fa;
  --off-black: #f0f0f0;
  --card: var(--white)fff;
  --border: #e9ecef;
  --text: #111111;
  --muted: #666666;
  --white: #111111;
  --accent-glow: rgba(123, 94, 167, 0.08);
}