/*
Theme Name: RepuGuard
Theme URI: https://repuguard.com
Author: RepuGuard
Author URI: https://repuguard.com
Description: A premium dark-mode WordPress theme built for Online Reputation Management agencies. Features a complete demo website with one-click import, Services custom post type, Gutenberg-optimized layouts, and full mobile responsiveness.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: repuguard
Tags: dark, one-column, custom-menu, custom-logo, featured-images, full-width-template, theme-options

*/
/* ============================================================
   REPUGUARD â€” DARK FUTURISTIC DESIGN SYSTEM
   Aegis Elite Style: Black Â· Neon Lime Â· White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• DESIGN TOKENS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --bg:          #0A0A0A;
  --bg-card:     #111111;
  --bg-elevated: #161616;
  --border:      #1F1F1F;
  --border-hover:#2A2A2A;

  --accent:      #D9FF00;
  --accent-dim:  rgba(217, 255, 0, 0.15);
  --accent-glow: rgba(217, 255, 0, 0.25);

  --white:       #FFFFFF;
  --text:        #E5E5E5;
  --text-muted:  #D4D4D4;
  --text-dim:    #555555;

  --danger:      #FF4444;
  --success:     #00DD66;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
  --section-y: 120px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --ease: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESET â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--ease); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• TYPOGRAPHY â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.75rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }
.wp-block-html p, section p { color: var(--text-muted); }

em.accent { color: var(--accent); font-style: italic; }
.accent { color: var(--accent); }

.section-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 5px 14px;
  background: var(--accent-dim);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(217, 255, 0, 0.12);
}

.section-desc { max-width: 560px; margin-top: 10px; }
.text-center { text-align: center; }
.section-desc.text-center, .text-center .section-desc { margin-left: auto; margin-right: auto; }
.section-header { margin-bottom: 64px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• LAYOUT â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-y) 0; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• BUTTONS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: var(--ease);
}

.btn-icon { width: 16px; height: 16px; }

.btn-accent {
  background: var(--accent);
  color: #000;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--accent-glow), 0 4px 16px rgba(0,0,0,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-hover);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-glow {
  box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(217, 255, 0, 0.1);
}
.btn-glow:hover {
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(217, 255, 0, 0.15);
}

.btn-sm { padding: 9px 20px; font-size: 0.8125rem; }

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

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• DARK CARDS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dark-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--ease);
}
.dark-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.card-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid rgba(217, 255, 0, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.card-icon-wrap svg { width: 20px; height: 20px; }

.card-icon-wrap.danger {
  background: rgba(255, 68, 68, 0.1);
  border-color: rgba(255, 68, 68, 0.15);
  color: var(--danger);
}

.card-icon-wrap.amber {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
}

.card-icon-wrap.green {
  background: rgba(0, 221, 102, 0.1);
  border-color: rgba(0, 221, 102, 0.15);
  color: var(--success);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• ICONS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.star { width: 14px; height: 14px; color: var(--text-dim); }
.star.filled { color: var(--accent); fill: var(--accent); }

.quote-icon { width: 32px; height: 32px; color: var(--accent-dim); margin-bottom: 16px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• SCROLL REVEAL â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }
.reveal-delay-5 { transition-delay: 0.25s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• NAVIGATION â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1002;
}
.navbar-brand span { color: var(--accent); }

.navbar-links { display: flex; align-items: center; gap: 28px; }
.navbar-links > a, .nav-dropdown > .nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
  padding: 6px 0;
}
.navbar-links > a:hover, .nav-dropdown:hover > .nav-link { color: var(--white); }
.navbar-links > a::after, .nav-dropdown > .nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.navbar-links > a:hover::after, .nav-dropdown:hover > .nav-link::after { width: 100%; }

/* â”€â”€ Services Dropdown â”€â”€ */
.nav-dropdown { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; }
.nav-link .dropdown-arrow { width: 12px; height: 12px; transition: transform 0.3s ease; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--ease);
}
.dropdown-menu a:hover {
  background: var(--bg-elevated);
  color: var(--white);
}
.dropdown-menu a:hover .dd-icon {
  background: var(--accent-dim);
  border-color: rgba(217, 255, 0, 0.15);
  color: var(--accent);
}
.dd-icon {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: var(--ease);
}
.dd-icon svg { width: 15px; height: 15px; }

