/* ============================================================
   Backlinkedge SEO — Landing page styles
   ============================================================ */

:root {
  --bg:          #060b1c;
  --bg-2:        #0a1228;
  --surface:     #0e1730;
  --surface-2:   #121d3a;
  --border:      rgba(120, 150, 220, 0.14);
  --border-2:    rgba(120, 150, 220, 0.22);
  --text:        #e7ecf7;
  --muted:       #97a3c2;
  --muted-2:     #6b7796;
  --accent:      #3aa0ff;
  --accent-2:    #1f7fe6;
  --cyan:        #2fd0e8;
  --green:       #00c2a8;
  --purple:      #7c5cff;
  --gold:        #ffb13c;
  --radius:      16px;
  --radius-sm:   11px;
  --maxw:        1320px;
  --shadow:      0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --glow:        0 0 0 1px rgba(58,160,255,.35), 0 20px 50px -12px rgba(31,127,230,.5);
  --header-bg:   rgba(6,11,28,.72);
  --inset:       rgba(255,255,255,.04);
  --inset-2:     rgba(255,255,255,.06);
  --alt-tint:    rgba(10,18,40,.5);
}

/* ---------- Light theme ---------- */
[data-theme="light"] {
  --bg:          #ffffff;
  --bg-2:        #f3f6fb;
  --surface:     #ffffff;
  --surface-2:   #f7f9fd;
  --border:      rgba(20, 40, 90, 0.10);
  --border-2:    rgba(20, 40, 90, 0.16);
  --text:        #0f1b33;
  --muted:       #55617a;
  --muted-2:     #8893a8;
  --accent:      #2563eb;
  --accent-2:    #1d4ed8;
  --shadow:      0 18px 45px -22px rgba(20, 40, 90, 0.28);
  --header-bg:   rgba(255,255,255,.80);
  --inset:       rgba(20,40,90,.035);
  --inset-2:     rgba(20,40,90,.06);
  --alt-tint:    rgba(37,99,235,.05);
}
[data-theme="light"] body {
  background:
    radial-gradient(1100px 560px at 85% -10%, rgba(37,99,235,.08), transparent 60%),
    radial-gradient(820px 460px at 0% 6%, rgba(124,92,255,.06), transparent 55%),
    var(--bg);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(31,127,230,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 10%, rgba(124,92,255,.12), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; box-shadow: 0 10px 30px -8px rgba(31,127,230,.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(31,127,230,.7); }
.btn-ghost { background: rgba(255,255,255,.05); border-color: var(--border-2); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--border-2); color: var(--text); }
.btn-outline:hover { background: rgba(58,160,255,.12); border-color: var(--accent); }
.btn-light { background: #fff; color: #0a1228; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(0,0,0,.4); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
/* Theme toggle */
.theme-toggle {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  background: var(--inset); border: 1px solid var(--border); color: var(--text);
  cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--inset-2); border-color: var(--border-2); color: var(--accent); }
.theme-toggle .icon { width: 19px; height: 19px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--purple)); color: #fff;
  box-shadow: 0 8px 20px -6px rgba(58,160,255,.6);
}
.brand-text { font-size: 19px; letter-spacing: -.02em; }
.brand-text small { color: var(--accent); font-size: 19px; margin-left: 3px; }
.brand-logo { height: 34px; width: auto; display: block; }
.site-footer .brand-logo { height: 32px; }

.main-nav { display: flex; gap: 6px; }
.nav-link {
  padding: 8px 14px; border-radius: 9px; font-size: 15px; font-weight: 600; color: var(--muted);
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link.is-active { color: var(--accent); background: rgba(58,160,255,.1); }

/* ---------- Services dropdown ---------- */
.nav-item.has-dropdown { position: relative; }
.nav-item.has-dropdown > .nav-link { display: inline-flex; align-items: center; gap: 4px; }
.nav-item.has-dropdown .caret { transition: transform .2s ease; opacity: .8; }
.nav-item.has-dropdown:hover .caret,
.nav-item.has-dropdown:focus-within .caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 380px; padding: 10px; border-radius: 14px;
  background: var(--surface-2); border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
/* Bridge the gap so the menu doesn't close when moving the cursor down */
.dropdown-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-link { display: flex; align-items: flex-start; gap: 11px; padding: 11px; border-radius: 10px; transition: background .15s ease; }
.dropdown-link:hover { background: rgba(255,255,255,.05); }
.dropdown-icon {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; color: var(--c);
  background: color-mix(in srgb, var(--c) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 32%, transparent);
}
.dropdown-icon .icon { width: 20px; height: 20px; }
.dropdown-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dropdown-text strong { font-size: 14px; color: var(--text); }
.dropdown-text small { font-size: 12px; color: var(--muted); line-height: 1.35; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 72px 0 56px; overflow-x: clip; }
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px; pointer-events: none;
  background: radial-gradient(circle, rgba(58,160,255,.18), transparent 65%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); background: rgba(58,160,255,.1); border: 1px solid rgba(58,160,255,.25);
  padding: 7px 14px; border-radius: 999px;
}
.hero h1 { font-size: clamp(36px, 5vw, 58px); margin: 22px 0 18px; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lead { color: var(--muted); font-size: 17px; max-width: 480px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 28px; }

.social-proof { display: flex; align-items: center; gap: 14px; }
.social-proof p { color: var(--muted); font-size: 14px; }
.social-proof strong { color: var(--text); }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--bg); overflow: hidden; flex-shrink: 0;
  background: var(--surface-2);
}
.avatars span img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatars span:first-child { margin-left: 0; }

