/* ============================================================
   YOURSEOLINKS — styles.css  |  Full Dark Theme
   Palette: #0A0E1A base · #4F46E5 indigo · #F59E0B amber
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #E2E4EE;
  background: #0A0E1A;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
}
@media (pointer: coarse) { body { cursor: auto; } }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: none; }

/* ── Tokens ── */
:root {
  --dark:        #0A0E1A;
  --dark2:       #0F1422;
  --dark3:       #141928;
  --dark4:       #1A2035;
  --card-bg:     #111627;
  --card-border: rgba(255,255,255,0.07);
  --primary:     #4F46E5;
  --primary-d:   #3730A3;
  --primary-l:   rgba(79,70,229,0.12);
  --accent:      #F59E0B;
  --accent-d:    #D97706;
  --text:        #F0F2FF;
  --text-2:      #CBD0E8;
  --text-muted:  #7B82A8;
  --text-light:  #4A5074;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(79,70,229,0.25);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-md:   0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.45);
}

/* ── Container ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── Sections ── */
.section       { padding: 96px 0; background: var(--dark); }
.section-dark  { background: var(--dark2); }

.section-eyebrow {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.section-eyebrow.light { color: rgba(245,158,11,0.85); }

.section-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800; color: var(--text);
  line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 16px;
}
.section-title.light { color: #fff; }

.section-sub {
  font-size: 17px; color: var(--text-muted);
  max-width: 540px; line-height: 1.7; margin-bottom: 56px;
}
.section-sub.light { color: rgba(255,255,255,0.48); }

.inline-link { color: var(--primary); font-weight: 600; }
.inline-link:hover { text-decoration: underline; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cd {
  position: fixed; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}
.cr {
  position: fixed; width: 36px; height: 36px;
  border: 2px solid var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s, border-color 0.2s;
  opacity: 0.5;
}
@media (pointer: coarse) { .cd, .cr { display: none; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed; inset: 0 0 auto 0; z-index: 999;
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.5); }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 66px;
}

.nav-logo {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 21px; font-weight: 800;
  color: #fff; letter-spacing: -0.02em; flex-shrink: 0;
}
.logo-accent { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 24px;
}
.nav-links > a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.nav-links > a:hover,
.nav-links > a.active-link { color: #fff; }

.nav-cta {
  background: var(--primary) !important; color: #fff !important;
  padding: 9px 20px; border-radius: 8px;
  font-weight: 600 !important; font-size: 14px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--primary-d) !important;
  transform: translateY(-1px);
}

/* ── Services Dropdown ── */
.nav-dropdown { position: relative; }

.nav-drop-btn {
  background: none; border: none;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 5px;
  transition: color 0.2s; padding: 0;
  cursor: none;
}
.nav-drop-btn:hover { color: #fff; }
.drop-arrow { font-size: 11px; transition: transform 0.25s; display: inline-block; }
.nav-dropdown.open .drop-arrow { transform: rotate(180deg); }

.drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 210px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.nav-dropdown.open .drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.drop-item {
  display: block; padding: 9px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--text-2); border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.drop-item:hover {
  background: var(--primary-l); color: #fff;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; background: var(--dark);
  min-height: 100vh; display: flex; flex-direction: column;
  overflow: hidden; padding-top: 66px;
}
.bubble-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(79,70,229,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,0.04) 1px, transparent 1px);
  background-size: 52px 52px; pointer-events: none;
}
.hero-glow-1 {
  position: absolute; top: -200px; left: 50%;
  transform: translateX(-50%); width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.25) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.hero-glow-2 {
  position: absolute; bottom: 80px; left: 50%;
  transform: translateX(-50%); width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding-top: 72px; padding-bottom: 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(79,70,229,0.14); border: 1px solid rgba(79,70,229,0.3);
  color: rgba(255,255,255,0.82); font-size: 13px; font-weight: 500;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
  animation: bpulse 2.2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes bpulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}