/* â”€â”€ Right-side nav actions â”€â”€ */
.navbar-right { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--ease);
}
.nav-phone:hover { color: var(--accent); }
.nav-phone svg { width: 15px; height: 15px; }
.nav-divider { width: 1px; height: 20px; background: var(--border); }

/* â”€â”€ Hamburger â”€â”€ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #1 â€” HERO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.3;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.hero h1 { margin-bottom: 20px; line-height: 1.1; }
.hero-desc { font-size: 1.0625rem; margin-bottom: 32px; max-width: 480px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.proof-avatars { display: flex; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

.proof-stars { display: flex; gap: 1px; margin-bottom: 2px; }
.proof-text span { font-size: 0.75rem; color: var(--text-muted); }

/* Dashboard Card */
.hero-visual { position: relative; }

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.dash-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
}
.dash-dot.live {
  background: var(--accent);
  animation: pulse 2s infinite;
}
.dash-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

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

.dash-metric {
  text-align: center;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.metric-label { display: block; font-size: 0.625rem; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.metric-value { display: block; font-size: 1.5rem; font-weight: 800; color: var(--white); }
.metric-value.accent { color: var(--accent); }
.metric-value.positive { color: var(--success); }
.metric-value small { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }

.dash-chart { margin-bottom: 16px; }
.chart-svg { width: 100%; height: 60px; }

.dash-alerts { display: flex; flex-direction: column; gap: 0; }

.alert-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.alert-icon { width: 14px; height: 14px; }
.alert-icon.positive { color: var(--accent); }
.alert-time { margin-left: auto; font-size: 0.625rem; color: var(--text-dim); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #2 â€” TRUST BAR â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--ease);
}
.trust-logo:hover { color: var(--text-muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #3 â€” PROBLEMS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.problem-card { text-align: center; }
.problem-card .card-icon-wrap { margin: 0 auto 20px; }
.problem-card h3 { margin-bottom: 8px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #4 â€” SOLUTION â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.solution .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-content h2 { margin-bottom: 14px; }
.solution-content > p { margin-bottom: 28px; }

.feature-checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

.check-row { display: flex; align-items: flex-start; gap: 12px; }

.check-box {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(217, 255, 0, 0.15);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-box svg { width: 13px; height: 13px; }

.check-row span { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.check-row span strong { color: var(--white); }

.timeline-flow { display: flex; flex-direction: column; }

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}
.timeline-step:not(:last-child) { padding-bottom: 28px; }
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 18px; top: 46px;
  width: 2px;
  height: calc(100% - 46px);
  background: var(--border);
}

.t-num {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.8125rem;
}

.timeline-step h4 { margin-bottom: 3px; }
.timeline-step p { font-size: 0.8125rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #5 â€” SERVICES â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-grid,
.services-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  display: block;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.8125rem; margin-bottom: 16px; }

.card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link svg { width: 14px; height: 14px; transition: var(--ease); }
.service-card:hover .card-link svg { transform: translateX(3px); }
.service-card:hover { border-color: rgba(217, 255, 0, 0.2); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #6 â€” PROCESS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--ease);
}
.process-step:hover { border-color: rgba(217, 255, 0, 0.2); }

.step-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.process-step h3 { margin-bottom: 6px; }
.process-step p { font-size: 0.8125rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #7 â€” RESULTS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result-card { padding: 0; overflow: hidden; }

.result-header {
  padding: 22px 24px 14px;
  border-bottom: 1px solid var(--border);
}
.result-header h3 { font-size: 0.9375rem; margin-bottom: 2px; }
.result-meta { font-size: 0.6875rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }

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

.before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
}

.ba-col { text-align: center; flex: 1; }

.ba-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.ba-rating {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}
.ba-rating.danger { color: var(--danger); }
.ba-rating.success { color: var(--accent); }

.ba-arrow { color: var(--text-dim); }
.ba-arrow svg { width: 18px; height: 18px; }

.result-stats { display: flex; flex-direction: column; }

.r-stat {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
}
.r-stat span:first-child { color: var(--text-muted); }
.r-stat .accent { font-weight: 700; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #8 â€” TESTIMONIALS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; padding: 0 40px; }
.testimonial-slide .container { max-width: 680px; }
.testimonial-content { text-align: center; }

.t-quote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.t-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.t-info strong { display: block; font-size: 0.875rem; color: var(--white); }
.t-info span { font-size: 0.75rem; color: var(--text-dim); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.slider-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--ease);
}
.slider-btn svg { width: 16px; height: 16px; }
.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-dim);
  cursor: pointer;
  border: none;
  transition: var(--ease);
}
.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #9 â€” WHY US â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card { text-align: center; }
.why-card .card-icon-wrap { margin: 0 auto 20px; }
.why-card h3 { margin-bottom: 8px; }
.why-card p { font-size: 0.8125rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #10 â€” LOCAL SEO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.local-seo .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.seo-pipeline { display: flex; flex-direction: column; }
.pipe-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.pipe-step:hover { border-color: var(--border-hover); }
.pipe-step .card-icon-wrap { margin-bottom: 0; }
.pipe-step h4 { margin-bottom: 2px; }
.pipe-step p { font-size: 0.75rem; }

.pipe-connector {
  width: 2px; height: 14px;
  background: var(--border);
  margin-left: 40px;
}

.local-seo-content h2 { margin-bottom: 14px; }
.local-seo-content > p { margin-bottom: 28px; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.stat-box {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1.1;
}
.stat-box span:last-child { font-size: 0.75rem; color: var(--text-muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #11 â€” FAQ â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--ease);
}
.faq-item.active { border-color: rgba(217, 255, 0, 0.2); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--bg-card);
  border: none;
  width: 100%;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: var(--ease);
}
.faq-question:hover { background: var(--bg-elevated); }

.faq-toggle {
  width: 18px; height: 18px;
  min-width: 18px;
  color: var(--accent);
  transition: var(--ease);
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #12 â€” FINAL CTA â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.final-cta {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.25;
}

.final-cta .container { text-align: center; position: relative; z-index: 1; }
.final-cta h2 { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3rem); }
.final-cta p { color: var(--text-muted); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #13 â€” BLOG â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-card { padding: 0; overflow: hidden; display: block; }
.blog-card:hover { border-color: rgba(217, 255, 0, 0.2); }

.blog-thumb {
  height: 160px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}
.blog-thumb svg { width: 40px; height: 40px; }

.blog-body { padding: 22px; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }

.blog-tag {
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--accent-dim);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-date { font-size: 0.6875rem; color: var(--text-dim); }
.blog-card h3 { font-size: 0.9375rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.8125rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• #14 â€” FOOTER â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .navbar-brand { display: inline-block; margin-bottom: 14px; font-size: 1rem; }
.footer-brand p { font-size: 0.8125rem; color: var(--text-dim); max-width: 220px; line-height: 1.6; margin-bottom: 18px; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: var(--ease);
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #000; }

.footer-col h4 { font-size: 0.8125rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.8125rem; color: var(--text-dim); }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.75rem; color: var(--text-dim); }
.footer-links a:hover { color: var(--accent); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• PAGE HERO (Subpages) â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.2;
}
.page-hero h1 { margin-bottom: 16px; position: relative; }
.page-hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• SERVICES ARCHIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-archive { padding: 0 0 var(--section-y); }

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

.archive-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: block;
  transition: var(--ease);
}
.archive-card:hover {
  border-color: rgba(217, 255, 0, 0.2);
  transform: translateY(-2px);
}

.archive-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4px;
}
.archive-card-top .card-link { opacity: 0; transition: var(--ease); }
.archive-card:hover .card-link { opacity: 1; }
.archive-card:hover .card-link svg { transform: translateX(3px); }

.archive-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.archive-card > p { font-size: 0.875rem; margin-bottom: 20px; line-height: 1.7; }

.archive-card-stats {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mini-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mini-stat .accent { font-size: 0.875rem; font-weight: 800; }
.mini-stat span:last-child { font-size: 0.625rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• SERVICE DETAIL PAGES â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.detail-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.2;
}
.detail-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.detail-hero-content { position: relative; }
.detail-hero-content h1 { margin-bottom: 16px; font-size: clamp(2rem, 4.5vw, 3rem); }
.detail-hero-content > p { margin-bottom: 28px; font-size: 1rem; }

.detail-hero-visual .dashboard-card { max-width: 460px; }

/* â”€â”€ Detail Info Grid â”€â”€ */
.detail-info {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

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

.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--ease);
}
.detail-card:hover { border-color: var(--border-hover); }
.detail-card h3 { margin-bottom: 8px; }
.detail-card p { font-size: 0.8125rem; }
.detail-card .card-icon-wrap { margin-bottom: 16px; }

/* â”€â”€ Detail Features â”€â”€ */
.detail-features {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

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

.features-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-item .check-box { margin-top: 3px; }
.feature-item div h4 { margin-bottom: 4px; font-size: 0.9375rem; }
.feature-item div p { font-size: 0.8125rem; }

.features-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.visual-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.visual-stat {
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
}
.visual-stat .stat-num { font-size: 1.5rem; }
.visual-stat span:last-child { font-size: 0.6875rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.04em; }

/* â”€â”€ Detail Process â”€â”€ */
.detail-process {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

/* â”€â”€ Detail Pricing â”€â”€ */
.detail-pricing {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--ease);
  position: relative;
}
.pricing-card:hover { border-color: var(--border-hover); }

.pricing-card.featured {
  border-color: rgba(217, 255, 0, 0.3);
  box-shadow: 0 0 30px var(--accent-glow);
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--accent);
  color: #000;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
}

.pricing-card h3 { margin-bottom: 4px; }
.pricing-card .pricing-desc { font-size: 0.75rem; margin-bottom: 20px; }

.pricing-price {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1.1;
}
.pricing-price small { font-size: 0.875rem; font-weight: 500; color: var(--text-dim); }
.pricing-period { font-size: 0.6875rem; color: var(--text-dim); margin-bottom: 24px; }

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.pricing-feature svg { width: 14px; height: 14px; color: var(--accent); min-width: 14px; }

.pricing-card .btn { width: 100%; justify-content: center; }

/* â”€â”€ Cross-sell â”€â”€ */
.related-services {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

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

/* â”€â”€ Breadcrumb â”€â”€ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.75rem;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-dim); }
.breadcrumb .current { color: var(--text-muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero::before { right: -100px; top: -100px; width: 400px; height: 400px; }

  .solution .container,
  .local-seo .container { grid-template-columns: 1fr; gap: 48px; }

  .problems-grid, .services-grid, .services-archive-grid, .results-grid, .blog-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .detail-hero .container,
  .features-split { grid-template-columns: 1fr; gap: 40px; }
  .archive-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• IMPACT STATS BAR â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.impact-bar { padding: 0; }
.impact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px;
}
.impact-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.impact-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 8px;
}
.impact-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.impact-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• SERVICE PROBLEM SECTION â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-problem { padding: var(--section-y) 0; }
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
}
.section-desc.text-center { margin: 0 auto; }
.problem-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.prob-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--ease);
}
.prob-col:hover {
  border-color: rgba(217, 255, 0, 0.15);
}
.prob-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.prob-icon-wrap i { width: 22px; height: 22px; }
.prob-icon-wrap.danger {
  background: rgba(255, 68, 68, 0.1);
  color: #FF4444;
}
.prob-col h3 { font-size: 1rem; margin-bottom: 8px; }
.prob-col p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• AUDIENCE / WHO IT'S FOR â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-audience { padding: var(--section-y) 0; }
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}
.audience-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 24px;
  font-size: 0.9375rem;
  color: var(--text);
  transition: var(--ease);
}
.audience-chip:hover {
  border-color: rgba(217, 255, 0, 0.3);
  background: rgba(217, 255, 0, 0.04);
}
.audience-chip i {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• PROCESS TIMELINE (Vertical) â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.process-timeline { margin-top: 48px; max-width: 700px; margin-left: auto; margin-right: auto; }
.ptl-step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}
.ptl-step:last-child { padding-bottom: 0; }
.ptl-step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.ptl-step:last-child::before { display: none; }
.ptl-marker {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
}
.ptl-marker span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
}
.ptl-content { padding-top: 4px; }
.ptl-content h3 { font-size: 1.125rem; margin-bottom: 8px; }
.ptl-content p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• CASE STUDY SECTION â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-case-study { padding: var(--section-y) 0; }
.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 880px;
  margin: 48px auto 0;
}
.cs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
}
.cs-client {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cs-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), rgba(217,255,0,0.4));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  color: var(--bg);
}
.cs-client strong { display: block; font-size: 1rem; }
.cs-client span { font-size: 0.8125rem; color: var(--text-muted); }
.cs-badge {
  background: rgba(217, 255, 0, 0.08);
  border: 1px solid rgba(217, 255, 0, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cs-body { padding: 32px; }
.cs-comparison {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 32px;
}
.cs-before, .cs-after {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.cs-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.cs-label.accent { color: var(--accent); }
.cs-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.cs-metric-row:last-child { border-bottom: none; }
.cs-metric-row span { color: var(--text-muted); }
.cs-metric-row strong { font-weight: 600; }
.cs-metric-row strong.danger { color: #FF4444; }
.cs-metric-row strong.accent { color: var(--accent); }
.cs-arrow {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cs-arrow i { width: 28px; height: 28px; color: var(--accent); }
.cs-quote {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  position: relative;
}
.quote-icon {
  width: 20px; height: 20px;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 8px;
}
.cs-quote p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}
.cs-quote span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• TRUST FEATURES â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-trust { padding: var(--section-y) 0; }
.trust-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.tf-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--ease);
}
.tf-item:hover {
  border-color: rgba(217, 255, 0, 0.15);
}
.tf-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(217, 255, 0, 0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tf-icon i { width: 20px; height: 20px; color: var(--accent); }
.tf-item h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.tf-item p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• ENHANCED CTA â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}
.cta-proof {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-proof span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• TABS UI â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-tabs { padding: var(--section-y) 0; border-top: 1px solid var(--border); }
.tab-buttons {
  display: flex;
  gap: 4px;
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab-btn {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--ease);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tab-btn:hover { color: var(--white); background: var(--bg-elevated); }
.tab-btn.active {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px var(--accent-glow);
}
.tab-btn i { width: 16px; height: 16px; }
.tab-panels { margin-top: 24px; }
.tab-panel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  animation: tabFadeIn 0.35s ease;
}
.tab-panel.active { display: block; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel h3 { font-size: 1.25rem; margin-bottom: 12px; }
.tab-panel > p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.tab-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.tab-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.tab-feature i { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.tab-feature span { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• COMPARISON TABLE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-comparison { padding: var(--section-y) 0; border-top: 1px solid var(--border); }
.comparison-table {
  margin-top: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
}
.comparison-table thead th {
  padding: 20px 24px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.comparison-table thead th:first-child {
  text-align: left;
  border-radius: var(--radius) 0 0 0;
}
.comparison-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table thead th.highlight {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  position: relative;
}
.comparison-table tbody td {
  padding: 16px 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--white);
}
.comparison-table tbody td.highlight {
  background: rgba(217, 255, 0, 0.04);
  border-color: rgba(217, 255, 0, 0.15);
  color: var(--text);
}
.comparison-table tbody tr:last-child td:first-child { border-radius: 0 0 0 var(--radius); }
.comparison-table tbody tr:last-child td:last-child { border-radius: 0 0 var(--radius) 0; }
.comparison-table .check-icon { color: var(--accent); }
.comparison-table .x-icon { color: var(--danger); opacity: 0.5; }
.comparison-table .partial-icon { color: #F59E0B; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• BENEFITS / SEO IMPACT â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-benefits { padding: var(--section-y) 0; border-top: 1px solid var(--border); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.benefit-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--ease);
}
.benefit-item:hover { border-color: rgba(217, 255, 0, 0.2); transform: translateY(-2px); }
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(217, 255, 0, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.benefit-icon i { width: 24px; height: 24px; color: var(--accent); }
.benefit-item h3 { font-size: 1rem; margin-bottom: 8px; }
.benefit-item p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• STICKY CTA â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { padding: 10px 24px; font-size: 0.8125rem; }
.sticky-cta-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  display: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• ABOUT PAGE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Story Section */
.about-story { border-top: 1px solid var(--border); }
.story-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
}
.story-text h2 { margin-bottom: 20px; }
.story-text p { margin-bottom: 16px; }
.story-text p:last-of-type { margin-bottom: 0; }

.story-visual { display: flex; flex-direction: column; gap: 16px; }
.story-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--ease);
}
.story-card:hover { border-color: var(--border-hover); transform: translateX(4px); }
.story-year {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(217, 255, 0, 0.12);
  border-radius: 8px;
  padding: 6px 12px;
  white-space: nowrap;
  min-width: 56px;
  text-align: center;
}
.story-milestone h4 { margin-bottom: 4px; font-size: 0.9375rem; }
.story-milestone p { font-size: 0.8125rem; margin-bottom: 0; }

/* Mission & Vision */
.about-mission { border-top: 1px solid var(--border); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: var(--ease);
}
.mission-card:hover { border-color: var(--border-hover); }
.mission-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.mission-card > p { margin-bottom: 24px; }

.mission-quote {
  padding: 20px 24px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.mission-quote em {
  font-size: 0.9375rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
}

.mission-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(217, 255, 0, 0.1);
  border-radius: var(--radius-pill);
}

/* Stats Showcase */
.about-stats { border-top: 1px solid var(--border); }
.stats-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--ease);
}
.stat-card:hover { border-color: rgba(217, 255, 0, 0.2); transform: translateY(-3px); }
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-number.accent { color: var(--accent); }
.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Team Section */
.about-team { border-top: 1px solid var(--border); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--ease);
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }

.team-avatar {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), rgba(217, 255, 0, 0.05));
  border: 2px solid rgba(217, 255, 0, 0.15);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-initials {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.team-card p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: var(--ease);
}
.team-social a:hover { color: var(--accent); border-color: rgba(217, 255, 0, 0.2); background: var(--accent-dim); }
.team-social a svg { width: 14px; height: 14px; }

/* About Why section reuses .why-grid from homepage */
.about-why { border-top: 1px solid var(--border); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• CONTACT PAGE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-section { padding: 0 0 var(--section-y); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: flex-start;
}

/* Form Wrapper */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 28px; }

/* Form Elements */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  outline: none;
  transition: var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-full { width: 100%; justify-content: center; }

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: -4px;
}

/* Contact Info Cards */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--ease);
  margin-bottom: 12px;
}
.contact-card:hover { border-color: var(--border-hover); }
.contact-card h3 { font-size: 0.9375rem; margin-bottom: 2px; }
.contact-card p { font-size: 0.75rem; margin-top: 2px; }
.contact-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--ease);
}
a.contact-link:hover { color: var(--white); }

/* Trust Block */
.contact-trust {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 4px;
}
.contact-trust h3 { font-size: 1rem; margin-bottom: 16px; }
.trust-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.trust-check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-check i { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.trust-check span { font-size: 0.8125rem; color: var(--text-muted); }
.trust-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.trust-rating .proof-stars { display: flex; gap: 2px; }
.trust-rating span { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• BLOG ARCHIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Featured Post */
.blog-featured { padding: 0 0 var(--section-y); }
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--ease);
}
.featured-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.featured-img { position: relative; min-height: 340px; }
.featured-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg));
  display: flex; align-items: center; justify-content: center;
}
.featured-img-placeholder > i { width: 48px; height: 48px; color: var(--text-dim); }
.post-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: #000;
  border-radius: var(--radius-pill);
}
.featured-content { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.featured-content h2 { font-size: 1.5rem; margin-bottom: 12px; line-height: 1.3; }
.featured-content p { margin-bottom: 20px; }
.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--ease);
}
.featured-card:hover .featured-link { gap: 10px; }