/* ---------- Hero dashboard ---------- */
.hero-dashboard {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2); border-radius: 20px; padding: 22px;
  box-shadow: var(--shadow); position: relative;
}
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dash-head h3 { font-size: 15px; }
.dash-range { font-size: 12px; color: var(--muted); background: rgba(255,255,255,.04); padding: 5px 10px; border-radius: 8px; border: 1px solid var(--border); }
.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 16px; }
.dash-stat { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 11px; padding: 11px; display: flex; flex-direction: column; gap: 4px; }
.dash-label { font-size: 11px; color: var(--muted); }
.dash-value { font-size: 19px; font-weight: 800; }
.pill { font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 6px; width: fit-content; }
.pill-up { color: #44e3a8; background: rgba(68,227,168,.12); }
.dash-charts { display: grid; grid-template-columns: 1.6fr 1fr; gap: 12px; }
.dash-line, .dash-donut { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 11px; padding: 12px; }
.dash-line-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.dash-line-head strong { font-size: 16px; color: var(--text); display: flex; gap: 6px; align-items: center; }
.dash-line-head em { font-size: 9px; font-style: normal; }
.line-chart { width: 100%; height: 100px; }
.chart-months { display: flex; justify-content: space-between; font-size: 9px; color: var(--muted-2); margin-top: 4px; }
.dash-donut { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.donut {
  width: 92px; height: 92px; border-radius: 50%; margin: 4px 0;
  background: conic-gradient(var(--accent) 0 57%, var(--purple) 57% 80%, var(--green) 80% 92%, var(--gold) 92% 100%);
  -webkit-mask: radial-gradient(circle, transparent 42%, #000 43%);
          mask: radial-gradient(circle, transparent 42%, #000 43%);
}
.donut-legend { list-style: none; font-size: 10px; color: var(--muted); width: 100%; display: grid; gap: 4px; }
.donut-legend li { display: flex; align-items: center; gap: 6px; }
.donut-legend i { width: 8px; height: 8px; border-radius: 2px; }

/* ---------- Stats bar ---------- */
.stats-bar { padding: 8px 0 40px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 16px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2); border-radius: var(--radius); padding: 26px;
}
.stat { display: flex; align-items: center; gap: 14px; padding: 4px 18px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat-icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  flex-shrink: 0; color: var(--c);
  background: color-mix(in srgb, var(--c) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 32%, transparent);
}
.stat-icon .icon { width: 24px; height: 24px; }
.stat-body { display: flex; flex-direction: column; line-height: 1.2; }
.stat-num { display: block; font-size: 26px; font-weight: 800; color: var(--text); }
.stat-text { font-size: 13px; color: var(--muted); }
.trusted { display: flex; align-items: center; gap: 28px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }
.trusted > span { font-size: 13px; color: var(--muted-2); }
.logo-row { list-style: none; display: flex; gap: 36px; flex-wrap: wrap; }
.logo-row li { font-size: 18px; font-weight: 700; color: var(--muted-2); opacity: .7; transition: .2s; }
.logo-row li:hover { opacity: 1; color: var(--text); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: linear-gradient(180deg, transparent, var(--alt-tint), transparent); }
.section-tag {
  text-align: center; text-transform: uppercase; letter-spacing: .12em;
  font-size: 12px; font-weight: 700; color: var(--accent); margin-bottom: 12px;
}
.section-title { text-align: center; font-size: clamp(26px, 3.5vw, 40px); max-width: 720px; margin: 0 auto; }
.section-sub { text-align: center; color: var(--muted); margin: 14px auto 0; max-width: 540px; }

/* ---------- Service cards (icon top, text below) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.service-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c, var(--accent)) 50%, var(--border-2)); box-shadow: var(--shadow); }
.service-icon {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px;
  flex-shrink: 0; color: var(--c, var(--accent));
  background: color-mix(in srgb, var(--c, var(--accent)) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, var(--accent)) 35%, transparent);
}
.service-icon .icon { width: 27px; height: 27px; }
.service-body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
.learn-more { margin-top: auto; color: var(--accent); font-weight: 700; font-size: 14px; }
.learn-more:hover { letter-spacing: .02em; }

/* ---------- Results ---------- */
.results-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 22px; margin-top: 48px; }
.result-table-card, .tool-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius);
}
.result-table-card { padding: 24px; }
.result-table-card h4 { font-size: 16px; margin-bottom: 16px; }
.result-table-card small { display: block; color: var(--muted); font-weight: 500; font-size: 13px; margin-top: 4px; }
.result-table { width: 100%; border-collapse: collapse; }
.result-table th { text-align: left; font-size: 12px; color: var(--muted); padding: 10px 8px; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: .04em; }
.result-table td { padding: 12px 8px; font-size: 15px; border-bottom: 1px solid var(--border); }
.result-table td.up { color: #44e3a8; font-weight: 700; }
.result-table tr:last-child td { border-bottom: 0; }

.result-tools { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.result-tools .tool-card:first-child { grid-column: 1 / -1; }
.tool-card { padding: 16px; }
.tool-name { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.tool-name i { width: 12px; height: 12px; border-radius: 4px; }
.mini-chart { width: 100%; height: 56px; }
.tool-stats { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-top: 8px; font-weight: 700; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; margin-top: 52px; position: relative; }
.process-step { text-align: center; padding: 10px; }
.process-icon {
  display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
  margin: 0 auto 14px; color: var(--c);
  background: color-mix(in srgb, var(--c) 16%, transparent);
  border: 2px solid color-mix(in srgb, var(--c) 45%, transparent);
}
.process-icon .icon { width: 26px; height: 26px; }
.process-num { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
.process-step h4 { font-size: 15px; margin: 6px 0 8px; }
.process-step p { font-size: 13px; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; align-items: stretch; }
.price-card {
  position: relative; background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column;
}
.price-card.is-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(31,127,230,.18), var(--surface));
  box-shadow: var(--glow); transform: translateY(-10px);
}
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px;
}
.price-card h3 { font-size: 21px; }
.price-desc { color: var(--muted); font-size: 14px; margin: 6px 0 18px; }
.price { font-size: 46px; font-weight: 800; margin-bottom: 22px; }
.price span { font-size: 24px; vertical-align: super; color: var(--muted); }
.price em { font-size: 15px; font-style: normal; font-weight: 500; color: var(--muted); }
.price-features { list-style: none; display: grid; gap: 13px; margin-bottom: 26px; flex: 1; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.check { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(0,194,168,.15); color: var(--green); font-size: 12px; flex-shrink: 0; }
.price-form { margin: 0; }
.pricing-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 26px; }
.pricing-note strong { color: var(--text); }

/* Message / 404 screen also lives on the public stylesheet */
.message-screen { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.message-card {
  width: 100%; max-width: 460px; text-align: center;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2); border-radius: 20px; padding: 44px 38px;
  box-shadow: var(--shadow);
}
.message-card h1 { font-size: 28px; margin-bottom: 12px; }
.message-card p { color: var(--muted); margin-bottom: 28px; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.testimonial-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { color: var(--text); font-size: 15px; margin-bottom: 20px; }
.author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg, var(--accent), var(--purple)); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-meta { display: flex; flex-direction: column; }
.author-meta strong { font-size: 15px; }
.author-meta small { color: var(--muted); font-size: 13px; }

/* ---------- CTA band ---------- */
.cta-band { padding: 0 0 80px; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--accent-2), var(--purple));
  border-radius: 22px; padding: 44px 48px;
  box-shadow: 0 30px 60px -20px rgba(31,127,230,.6);
}
.cta-copy { display: flex; align-items: center; gap: 20px; }
.cta-rocket { font-size: 44px; }
.cta-copy h2 { font-size: clamp(22px, 2.6vw, 30px); color: #fff; }
.cta-copy p { color: rgba(255,255,255,.85); margin-top: 6px; }
.cta-action { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cta-action small { color: rgba(255,255,255,.8); font-size: 13px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 32px; padding-bottom: 44px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin: 16px 0; max-width: 280px; }
.socials { display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--muted); transition: .2s; }
.socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer-col h4 { font-size: 15px; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; transition: .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-newsletter p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; min-width: 0; padding: 11px 14px; border-radius: 10px; font-family: inherit; font-size: 14px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--text);
}
.newsletter-form input::placeholder { color: var(--muted-2); }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-msg { font-size: 13px; margin-top: 10px; min-height: 1em; }
.newsletter-msg.is-ok { color: #44e3a8; }
.newsletter-msg.is-err { color: #ff9c9c; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--muted-2); font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--muted); font-size: 13px; }
.footer-legal a:hover { color: var(--accent); }

/* ---------- About section ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.about-title { font-size: clamp(26px, 3.2vw, 36px); margin: 10px 0 18px; }
.about-copy > p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.about-points { list-style: none; display: grid; gap: 12px; margin: 22px 0 28px; }
.about-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); }
.about-points .check { margin-top: 1px; }
.about-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
}
.about-icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; color: var(--c);
  background: color-mix(in srgb, var(--c) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 32%, transparent); margin-bottom: 14px;
}
.about-icon .icon { width: 24px; height: 24px; }
.about-num { display: block; font-size: 30px; font-weight: 800; }
.about-label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.about-card p { color: var(--muted); font-size: 13px; }

/* ---------- Page hero (blog list / interior pages) ---------- */
/* ---------- Service page ---------- */
.service-hero-icon {
  display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 16px; color: var(--c);
  background: color-mix(in srgb, var(--c) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 32%, transparent); margin-bottom: 18px;
}
.service-hero-icon .icon { width: 32px; height: 32px; }
.service-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.service-content h3 { font-size: 22px; margin: 28px 0 14px; }
.service-content ul { list-style: none; display: grid; gap: 10px; margin: 0 0 20px; }
.service-content ul li { position: relative; padding-left: 28px; color: #d6deef; }
.service-content ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700;
}
.service-foot {
  margin-top: 40px; padding: 32px; border-radius: var(--radius); text-align: center;
  background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--border);
}
.service-foot h3 { font-size: 22px; margin-bottom: 8px; }
.service-foot p { color: var(--muted); margin-bottom: 20px; }
.service-foot .about-cta { justify-content: center; }

.page-hero { position: relative; padding: 64px 0 28px; text-align: center; overflow-x: clip; }
.page-title { font-size: clamp(30px, 4vw, 46px); margin-top: 10px; }
.page-sub { color: var(--muted); font-size: 17px; max-width: 620px; margin: 14px auto 0; }

/* ---------- Service detail page sections ---------- */
.service-page-hero { padding-bottom: 8px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; font-size: 13px; color: var(--muted-2); margin-bottom: 20px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs strong { color: var(--text); font-weight: 600; }
.crumbs span { opacity: .5; }

.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 16px 30px; justify-content: center; margin: 24px 0 6px; }
.hero-points li { display: flex; align-items: center; gap: 10px; }
.hp-check {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; color: var(--c);
  background: color-mix(in srgb, var(--c) 16%, transparent); border: 1px solid color-mix(in srgb, var(--c) 32%, transparent);
}
.hp-check .icon { width: 18px; height: 18px; }
.hp-text { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.hp-text strong { font-size: 14px; color: var(--text); }
.hp-text small { font-size: 12px; color: var(--muted); }

/* Why-it-matters feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-top: 44px; }
.feature-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c) 45%, var(--border-2)); }
.feature-icon {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; margin-bottom: 14px; color: var(--c);
  background: color-mix(in srgb, var(--c) 16%, transparent); border: 1px solid color-mix(in srgb, var(--c) 32%, transparent);
}
.feature-icon .icon { width: 24px; height: 24px; }
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }
/* Horizontal feature cards (icon left, text right) */
.feature-grid.rows { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.feature-card.row { display: flex; align-items: flex-start; gap: 15px; }
.feature-card.row .feature-icon { margin-bottom: 0; flex-shrink: 0; }
.feature-card.row .feature-body { min-width: 0; }

/* Process flow (numbered, connected) */
.proc-flow { list-style: none; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 48px; }
.proc-step { text-align: center; position: relative; padding-top: 6px; }
.proc-num {
  display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%;
  font-weight: 800; font-size: 18px; color: #fff; position: relative; z-index: 1;
  background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 55%, #7c5cff));
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--c) 12%, transparent);
}
.proc-step:not(:last-child)::after {
  content: ""; position: absolute; top: 29px; left: calc(50% + 30px); right: calc(-50% + 30px); height: 2px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--c) 50%, transparent), color-mix(in srgb, var(--c) 16%, transparent));
}
.proc-step h4 { font-size: 15px; margin-bottom: 6px; }
.proc-step p { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* Guide / what you need to know */
.guide-panel {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2); border-radius: 24px; padding: 44px 40px;
}
.guide-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px 20px; margin-top: 40px; }
.guide-card { position: relative; }
.guide-num { font-size: 30px; font-weight: 800; color: var(--c); opacity: .55; display: block; margin-bottom: 8px; }
.guide-card h4 { font-size: 15px; margin-bottom: 6px; }
.guide-card p { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* Results that speak */
.results-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.result-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.result-pill {
  align-self: flex-start; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; color: var(--c);
  background: color-mix(in srgb, var(--c) 14%, transparent); border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
}
.result-metric { font-size: 14px; color: var(--muted); }
.result-jump { display: flex; align-items: center; gap: 12px; }
.rj-before { font-size: 20px; font-weight: 700; color: var(--muted); }
.rj-after { font-size: 28px; font-weight: 800; color: var(--text); }
.rj-arrow { color: var(--c); display: grid; place-items: center; }
.rj-arrow .icon { width: 20px; height: 20px; }
.result-time { font-size: 12px; color: var(--muted-2); }

/* ============================================================
   Service detail page (design layout)
   ============================================================ */
.svc-hero { position: relative; padding: 56px 0 40px; overflow-x: clip; }
.svc-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.svc-hero-title { font-size: clamp(32px, 4.4vw, 52px); margin: 18px 0 16px; }
.svc-hero-title .accent {
  display: block;
  background: linear-gradient(120deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.svc-hero-sub { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.svc-hero-lead { color: var(--muted); font-size: 15.5px; margin-bottom: 12px; max-width: 560px; }

.hero-features-row { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 18px; margin: 22px 0 26px; max-width: 540px; }
.hero-features-row li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text); }
.hf-ico {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; color: var(--c);
  background: color-mix(in srgb, var(--c) 16%, transparent); border: 1px solid color-mix(in srgb, var(--c) 32%, transparent);
}
.hf-ico .icon { width: 18px; height: 18px; }
.svc-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero illustration */
.svc-hero-visual { position: relative; display: grid; gap: 18px; padding: 10px; }
.svc-hero-mark {
  position: absolute; right: 6px; top: -22px; z-index: 0; opacity: .12; color: var(--c);
}
.svc-hero-mark .icon { width: 120px; height: 120px; }
.viz-card {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2); border-radius: 18px; box-shadow: var(--shadow); padding: 20px 22px;
}
.viz-dots { display: flex; gap: 7px; margin-bottom: 14px; }
.viz-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--border-2); }
.viz-dots i:nth-child(1) { background: #ff5f57; }
.viz-dots i:nth-child(2) { background: #febc2e; }
.viz-dots i:nth-child(3) { background: #28c840; }
.viz-head { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.viz-head strong { font-size: 16px; }
.up { color: #16b981; }
.viz-chart { width: 100%; height: 104px; display: block; overflow: visible; }
.viz-da { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 14px; width: max-content; justify-self: end; }
.viz-da-label { grid-column: 1 / -1; font-size: 13px; color: var(--muted); }
.viz-gauge {
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; text-align: center; line-height: 1;
  background: conic-gradient(var(--accent) 0 62%, color-mix(in srgb, var(--accent) 14%, transparent) 62% 100%);
}
.viz-gauge::before { content: ""; position: absolute; width: 56px; height: 56px; border-radius: 50%; background: var(--surface); }
.viz-gauge span, .viz-gauge strong { position: relative; }
.viz-gauge span { display: block; font-size: 11px; color: var(--muted); }
.viz-gauge strong { font-size: 22px; }
.viz-da-up { font-size: 13px; font-weight: 700; }

/* Why + Strategy two-column */
.why-strategy.two { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.block-title { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 16px; }
.block-text { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.block-text strong { color: var(--text); }
.block-text.muted { font-size: 14px; }
.check-list { list-style: none; display: grid; gap: 12px; margin: 4px 0 18px; }
.check-list li { position: relative; padding-left: 30px; color: var(--text); font-size: 15px; }
.check-list .ck {
  position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 800; color: #fff; background: var(--green);
}
.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; margin-top: 8px; }
.strategy-item { display: flex; gap: 12px; }
.strategy-ico {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0; color: var(--c);
  background: color-mix(in srgb, var(--c) 16%, transparent); border: 1px solid color-mix(in srgb, var(--c) 32%, transparent);
}
.strategy-ico .icon { width: 20px; height: 20px; }
.strategy-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.strategy-item p { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* What makes different — force 6 across on wide screens */
.feature-grid.six { grid-template-columns: repeat(6, 1fr); }

/* Industries row */
.industries-row { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 44px; }
.industry { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 104px; text-align: center; font-size: 13px; font-weight: 600; color: var(--text); }
.industry-ico {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; color: var(--c);
  background: color-mix(in srgb, var(--c) 14%, transparent); border: 1px solid color-mix(in srgb, var(--c) 28%, transparent);
}
.industry-ico .icon { width: 26px; height: 26px; }

/* Why-choose prose */
.narrow-prose { max-width: 760px; text-align: center; }
.prose-p { color: var(--muted); font-size: 16px; margin-top: 16px; }

/* CTA band with stats (stays dark in both themes — matches design) */
.svc-cta { padding: 0 0 70px; }
.svc-cta-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center;
  background: linear-gradient(135deg, #14264d, #0b1733);
  border: 1px solid rgba(120,160,255,.18); border-radius: 24px; padding: 44px 48px;
  box-shadow: var(--shadow);
}
.svc-cta-copy h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.svc-cta-copy p { color: #c2cce6; font-size: 15px; margin-bottom: 22px; }
.svc-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-cta-ghost { background: transparent; border: 1px solid rgba(255,255,255,.35); color: #fff; }
.btn-cta-ghost:hover { background: rgba(255,255,255,.1); }
.svc-cta-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-stat { text-align: center; padding: 18px 10px; border-radius: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.svc-stat strong { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.svc-stat span { font-size: 12.5px; color: #aeb9d6; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 44px; }
.faq-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
}
.faq-q { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.faq-badge {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  font-size: 14px; font-weight: 800; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
}
.faq-a { color: var(--muted); font-size: 14.5px; line-height: 1.6; padding-left: 38px; }

/* ---- Section-driven blocks (eyebrow, accent, features-5, flow, split, results, blue CTA) ---- */
.svc-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c); margin-bottom: 14px;
}
.tx-accent {
  background: linear-gradient(120deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.feature-grid.five { grid-template-columns: repeat(5, 1fr); }

/* Strategy flow with arrow connectors */
.flow-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 48px; }
.flow-card {
  position: relative; text-align: center;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 16px;
  transition: transform .2s ease, border-color .2s ease;
}
.flow-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c) 45%, var(--border-2)); }
.flow-card:not(:last-child)::after {
  content: ""; position: absolute; top: 46px; right: -11px; width: 14px; height: 14px; z-index: 2;
  border-top: 2px solid color-mix(in srgb, var(--c) 60%, transparent);
  border-right: 2px solid color-mix(in srgb, var(--c) 60%, transparent);
  transform: rotate(45deg);
}
.flow-ico {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 14px; color: var(--c);
  background: color-mix(in srgb, var(--c) 16%, transparent); border: 1px solid color-mix(in srgb, var(--c) 32%, transparent);
}
.flow-ico .icon { width: 26px; height: 26px; }
.flow-card h3 { font-size: 15px; margin-bottom: 8px; }
.flow-card p { color: var(--muted); font-size: 12.5px; line-height: 1.5; }

/* Split: bullets + industry grid */
.split-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.choose-row { display: flex; gap: 24px; align-items: center; }
.choose-row .check-list { flex: 1; min-width: 0; }
.split-image { flex: 1; min-width: 0; }
.split-image img { width: 100%; height: 100%; max-height: 320px; object-fit: cover; border-radius: 18px; border: 1px solid var(--border); }
.industry-grid { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 8px; }
.industry-tile {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  padding: 18px 8px; border-radius: 14px; font-size: 12.5px; font-weight: 600; color: var(--text);
  background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--border);
  transition: transform .2s ease, border-color .2s ease;
}
.industry-tile:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--c) 45%, var(--border-2)); }
.industry-tile-ico {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color: var(--c);
  background: color-mix(in srgb, var(--c) 14%, transparent); border: 1px solid color-mix(in srgb, var(--c) 28%, transparent);
}
.industry-tile-ico .icon { width: 22px; height: 22px; }

/* Results band (dark, stats + testimonial) */
.results-band {
  background: linear-gradient(135deg, #14264d, #0b1733);
  border: 1px solid rgba(120,160,255,.18); border-radius: 24px; padding: 40px 44px; box-shadow: var(--shadow);
}
.results-band-top { text-align: center; margin-bottom: 30px; }
.results-band-top h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); }
.results-band-top p { color: #aeb9d6; font-size: 15px; margin-top: 8px; }
.results-band-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: center; }
.results-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rb-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 18px; }
.rb-ico {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; margin-bottom: 12px; color: var(--c);
  background: color-mix(in srgb, var(--c) 22%, transparent); border: 1px solid color-mix(in srgb, var(--c) 38%, transparent);
}
.rb-ico .icon { width: 20px; height: 20px; }
.rb-stat strong { display: block; font-size: 26px; font-weight: 800; color: #fff; }
.rb-label { font-size: 12.5px; color: #aeb9d6; }
.rb-quote { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 26px; }
.rb-stars { color: #ffb13c; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.rb-quote blockquote { color: #e7ecf7; font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.rb-quote figcaption strong { display: block; color: #fff; font-size: 14px; }
.rb-quote figcaption span { color: #aeb9d6; font-size: 12.5px; }

/* Blue CTA variant + highlights */
.svc-cta-inner.blue { background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-color: rgba(255,255,255,.25); }
.svc-cta-inner.blue .svc-cta-copy p { color: #e7eeff; }
.svc-cta-inner.blue .svc-cta-copy h2 span { opacity: .85; }
.svc-cta-highlights { list-style: none; display: grid; gap: 12px; }
.svc-cta-highlights li { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 15px; }
.svc-cta-highlights .ck { position: static; width: 22px; height: 22px; background: rgba(255,255,255,.2); }

/* Hero map-pack visual */
.svc-hero-mark.map .icon { width: 110px; height: 110px; }
.viz-map { position: relative; z-index: 1; }
.viz-map-canvas {
  position: relative; height: 280px; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--border-2); box-shadow: var(--shadow);
  background:
    linear-gradient(0deg, rgba(47,107,255,.06), rgba(47,107,255,.06)),
    repeating-linear-gradient(90deg, transparent 0 38px, color-mix(in srgb, var(--accent) 12%, transparent) 38px 40px),
    repeating-linear-gradient(0deg, transparent 0 38px, color-mix(in srgb, var(--accent) 12%, transparent) 38px 40px),
    var(--surface-2);
}
.map-pin { position: absolute; color: color-mix(in srgb, var(--accent) 70%, var(--muted)); }
.map-pin .icon { width: 30px; height: 30px; }
.map-pin.p1 { top: 28%; left: 22%; }
.map-pin.p2 { top: 58%; left: 64%; }
.map-pin.p3.is-main { top: 40%; left: 46%; color: var(--accent); filter: drop-shadow(0 6px 14px rgba(47,107,255,.5)); }
.map-pin.is-main .icon { width: 46px; height: 46px; }
.viz-badge {
  position: absolute; left: -14px; top: 26px; z-index: 2; width: max-content; min-width: 168px;
  padding: 16px 20px;
}
.viz-badge-num { display: block; font-size: 26px; margin: 4px 0 2px; }
.viz-badge-sub { font-size: 12.5px; color: var(--muted); }

/* Numbered flow badge */
.flow-ico { position: relative; }
.flow-num {
  position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 11px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 55%, #7c5cff));
}

/* Compact card grid (e.g. technical SEO services, 5-up) */
.card-grid.compact .service-card { padding: 20px; gap: 12px; }
.card-grid.compact .service-icon { width: 44px; height: 44px; border-radius: 11px; }
.card-grid.compact .service-icon .icon { width: 22px; height: 22px; }
.card-grid.compact .service-card h3 { font-size: 15px; margin-bottom: 6px; }
.card-grid.compact .service-card p { font-size: 12.5px; line-height: 1.5; margin-bottom: 0; }

/* Benefits band (dark, icon + label row) */
.benefits-band { background: linear-gradient(135deg, #14264d, #0b1733); border: 1px solid rgba(120,160,255,.18); border-radius: 22px; overflow: hidden; }
.benefits-head { padding: 18px 28px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.08); }
.benefits-head h2 { color: #fff; font-size: 18px; }
.benefits-body { padding: 30px 28px; }
.benefits-band.with-quote .benefits-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: center; }
.benefits-row { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 18px; }
.benefits-band.with-quote .benefits-row { display: flex; flex-wrap: wrap; gap: 12px; }
.benefits-band.with-quote .benefits-row li { flex: 1 1 110px; }
.benefits-row li { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; color: #dbe3f5; font-size: 13px; font-weight: 600; }
.benefit-val { font-size: 24px; font-weight: 800; color: #fff; line-height: 1; }
.benefit-label { color: #aeb9d6; font-weight: 500; line-height: 1.3; }
.benefits-row.arrows li:not(:last-child)::after {
  content: ""; position: absolute; top: 24px; right: -12px; width: 12px; height: 12px;
  border-top: 2px solid rgba(255,255,255,.3); border-right: 2px solid rgba(255,255,255,.3); transform: rotate(45deg);
}
.benefits-quote { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 24px; }
.benefits-quote .rb-stars { color: #ffb13c; font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.benefits-quote blockquote { color: #e7ecf7; font-size: 15px; line-height: 1.6; margin-bottom: 14px; }
.benefits-quote figcaption strong { display: block; color: #fff; font-size: 14px; }
.benefits-quote figcaption span { color: #aeb9d6; font-size: 12.5px; }
.split-tms { display: grid; gap: 16px; }
.benefit-ico {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; color: #fff;
  background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 50%, #7c5cff));
}
.benefit-ico .icon { width: 24px; height: 24px; }

/* Tools row */
.tools-row { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 40px; }
.tool-pill {
  padding: 14px 26px; border-radius: 12px; font-weight: 700; font-size: 15px; color: var(--text);
  background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--border);
}

/* Testimonials grid */
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.tm-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
}
.tm-card .rb-stars { color: #ffb13c; font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.tm-card blockquote { color: var(--text); font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
.tm-card figcaption strong { display: block; font-size: 14px; }
.tm-card figcaption span { color: var(--muted); font-size: 12.5px; }

/* Hero visual — content (blog post mock + metric badges) */
.svc-hero-mark.target .icon { width: 120px; height: 120px; }
.viz-blog { position: relative; z-index: 1; padding: 22px; }
.viz-blog-label { font-size: 11px; font-weight: 800; letter-spacing: .12em; color: var(--accent); }
.viz-blog-img {
  margin: 14px 0; height: 120px; border-radius: 12px; display: grid; place-items: center; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent); border: 1px solid var(--border);
}
.viz-blog-img .icon { width: 44px; height: 44px; opacity: .7; }
.viz-blog-lines { display: grid; gap: 9px; }
.viz-blog-lines i { height: 9px; border-radius: 6px; background: var(--inset-2); }
.viz-blog-lines i.short { width: 55%; }
.viz-mini {
  position: absolute; z-index: 2; width: max-content; min-width: 150px; padding: 14px 18px;
}
.viz-mini-label { font-size: 12px; color: var(--muted); }
.viz-mini strong { display: block; font-size: 22px; margin: 3px 0 2px; }
.viz-mini-sub { font-size: 11.5px; color: var(--muted-2); }
.viz-mini-1 { top: -6px; right: -10px; }
.viz-mini-2 { bottom: 4px; right: 6px; }

/* Hero visual — site health (gauge + checklist) */
.viz-health { position: relative; z-index: 1; padding: 24px; }
.viz-health-label { font-size: 12px; font-weight: 800; letter-spacing: .1em; color: var(--muted-2); }
.viz-gauge-lg { position: relative; width: 120px; height: 120px; margin: 16px auto 18px; display: grid; place-items: center; }
.viz-gauge-lg .vgl-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(#16b981 0 95%, color-mix(in srgb, #16b981 16%, transparent) 95% 100%);
  -webkit-mask: radial-gradient(circle, transparent 60%, #000 61%);
          mask: radial-gradient(circle, transparent 60%, #000 61%);
}
.viz-gauge-lg .vgl-num { text-align: center; line-height: 1; }
.viz-gauge-lg .vgl-num strong { font-size: 34px; color: var(--text); }
.viz-gauge-lg .vgl-num small { font-size: 13px; color: var(--muted); }
.viz-check { list-style: none; display: grid; gap: 10px; }
.viz-check li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); font-weight: 600; }
.viz-check li span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; color: #16b981; background: color-mix(in srgb, #16b981 16%, transparent); }
.viz-check li span .icon { width: 14px; height: 14px; }
.viz-pagespeed { bottom: 10px; right: -10px; }

/* Hero visual — consulting roadmap card */
.viz-roadmap { padding: 22px; }
.viz-roadmap .viz-check { margin-top: 14px; }

/* Hero visual — AI search results panel (stays dark in both themes) */
.viz-ai {
  position: relative; z-index: 1; display: grid; gap: 12px; padding: 22px;
  background: linear-gradient(160deg, #14264d, #0b1733);
  border: 1px solid rgba(120,160,255,.25); border-radius: 20px; box-shadow: var(--shadow);
}
.viz-ai-head { color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.viz-ai-head em { color: #8fb6ff; font-style: normal; }
.ai-result { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.ai-result.is-main { background: rgba(22,185,129,.14); border-color: rgba(22,185,129,.4); }
.ai-dot { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; background: rgba(255,255,255,.14); color: #aeb9d6; }
.ai-dot.ok { background: #16b981; color: #fff; }
.ai-dot .icon { width: 15px; height: 15px; }
.ai-result strong { display: block; color: #fff; font-size: 14px; }
.ai-result small { color: #aeb9d6; font-size: 12px; }
.ai-engines { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.ai-engines li { font-size: 12px; font-weight: 600; color: #dbe3f5; padding: 7px 12px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }

/* ---------- Blog grid ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow); }
.blog-thumb { display: block; aspect-ratio: 16 / 9; background: var(--surface); overflow: hidden; position: relative; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-thumb-video { display: block; width: 100%; height: 100%; position: relative; }
.blog-thumb-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-thumb-video .play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(8, 14, 30, .6); border: 2px solid rgba(255,255,255,.8); color: #fff;
  font-size: 18px; padding-left: 4px; backdrop-filter: blur(2px); transition: .2s;
}
.blog-card:hover .blog-thumb-video .play-badge { background: var(--accent); border-color: var(--accent); }
.blog-thumb-fallback {
  width: 100%; height: 100%; display: grid; place-items: center; color: var(--accent);
  background: radial-gradient(circle at 50% 40%, rgba(58,160,255,.18), transparent 70%);
}
.blog-thumb-fallback .icon { width: 42px; height: 42px; }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-date { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .05em; }
.blog-card h3 { font-size: 18px; line-height: 1.3; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card-body p { color: var(--muted); font-size: 14px; flex: 1; }
.blog-card .learn-more { margin-top: 4px; }
.blog-empty { text-align: center; padding: 60px 0; }
.blog-empty h3 { font-size: 22px; margin-bottom: 8px; }
.blog-empty p { color: var(--muted); }

/* ---------- Single post ---------- */
.post { padding: 48px 0 20px; }
.post-narrow { max-width: 760px; }
.post-back { color: var(--muted); font-size: 14px; display: inline-block; margin-bottom: 18px; }
.post-back:hover { color: var(--accent); }
.post-title { font-size: clamp(28px, 4vw, 44px); margin: 6px 0 18px; }
.post-meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.post-meta .author-avatar { width: 36px; height: 36px; }
.post-meta .dot { color: var(--muted-2); }
.post-hero-img { width: 100%; border-radius: var(--radius); margin: 6px 0 28px; max-height: 440px; object-fit: cover; }
.post-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; margin: 6px 0 28px; border-radius: var(--radius); overflow: hidden; background: #000; }
.post-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.post-content { font-size: 17px; line-height: 1.8; color: #d6deef; }
.post-content .post-lead { font-size: 19px; color: var(--text); font-weight: 500; margin-bottom: 22px; }
.post-content p { margin-bottom: 20px; }
.post-content h1, .post-content h2, .post-content h3, .post-content h4 { color: var(--text); margin: 32px 0 14px; line-height: 1.25; }
.post-content h2 { font-size: 28px; }
.post-content h3 { font-size: 22px; }
.post-content h4 { font-size: 18px; }
.post-content ul, .post-content ol { margin: 0 0 20px; padding-left: 24px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--accent); text-decoration: underline; }
.post-content a:hover { color: var(--cyan); }
.post-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 10px 0 22px; }
.post-content blockquote {
  margin: 0 0 22px; padding: 4px 0 4px 20px; border-left: 3px solid var(--accent);
  color: var(--muted); font-style: italic;
}
.post-content pre, .post-content pre.ql-syntax {
  background: #0b1224; border: 1px solid var(--border); border-radius: 10px;
  padding: 16px; overflow-x: auto; font-size: 14px; margin: 0 0 22px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; color: #d6deef; white-space: pre-wrap;
}
.post-content strong { color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lead { max-width: none; }
  .card-grid, .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.is-featured { transform: none; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proc-flow { grid-template-columns: repeat(3,1fr); gap: 28px 16px; }
  .proc-step::after { display: none; }
  .guide-grid { grid-template-columns: repeat(3,1fr); }
  .results-cards { grid-template-columns: 1fr; }
  .svc-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-strategy.two { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid.six { grid-template-columns: repeat(3,1fr); }
  .feature-grid.five { grid-template-columns: repeat(3,1fr); }
  .flow-grid { grid-template-columns: repeat(3,1fr) !important; }
  .flow-card:not(:last-child)::after { display: none; }
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .industry-grid { grid-template-columns: repeat(5,1fr); }
  .results-band-grid { grid-template-columns: 1fr; }
  .svc-cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .faq-grid { grid-template-columns: 1fr; }
  .card-grid.compact { grid-template-columns: repeat(3,1fr) !important; }
  .benefits-row { grid-template-columns: repeat(3,1fr); }
  .benefits-band.with-quote .benefits-body { grid-template-columns: 1fr; gap: 24px; }
  .tm-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 12px 24px;
    background: var(--bg-2); border-bottom: 1px solid var(--border);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-link { padding: 12px 0; }
  .nav-toggle { display: flex; }
  /* Dropdown shows inline (expanded) on mobile */
  .nav-item.has-dropdown { width: 100%; }
  .nav-item.has-dropdown > .nav-link { padding: 12px 0; }
  .nav-item.has-dropdown .caret { display: none; }
  .dropdown-menu,
  .nav-item.has-dropdown:hover .dropdown-menu,
  .nav-item.has-dropdown:focus-within .dropdown-menu {
    position: static; transform: none; width: 100%; opacity: 1; visibility: visible;
    pointer-events: auto; display: grid; grid-template-columns: 1fr; gap: 2px;
    background: transparent; border: 0; box-shadow: none; padding: 0 0 8px 8px;
    left: auto; right: auto;
  }
  .choose-row { flex-direction: column; align-items: stretch; }
  .split-image img { max-height: 260px; }
  .dropdown-link { padding: 9px 8px; }
  .dropdown-text small { display: none; }
  .nav-actions .btn { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 22px; }
  .stat { border-right: 0; }
  .dash-stats { grid-template-columns: repeat(2,1fr); }
  .dash-charts { grid-template-columns: 1fr; }
  .card-grid, .testimonial-grid, .process-grid, .result-tools { grid-template-columns: 1fr; }
  .proc-flow { grid-template-columns: repeat(2,1fr); }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .guide-panel { padding: 32px 22px; }
  .feature-grid.six { grid-template-columns: 1fr 1fr; }
  .feature-grid.five { grid-template-columns: 1fr 1fr; }
  .flow-grid { grid-template-columns: 1fr 1fr !important; }
  .card-grid.compact { grid-template-columns: 1fr 1fr !important; }
  .benefits-row { grid-template-columns: 1fr 1fr; }
  .benefits-row.arrows li:not(:last-child)::after { display: none; }
  .tools-row { gap: 10px; }
  .tool-pill { padding: 11px 18px; font-size: 14px; }
  .industry-grid { grid-template-columns: repeat(3,1fr); }
  .results-stats { grid-template-columns: 1fr 1fr; }
  .results-band { padding: 28px 20px; }
  .hero-features-row { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .svc-cta-inner { padding: 32px 24px; }
  .viz-da { justify-self: stretch; }
  .viz-mini, .viz-pagespeed { position: static; margin-top: 14px; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 32px 24px; }
  .cta-action { align-items: flex-start; }
  .section { padding: 60px 0; }
}