.hero-headline {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(38px, 5.6vw, 76px); font-weight: 800;
  color: #fff; line-height: 1.06; letter-spacing: -0.035em;
  margin-bottom: 22px; max-width: 820px;
}
.headline-gradient {
  background: linear-gradient(130deg, #F59E0B 0%, #FDE68A 50%, #F59E0B 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200% 200%;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.54);
  line-height: 1.72; max-width: 540px; margin-bottom: 36px;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 32px;
}
.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 56px;
}
.trust-avatars { display: flex; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--dark);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 11px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.av1{background:#4F46E5} .av2{background:#7C3AED}
.av3{background:#059669} .av4{background:#DC2626}
.trust-text { font-size: 13px; color: rgba(255,255,255,0.45); }
.trust-text strong { color: rgba(255,255,255,0.78); }

/* Hero cards row */
.hero-cards-row {
  display: flex; gap: 16px; justify-content: center;
  align-items: stretch; flex-wrap: wrap; width: 100%; max-width: 900px;
}
.floating-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 18px; color: #fff; flex-shrink: 0;
}
.fc-main { padding: 22px 24px; min-width: 240px; animation: floatA 4.5s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.fc-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.fc-dot { width: 8px; height: 8px; border-radius: 50%; }
.fc-dot.green { background: #22C55E; }
.fc-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.fc-domain { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.fc-tags { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.fc-tag { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 5px; }
.fc-tag.indigo{background:rgba(79,70,229,0.3);color:#A5B4FC}
.fc-tag.amber{background:rgba(245,158,11,0.22);color:#FCD34D}
.fc-tag.green{background:rgba(34,197,94,0.18);color:#86EFAC}
.fc-bar { height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.fc-bar-fill { height: 100%; background: linear-gradient(90deg,#4F46E5,#818CF8); border-radius: 3px; }
.fc-bar-labels { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.28); }
.fc-stat-1 { padding: 22px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 130px; animation: floatB 5s ease-in-out infinite; }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.fc-big-num { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 46px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 3px; }
.fc-unit { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65); margin-bottom: 2px; }
.fc-sublabel { font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.08em; }
.fc-stat-2 { padding: 22px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 130px; animation: floatC 4s ease-in-out infinite; }
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-icon { font-size: 28px; margin-bottom: 8px; }
.fc-guarantee-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.fc-guarantee-text strong { color: #fff; font-weight: 700; }
.fc-mini-card { padding: 22px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; font-size: 14px; font-weight: 600; min-width: 130px; animation: floatD 3.8s ease-in-out infinite; }
@keyframes floatD { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
.fc-check { color: #4ADE80; font-size: 22px; }

/* Stats bar */
.hero-stats { position: relative; z-index: 2; border-top: 1px solid var(--border); padding: 28px 0 32px; background: var(--dark); }
.stats-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 12px 44px; }
.stat-num-wrap { display: flex; align-items: baseline; gap: 2px; line-height: 1; margin-bottom: 6px; }
.stat-num { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 40px; font-weight: 800; color: #fff; }
.stat-suffix { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 26px; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); }
.stat-div { width: 1px; height: 44px; background: var(--border); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap { background: var(--primary); overflow: hidden; padding: 11px 0; }
.ticker-track { overflow: hidden; }
.ticker-inner { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ticker-inner span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.82); padding: 0 36px; white-space: nowrap; letter-spacing: 0.03em; }
.ticker-inner span::after { content: '·'; margin-left: 36px; color: rgba(255,255,255,0.3); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: flex; align-items: center; gap: 0; }
.step-card {
  flex: 1; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.step-num { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 14px; }
.step-icon { font-size: 30px; margin-bottom: 14px; }
.step-card h3 { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.step-connector { padding: 0 8px; flex-shrink: 0; }
.connector-line { width: 40px; height: 2px; background: var(--border); position: relative; }
.connector-line::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--border); border-left-width: 8px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  padding: 13px 28px; border-radius: 10px; border: 2px solid transparent;
  cursor: none; transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-d); border-color: var(--primary-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(79,70,229,0.38); }
.btn-ghost { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.14); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-d); border-color: var(--accent-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,0.35); }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.18); }
.btn-outline-light:hover { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }
.full-w { width: 100%; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 28px; align-items: start; }
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 36px 28px; position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: rgba(79,70,229,0.1); border-color: rgba(245,158,11,0.3); transform: translateY(-10px); }
.pricing-card.featured:hover { transform: translateY(-15px); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--dark); font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.plan-price { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 42px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 24px; }
.plan-price.accent { color: var(--accent); }
.price-unit { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.plan-meta { display: flex; gap: 20px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.plan-meta-item { display: flex; flex-direction: column; gap: 3px; }
.meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--text-light); }
.meta-val { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 15px; font-weight: 700; color: #A5B4FC; }
.pricing-card.featured .meta-val { color: var(--accent); }
.plan-feats { margin-bottom: 28px; }
.plan-feats li { font-size: 14px; color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
.plan-feats li:last-child { border-bottom: none; }
.feat-check { color: #4ADE80; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.bulk-strip { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 16px 24px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 14px; color: var(--text-muted); }
.bulk-label { font-weight: 700; color: rgba(255,255,255,0.8); margin-right: 4px; }
.bulk-item strong { color: var(--accent); }
.bulk-item a { color: var(--accent); font-weight: 600; }
.bulk-sep { color: var(--border); }

/* ============================================================
   GUARANTEE BAND
   ============================================================ */
.guarantee-band { background: #0e1220; border-top: 1px solid rgba(245,158,11,0.15); border-bottom: 1px solid rgba(245,158,11,0.15); padding: 28px 0; }
.guarantee-inner { display: flex; align-items: center; gap: 20px; max-width: 720px; margin: 0 auto; }
.guarantee-icon { font-size: 40px; flex-shrink: 0; }
.guarantee-body { display: flex; flex-direction: column; gap: 4px; }
.guarantee-body strong { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 18px; font-weight: 700; color: #fff; }
.guarantee-body span { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   SITES TABLE
   ============================================================ */
.table-controls { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.table-search { font-family: 'Inter', sans-serif; font-size: 14px; padding: 10px 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--card-bg); color: var(--text); outline: none; min-width: 230px; transition: border-color 0.2s, box-shadow 0.2s; cursor: none; }
.table-search:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.15); }
.filter-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.fpill { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; padding: 7px 15px; border-radius: 100px; border: 1px solid var(--border); background: var(--card-bg); color: var(--text-muted); cursor: none; transition: all 0.18s; }
.fpill:hover { border-color: var(--primary); color: var(--primary); }
.fpill.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.table-shell { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; overflow-x: auto; }
.sites-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.sites-table thead { background: var(--dark3); }
.sites-table th { text-align: left; padding: 13px 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.sites-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--text-2); background: var(--card-bg); }
.sites-table tbody tr:last-child td { border-bottom: none; }
.sites-table tbody tr:hover td { background: var(--dark3); }
.sites-table tbody tr.row-hidden { display: none; }
.td-domain { font-weight: 500; color: var(--text) !important; }
.dr-pill { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; white-space: nowrap; }
.dr-pill.high { background: rgba(5,150,105,0.15); color: #34D399; }
.dr-pill.mid  { background: rgba(245,158,11,0.15); color: #FCD34D; }
.dr-pill.low  { background: rgba(107,114,128,0.15); color: #9CA3AF; }
.type-pill { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 6px; background: rgba(79,70,229,0.15); color: #A5B4FC; }
.table-note { text-align: center; font-size: 14px; color: var(--text-muted); margin-top: 16px; }
.table-note a { color: var(--primary); font-weight: 600; }

/* ============================================================
   NICHES
   ============================================================ */
.niches-section { background: var(--dark2); padding: 64px 0; }
.niches-heading { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 26px; font-weight: 800; color: #fff; text-align: center; margin-bottom: 28px; }
.niches-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 22px; }
.niche-tag { font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 100px; background: var(--card-bg); border: 1px solid var(--border); color: var(--text-2); transition: all 0.2s; }
.niche-tag:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.niches-note { text-align: center; font-size: 14px; color: var(--text-muted); }
.niches-note a { color: var(--accent); font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.t-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 28px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.t-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.t-stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.t-quote { font-size: 15px; color: var(--text-2); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.t-footer { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; color: #fff; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t-name { font-size: 14px; font-weight: 600; color: var(--text); }
.t-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.blog-img { position: relative; height: 180px; overflow: hidden; }
.blog-img-placeholder { width: 100%; height: 100%; }
.bi-1 { background: linear-gradient(135deg, #1e1060 0%, #4F46E5 50%, #7C3AED 100%); }
.bi-2 { background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); }
.bi-3 { background: linear-gradient(135deg, #0a2010 0%, #059669 50%, #34D399 100%); }
.blog-cat { position: absolute; top: 14px; left: 14px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; background: rgba(245,158,11,0.9); color: #0A0E1A; padding: 4px 10px; border-radius: 6px; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.blog-date { font-size: 12px; color: var(--text-muted); }
.blog-read { font-size: 12px; color: var(--primary); font-weight: 600; background: var(--primary-l); padding: 2px 8px; border-radius: 4px; }
.blog-title { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 12px; }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.68; margin-bottom: 20px; }
.blog-author { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-2); font-weight: 500; }
.blog-av { width: 30px; height: 30px; border-radius: 50%; color: #fff; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-left { position: sticky; top: 90px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); padding: 20px 0; cursor: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-q:hover { color: var(--primary); }
.faq-ico { font-size: 22px; color: var(--text-light); flex-shrink: 0; transition: transform 0.3s, color 0.2s; font-weight: 300; line-height: 1; }
.faq-item.open .faq-ico { transform: rotate(45deg); color: var(--primary); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-ans p { font-size: 15px; color: var(--text-muted); line-height: 1.75; padding-bottom: 22px; }
.faq-item.open .faq-ans { max-height: 260px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; align-items: start; }
.contact-left p { font-size: 16px; color: rgba(255,255,255,0.48); line-height: 1.72; margin-bottom: 0; max-width: 380px; }
.cform { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform-group { margin-bottom: 18px; }
.cform-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; letter-spacing: 0.01em; }
.cform-group input, .cform-group textarea { width: 100%; font-family: 'Inter', sans-serif; font-size: 14px; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px; background: var(--dark3); color: var(--text); outline: none; transition: border-color 0.2s, box-shadow 0.2s; resize: vertical; cursor: none; }
.cform-group input::placeholder, .cform-group textarea::placeholder { color: var(--text-light); }
.cform-group input:focus, .cform-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.15); background: var(--dark4); }
.form-success { display: none; margin-top: 12px; text-align: center; font-size: 14px; font-weight: 600; color: #34D399; background: rgba(5,150,105,0.1); border: 1px solid rgba(5,150,105,0.2); border-radius: 8px; padding: 10px; }
.form-success.visible { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr; gap: 48px; margin-bottom: 48px; }

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.38); max-width: 260px; line-height: 1.65; }
.footer-domain { font-size: 12px; color: rgba(255,255,255,0.2) !important; }
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); background: var(--card-bg); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; }
.social-link:hover { border-color: var(--primary); color: #fff; background: var(--primary-l); }
.social-link.wa:hover { border-color: #25D366; color: #25D366; background: rgba(37,211,102,0.1); }

.footer-nav-col, .footer-contact-col { display: flex; flex-direction: column; gap: 12px; }
.fnav-head { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.footer-nav-col a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-nav-col a:hover { color: #fff; }

.footer-cdetail { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; }
.footer-cdetail span:first-child { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.footer-cdetail a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-cdetail a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top { position: fixed; bottom: 28px; right: 28px; z-index: 500; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; border: none; font-size: 18px; cursor: none; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(16px); transition: opacity 0.3s, transform 0.3s, background 0.2s; pointer-events: none; }
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--primary-d); }

/* ============================================================
   WHATSAPP TOGGLE
   ============================================================ */
.wa-toggle {
  position: fixed; bottom: 28px; left: 28px; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  width: 52px; height: 52px; border-radius: 50%;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: width 0.35s ease, border-radius 0.35s ease, box-shadow 0.25s, transform 0.25s;
  overflow: hidden; white-space: nowrap; cursor: none;
}
.wa-toggle svg { flex-shrink: 0; min-width: 26px; }
.wa-toggle:hover {
  width: 210px; border-radius: 50px;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  justify-content: flex-start; padding-left: 14px;
}
.wa-label {
  max-width: 0; overflow: hidden;
  opacity: 0; margin-left: 0;
  transition: max-width 0.3s ease, opacity 0.2s 0.15s, margin-left 0.3s ease;
  pointer-events: none; flex-shrink: 0;
}
.wa-toggle:hover .wa-label {
  max-width: 160px; opacity: 1; margin-left: 10px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { padding-top: 52px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-5px); }
  .t-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { position: absolute; top: 66px; left: 0; right: 0; background: rgba(10,14,26,0.99); flex-direction: column; align-items: flex-start; padding: 20px 28px 28px; gap: 18px; border-bottom: 1px solid var(--border); display: none; }
  .nav-links.open { display: flex; }
  .nav-links > a { font-size: 16px; }
  .hamburger { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-drop-btn { font-size: 16px; color: rgba(255,255,255,0.6); }
  .drop-menu { position: static; transform: none; min-width: 100%; margin-top: 8px; box-shadow: none; border-color: var(--border); }
  .nav-dropdown.open .drop-menu { transform: none; }
  .section { padding: 64px 0; }
  .hero-inner { padding-top: 40px; }
  .hero-cards-row { gap: 12px; }
  .stats-row { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-div { display: none; }
  .stat-item { padding: 16px 20px; }
  .stat-num { font-size: 32px; }
  .steps-grid { flex-direction: column; gap: 0; }
  .step-connector { padding: 8px 0; }
  .connector-line { width: 2px; height: 28px; margin: 0 auto; }
  .connector-line::after { right: auto; bottom: -8px; top: auto; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--border); border-left-color: transparent; border-left-width: 6px; }
  .cform { padding: 24px; }
  .cform-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .bulk-strip { flex-direction: column; align-items: flex-start; gap: 6px; }
  .bulk-sep { display: none; }
  .back-top { bottom: 20px; right: 20px; }
  .wa-toggle { bottom: 20px; left: 16px; width: 48px; height: 48px; }
  .wa-toggle:hover { width: 48px; height: 48px; border-radius: 50%; padding: 0; justify-content: center; transform: none; }
  .wa-label { display: none; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-badge { font-size: 12px; padding: 6px 13px; }
  .hero-headline { font-size: 34px; letter-spacing: -0.025em; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }
  .hero-cards-row { flex-direction: column; align-items: center; }
  .fc-main, .fc-stat-1, .fc-stat-2, .fc-mini-card { min-width: 220px; width: 100%; max-width: 300px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 12px 12px; }
  .section-title { font-size: 26px; }
  .table-search { min-width: 100%; }
  .table-controls { flex-direction: column; align-items: stretch; }
  .pricing-card { padding: 28px 20px; }
  .cform { padding: 20px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