/* Post Meta */
.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.post-category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding: 3px 10px;
  background: var(--accent-dim);
  border-radius: var(--radius-pill);
}
.post-date, .post-read {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Category Filter */
.blog-archive { padding: 0 0 var(--section-y); }
.blog-filter {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.filter-btn {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--ease);
  white-space: nowrap;
}
.filter-btn:hover { color: var(--white); background: var(--bg-elevated); }
.filter-btn.active { background: var(--accent); color: #000; }

/* Blog Cards Grid */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }

.blog-card-img { height: 180px; overflow: hidden; }
.blog-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg));
  display: flex; align-items: center; justify-content: center;
}
.blog-img-placeholder > i { width: 32px; height: 32px; color: var(--text-dim); }

.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--ease);
}
.blog-card:hover .post-read-more { gap: 10px; }

/* Newsletter CTA */
.blog-newsletter { padding-bottom: var(--section-y); }
.newsletter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}
.newsletter-content h2 { font-size: 1.5rem; margin-bottom: 8px; }
.newsletter-content p { max-width: 400px; }
.newsletter-form { flex-shrink: 0; }
.newsletter-input-wrap {
  display: flex;
  gap: 8px;
}
.newsletter-input-wrap input {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  outline: none;
  transition: var(--ease);
  min-width: 260px;
}
.newsletter-input-wrap input::placeholder { color: var(--text-dim); }
.newsletter-input-wrap input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• BLOG SINGLE POST â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Article Hero */
.article-hero {
  padding: 160px 0 60px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.15;
}
.article-hero-inner { max-width: 720px; position: relative; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
  transition: var(--ease);
}
.breadcrumb:hover { color: var(--accent); }
.article-hero h1 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 16px; line-height: 1.2; }
.article-subtitle { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; max-width: 600px; }

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(217, 255, 0, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
}
.author-name { display: block; font-size: 0.875rem; font-weight: 600; color: var(--white); }
.author-role { font-size: 0.75rem; color: var(--text-dim); }

/* Article Layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: flex-start;
}

/* Article Body Typography */
.article-body h2 {
  font-size: 1.375rem;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.article-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.article-body h3 { font-size: 1.0625rem; margin: 28px 0 10px; }
.article-body p { margin-bottom: 16px; }
.article-body .lead { font-size: 1.0625rem; color: var(--text); line-height: 1.7; margin-bottom: 28px; }
.article-body ul {
  margin-bottom: 20px;
  padding-left: 0;
}
.article-body ul li {
  padding: 6px 0 6px 24px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Callout */
.article-callout {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(217, 255, 0, 0.12);
  border-radius: var(--radius);
  margin: 28px 0;
}
.callout-icon { color: var(--accent); flex-shrink: 0; }
.callout-icon i { width: 20px; height: 20px; }
.article-callout h4 { margin-bottom: 4px; color: var(--accent); font-size: 0.875rem; }
.article-callout p { font-size: 0.875rem; margin-bottom: 0; }

/* Framework Steps */
.framework-steps { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.fw-step {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.fw-letter {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
}
.fw-step h4 { margin-bottom: 4px; }
.fw-step p { font-size: 0.875rem; margin-bottom: 0; }

/* Template Block */
.template-block {
  padding: 24px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 12px 0 28px;
}
.template-block p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 0; }
.template-block em { color: var(--text); }

/* Mistakes Grid */
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 32px;
}
.mistake-card {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.mistake-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.15);
  color: var(--danger);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.mistake-card h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.mistake-card p { font-size: 0.8125rem; margin-bottom: 0; }

/* In-article CTA */
.article-cta-box {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  margin: 40px 0 0;
}
.article-cta-box h3 { margin-bottom: 8px; }
.article-cta-box p { margin-bottom: 20px; max-width: 440px; margin-left: auto; margin-right: auto; }

/* Sidebar */
.article-sidebar { position: sticky; top: 90px; }
.sidebar-toc, .sidebar-cta, .sidebar-related {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-toc h4, .sidebar-cta h4, .sidebar-related h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  color: var(--text-muted);
}
.sidebar-toc nav { display: flex; flex-direction: column; gap: 0; }
.sidebar-toc nav a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--ease);
}
.sidebar-toc nav a:last-child { border-bottom: none; }
.sidebar-toc nav a:hover { color: var(--accent); padding-left: 6px; }

.sidebar-cta p { font-size: 0.8125rem; margin-bottom: 14px; }
.sidebar-cta .btn { font-size: 0.8125rem; }

.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--ease);
}
.related-link:last-child { border-bottom: none; }
.related-link:hover { color: var(--accent); }
.related-link i { color: var(--text-dim); transition: var(--ease); }
.related-link:hover i { color: var(--accent); }

@media (max-width: 768px) {
  :root { --section-y: 80px; }

  .navbar { padding: 12px 0; }
  .navbar, .navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .navbar-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 1001;
    padding: 80px 32px 32px;
    overflow-y: auto;
  }
  .navbar-links.active { display: flex; }
  .navbar-links > a, .nav-dropdown > .nav-link {
    font-size: 1.125rem;
    color: var(--text);
    padding: 14px 0;
  }
  .navbar-links > a::after, .nav-dropdown > .nav-link::after { display: none; }

  /* Mobile dropdown */
  .nav-dropdown { width: 100%; text-align: center; }
  .nav-dropdown > .nav-link { justify-content: center; width: 100%; }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    min-width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: none;
    margin-top: 4px;
    padding: 4px;
  }
  .dropdown-menu::before { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
  .dropdown-menu a { justify-content: flex-start; padding: 10px 14px; font-size: 0.875rem; }

  .navbar-right { display: none; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 120px 0 64px; min-height: auto; }
  .page-hero { padding: 130px 0 60px; }
  .detail-hero { padding: 130px 0 60px; }

  .problems-grid, .services-grid, .services-archive-grid, .results-grid, .blog-grid, .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid, .pricing-grid, .related-grid { grid-template-columns: 1fr; }

  .trust-logos { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-grid { grid-template-columns: 1fr; }
  .dash-metrics { grid-template-columns: 1fr; }
  .visual-stat-grid { grid-template-columns: 1fr; }

  /* New service page sections */
  .impact-strip { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .impact-divider { width: 100%; height: 1px; }
  .problem-columns { grid-template-columns: repeat(2, 1fr); }
  .cs-comparison { flex-direction: column; }
  .cs-arrow { transform: rotate(90deg); }
  .cs-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .trust-features { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-proof { flex-direction: column; align-items: center; gap: 8px; }

  /* Tabs responsive */
  .tab-buttons { flex-wrap: nowrap; overflow-x: auto; }
  .tab-btn { min-width: 140px; padding: 12px 16px; font-size: 0.75rem; }
  .tab-features { grid-template-columns: 1fr; }
  .tab-panel { padding: 24px 20px; }

  /* Benefits responsive */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Sticky CTA responsive */
  .sticky-cta { display: flex; }
  .sticky-cta-text { display: block; }

  /* About page responsive */
  .story-content { grid-template-columns: 1fr; gap: 40px; }
  .mission-grid { grid-template-columns: 1fr; }
  .stats-showcase { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact page responsive */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Blog responsive */
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 200px; }
  .featured-content { padding: 28px 24px; }
  .blog-posts-grid { grid-template-columns: 1fr; }
  .newsletter-card { flex-direction: column; padding: 32px 24px; }
  .newsletter-input-wrap { flex-direction: column; }
  .newsletter-input-wrap input { min-width: auto; width: 100%; }

  /* Blog post responsive */
  .article-hero { padding: 130px 0 48px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .mistakes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.25rem; }
  .page-hero h1 { font-size: 2rem; }
  .btn { padding: 12px 24px; font-size: 0.8125rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .problem-columns { grid-template-columns: 1fr; }
  .tab-btn { min-width: 120px; }
  .stats-showcase { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* Footer text & links overrides for max visibility */
.footer-col ul li a, .footer-links a { color: #FFFFFF !important; opacity: 0.8 !important; }
.footer-col ul li a:hover, .footer-links a:hover { opacity: 1 !important; color: var(--accent) !important; }
.footer-brand p { color: #FFFFFF !important; opacity: 0.7 !important; }

