/* ============================================================
   MIXED — Marketing Agency Site
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --line: #1f1f1f;
  --line-2: #2a2a2a;
  --text: #f5f5f5;
  --text-dim: #9a9a9a;
  --text-mute: #6a6a6a;
  --accent: #c5f542;
  --accent-2: #d8ff5a;
  --accent-soft: rgba(197, 245, 66, 0.12);
  --danger: #ff5a5a;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: keep-all;
}

h1, h2, h3, h4 {
  word-break: keep-all;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
em { font-style: normal; color: var(--accent); }

::selection { background: var(--accent); color: #000; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--easing), background .3s var(--easing);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 10, 10, 0.85);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #fff);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute; inset: 4px;
  border-radius: 4px;
  background: var(--bg);
}
.logo-text { font-size: 20px; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links > a,
.nav-trigger {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s;
  padding: 6px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-links > a:hover,
.nav-trigger:hover { color: var(--text); }

/* DROPDOWN */
.nav-item { position: relative; }
.nav-trigger .caret {
  width: 10px; height: 10px;
  transition: transform .25s var(--easing);
  margin-left: 1px;
  display: inline-block;
}
.nav-item.has-dropdown:hover .caret,
.nav-item.has-dropdown:focus-within .caret {
  transform: rotate(180deg);
  color: var(--accent);
}
.nav-item.has-dropdown:hover .nav-trigger,
.nav-item.has-dropdown:focus-within .nav-trigger { color: var(--text); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 380px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--easing),
              transform .25s var(--easing),
              visibility 0s linear .25s;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7);
  z-index: 200;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 14px;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.dd-item {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 12px;
  transition: background .2s;
  text-decoration: none;
  color: var(--text) !important;
  font-size: 14px !important;
}
.dd-item:hover { background: rgba(255,255,255,0.05); color: var(--text) !important; }
.dd-num {
  width: 26px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.dd-text {
  flex-grow: 1;
  min-width: 0;
}
.dd-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  color: var(--text);
}
.dd-text small {
  font-size: 11.5px;
  color: var(--text-mute);
  display: block;
  letter-spacing: -0.01em;
}
.dd-item.featured strong { color: var(--accent); }

.dd-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}
.dd-foot {
  padding: 10px 14px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-mute);
}
.dd-foot a {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 12px !important;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0a0a;
  transition: transform .2s var(--easing), background .2s;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--accent-2); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px var(--pad) 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.04) 50%, transparent 51%),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.03) 50%, transparent 51%),
    radial-gradient(1px 1px at 40% 60%, rgba(255,255,255,0.04) 50%, transparent 51%);
  background-size: 200px 200px, 250px 250px, 180px 180px;
  opacity: 0.6;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}
.orb-1 {
  width: 520px; height: 520px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  animation: float 14s ease-in-out infinite;
}
.orb-2 {
  width: 460px; height: 460px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, #6c5ce7 0%, transparent 70%);
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 32px;
  background: rgba(255,255,255,0.02);
}
.badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(44px, 9vw, 132px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.hero-title .line { display: block; }
.hero-title .line.small {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: -0.02em;
  margin-top: 16px;
  line-height: 1.3;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--text-dim);
  margin-bottom: 44px;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform .25s var(--easing), background .25s, color .25s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn span { transition: transform .25s var(--easing); }
.btn:hover span { transform: translateX(4px); }

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px var(--accent-soft);
}

.btn-ghost {
  border-color: var(--line-2);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.btn-mini {
  padding: 12px 20px;
  font-size: 14px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 999px;
}
.btn-mini:hover { background: var(--accent); color: #0a0a0a; }

.btn-big {
  padding: 20px 32px;
  font-size: 16px;
  width: 100%;
  justify-content: center;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 80px);
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero-meta div {
  text-align: center;
}
.hero-meta strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-meta span {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 4px;
  display: block;
}

.scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.5px solid var(--text-mute);
  border-radius: 12px;
  z-index: 1;
}
.scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--text-dim);
  border-radius: 2px;
  animation: scroll-down 1.8s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { opacity: 1; top: 8px; }
  60% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ============================================================
   HERO VISUAL — Dashboard mockup
   ============================================================ */
.hero-visual {
  position: relative;
  margin-top: 80px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  height: 420px;
  perspective: 1400px;
}
.dash-card {
  position: absolute;
  background: linear-gradient(180deg, #1a1a1a, #131313);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.02) inset;
  text-align: left;
}
.dash-main {
  width: 70%;
  height: 360px;
  left: 0;
  top: 0;
  padding: 22px 24px;
  transform: rotateX(8deg) rotateY(-6deg);
  transform-style: preserve-3d;
  transition: transform .6s var(--easing);
}
.hero-visual:hover .dash-main {
  transform: rotateX(4deg) rotateY(-3deg);
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.dash-dots {
  display: flex;
  gap: 7px;
}
.dash-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--line-2);
}
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }

.dash-tabs {
  display: flex;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.dash-tabs span {
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--text-mute);
  background: transparent;
}
.dash-tabs .active {
  background: rgba(197,245,66,0.12);
  color: var(--accent);
}

.dash-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.dash-kpi > div {
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.dash-kpi small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 6px;
  font-weight: 600;
}
.dash-kpi strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1;
}
.dash-kpi strong em { color: var(--accent); font-size: 0.6em; margin-left: 2px; }
.trend {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.trend.up { color: var(--accent); }
.trend.down { color: #ff5a5a; }

.dash-chart {
  position: relative;
  height: 130px;
  background:
    linear-gradient(rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-radius: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.dash-chart svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.dash-grid {
  position: absolute;
  inset: 8px;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 28px;
  border-radius: 8px;
}

.dash-mini {
  width: 30%;
  padding: 18px 20px;
  border-radius: 16px;
  transform: rotateX(8deg) rotateY(-6deg);
  transform-style: preserve-3d;
  transition: transform .6s var(--easing);
}
.dash-mini-1 {
  right: 0;
  top: 30px;
  height: 170px;
}
.dash-mini-2 {
  right: 4%;
  top: 220px;
  height: 140px;
  background: linear-gradient(180deg, var(--accent), #a8d930);
  color: #0a0a0a;
  border-color: var(--accent);
}
.hero-visual:hover .dash-mini { transform: rotateX(4deg) rotateY(-3deg); }

.dash-mini small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 8px;
  font-weight: 600;
}
.dash-mini strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1;
}
.dash-mini strong em { color: var(--accent); font-size: 0.55em; margin-left: 2px; }

.bar-row {
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  margin-bottom: 8px;
  overflow: hidden;
}
.bar-row span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  animation: barFill 1.4s var(--easing);
}
@keyframes barFill { from { width: 0 !important; } }

.dash-mini-2 small { color: rgba(0,0,0,0.5); }
.dash-mini-2 strong { color: #0a0a0a; }
.ai-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0a0a0a;
  animation: pulse 1.5s ease-in-out infinite;
}
.ai-num {
  font-size: 36px !important;
  margin-bottom: 6px !important;
}
.ai-sub {
  font-size: 11px;
  color: rgba(0,0,0,0.55);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .hero-visual {
    height: auto;
    margin-top: 60px;
  }
  .dash-main, .dash-mini {
    position: static;
    width: 100%;
    transform: none !important;
    margin-bottom: 16px;
  }
  .dash-mini { height: auto; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 28px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.marquee-track span {
  color: var(--text);
}
.marquee-track .dot-sep {
  color: var(--accent);
  font-size: 0.6em;
  display: flex;
  align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS — common
   ============================================================ */
.section {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 72px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-head p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
}

.service-card {
  position: relative;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--easing), border-color .35s, background .35s, box-shadow .35s;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 380px;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  background: var(--bg-3);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.6);
}
.service-card.accent {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(197,245,66,0.06), transparent 60%),
    var(--bg-2);
  border-color: rgba(197,245,66,0.18);
}
.service-card.accent:hover {
  border-color: rgba(197,245,66,0.35);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 28px;
  transition: transform .35s var(--easing), background .35s;
}
.card-icon svg {
  width: 28px;
  height: 28px;
}
.service-card:hover .card-icon {
  transform: rotate(-6deg) scale(1.05);
  background: rgba(197,245,66,0.1);
}
.service-card.accent .card-icon {
  background: rgba(197,245,66,0.08);
  border-color: rgba(197,245,66,0.2);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.card-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
.card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(197, 245, 66, 0.1);
  color: var(--accent);
}

a.service-card { color: inherit; text-decoration: none; }
a.service-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.35;
  word-break: keep-all;
}
.card-arrow {
  display: inline-block;
  margin-left: 6px;
  font-size: 15px;
  color: var(--text-mute);
  transition: transform .3s var(--easing), color .3s;
  vertical-align: middle;
}
.service-card:hover .card-arrow {
  color: var(--accent);
  transform: translateX(4px);
}
.service-card > p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.65;
  flex-grow: 1;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.service-card ul li {
  font-size: 12.5px;
  color: var(--text-mute);
  padding-left: 14px;
  position: relative;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Card center alignment */
.service-card {
  text-align: center;
  align-items: center;
}
.card-icon {
  margin-left: auto;
  margin-right: auto;
}
.card-top {
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.service-card ul {
  align-items: center;
}
.service-card ul li {
  text-align: left;
}

/* CTA card — full-width banner */
.service-cta {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #0a0a0a;
  border-color: var(--accent);
  position: relative;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 28px 40px;
  min-height: auto;
}
.service-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.18) 1px, transparent 0);
  background-size: 14px 14px;
  opacity: 0.4;
  pointer-events: none;
}
.service-cta:hover {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  border-color: var(--accent-2);
}
.service-cta > * { position: relative; z-index: 1; }
.service-cta h3,
.service-cta > p { color: #0a0a0a; }
.service-cta h3 {
  font-size: 22px;
  margin: 0;
  flex-shrink: 0;
  line-height: 1.3;
}
.service-cta > p {
  margin: 0;
  flex-grow: 1;
  border-top: none;
  padding: 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.6;
}
.service-cta em { color: #0a0a0a; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.service-cta .btn-mini {
  background: #0a0a0a;
  color: var(--accent);
  margin: 0 !important;
  flex-shrink: 0;
  padding: 14px 22px;
}
.service-cta .btn-mini:hover {
  background: #fff;
  color: #0a0a0a;
}
.cta-arrow {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  margin: 0;
  flex-shrink: 0;
}
.cta-arrow svg { width: 28px; height: 28px; }

@media (max-width: 920px) {
  .service-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 18px;
  }
  .service-cta > p { max-width: none; }
}

/* ============================================================
   SHOWCASE
   ============================================================ */
.show-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 820px) {
  .show-grid { grid-template-columns: 1fr; }
}

.show-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--easing), border-color .35s, box-shadow .35s;
}
.show-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.show-visual {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, #181818, #101010);
  padding: 24px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.show-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent);
  background: rgba(197,245,66,0.1);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.show-body {
  padding: 24px 28px 28px;
}
.show-body h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.show-body p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}

/* SHOW 1 — Performance with chart */
.show-1 .show-meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: var(--text-mute);
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.show-1 .show-big {
  margin-bottom: 12px;
}
.show-big small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 4px;
}
.show-big strong {
  display: block;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.show-big strong em { color: var(--accent); font-size: 0.6em; margin-left: 2px; }
.show-graph {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  width: 100%;
}

/* SHOW 2 — Influencer orbits */
.show-2 .show-orbits {
  position: absolute;
  inset: 60px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-center {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(197,245,66,0.1);
}
.orbit-ring {
  position: absolute;
  border: 1px dashed var(--line-2);
  border-radius: 50%;
}
.orbit-ring.r1 { width: 110px; height: 110px; }
.orbit-ring.r2 { width: 170px; height: 170px; }
.orbit-ring.r3 { width: 230px; height: 230px; }

.orbit-node {
  position: absolute;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 700;
}
.orbit-node.n1 { top: 50%; left: calc(50% - 55px); transform: translateY(-50%); }
.orbit-node.n2 { top: 50%; right: calc(50% - 55px); transform: translateY(-50%); }
.orbit-node.n3 { top: calc(50% - 85px); left: 50%; transform: translateX(-50%); }
.orbit-node.n4 { bottom: calc(50% - 85px); left: 50%; transform: translateX(-50%); }
.orbit-node.n5 { top: 30%; left: 25%; background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.orbit-node.n6 { bottom: 26%; right: 22%; background: var(--accent); color: #0a0a0a; border-color: var(--accent); }

.show-2 .show-stats-row {
  position: absolute;
  bottom: 16px;
  left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.show-stats-row > div small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 4px;
}
.show-stats-row > div strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* SHOW 3 — Search rank */
.search-mock {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  margin-top: 4px;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.search-bar svg {
  width: 14px; height: 14px;
  color: var(--text-mute);
  flex-shrink: 0;
}
.search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  transition: background .2s;
}
.search-result.top {
  background: rgba(197,245,66,0.08);
  border: 1px solid rgba(197,245,66,0.25);
}
.search-result .rank {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--line-2);
  color: var(--text-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.search-result.top .rank {
  background: var(--accent);
  color: #0a0a0a;
}
.search-result > div { flex-grow: 1; min-width: 0; }
.r-title {
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.r-url {
  font-size: 10px;
  color: var(--text-mute);
}
.badge-up {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--accent);
  color: #0a0a0a;
  flex-shrink: 0;
}

/* SHOW 4 — AI chat */
.ai-visual { padding-bottom: 16px; }
.ai-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.ai-prompt, .ai-answer {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  position: relative;
}
.ai-prompt {
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--text-dim);
  align-self: flex-end;
  max-width: 75%;
}
.ai-answer {
  background: rgba(197,245,66,0.06);
  border: 1px solid rgba(197,245,66,0.2);
  color: var(--text);
}
.user-tag, .ai-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  padding: 2px 6px;
  border-radius: 4px;
}
.user-tag {
  background: var(--line-2);
  color: var(--text-mute);
}
.ai-tag {
  background: var(--accent);
  color: #0a0a0a;
}
.ai-answer p { margin: 0; font-size: 12.5px; }
.ai-answer mark {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
}
.ai-source {
  margin-top: 10px;
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-list li {
  display: grid;
  grid-template-columns: 100px 1fr 140px;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .3s, padding .3s;
}
.process-list li:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
}
.step-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.step-body h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step-body p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 680px;
  line-height: 1.7;
}
.step-meta {
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  padding-top: 8px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--bg);
  padding: 48px 32px;
  position: relative;
}
.stat-num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  display: inline-block;
  vertical-align: baseline;
}
.stat-suffix {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  display: inline-block;
  vertical-align: baseline;
  margin-left: 4px;
}
.stat > p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 14px;
}

.brands {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.brands-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  text-transform: uppercase;
  font-weight: 600;
}

/* LOGO MARQUEE */
.logo-marquee {
  overflow: hidden;
  padding: 36px 0 100px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  color: var(--text-dim);
  opacity: 0.55;
  transition: opacity .3s var(--easing), color .3s;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-logo:hover {
  opacity: 1;
  color: var(--accent);
}
.brand-logo svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background:
    radial-gradient(800px 400px at 20% 0%, var(--accent-soft), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.contact-left p {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.contact-info > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info span {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  font-weight: 600;
}
.contact-info a, .contact-info p {
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.contact-info a:hover { color: var(--accent); }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  margin-bottom: 24px;
}
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.form-row.two > div { margin-bottom: 0; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  background: var(--bg);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(197, 245, 66, 0.04);
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-mute);
}
.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dim);
  background: transparent;
  transition: all .2s;
  font-weight: 500;
}
.chip:hover {
  border-color: var(--text-dim);
  color: var(--text);
}
.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
}

.form-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.crumb {
  max-width: var(--max);
  margin: 110px auto 0;
  padding: 0 var(--pad);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-mute);
  font-weight: 500;
}
.crumb a { color: var(--text-mute); transition: color .2s; }
.crumb a:hover { color: var(--accent); }
.crumb span { color: var(--text); }

/* SERVICE HERO */
.svc-hero {
  position: relative;
  padding: 60px var(--pad) 100px;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}
.svc-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) {
  .svc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.svc-hero-text .eyebrow { margin-bottom: 20px; }
.svc-hero-text h1 {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.svc-hero-text .lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.svc-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.svc-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.svc-hero-tags span {
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-dim);
}

/* SERVICE HERO VISUAL */
.svc-hero-visual {
  position: relative;
  height: 480px;
  background: linear-gradient(135deg, #181818, #0e0e0e);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 32px;
}
.svc-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* COMMON SVC SECTION */
.svc-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 120px) var(--pad);
}

/* VALUE CARDS */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 36px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--easing), border-color .3s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197,245,66,0.25);
}
.value-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.value-card h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.25;
}
.value-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.7;
}

/* DELIVERABLES */
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 820px) { .deliv-grid { grid-template-columns: 1fr; } }
.deliv-item {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .3s, background .3s;
}
.deliv-item:hover {
  border-color: var(--line-2);
  background: var(--bg-3);
}
.deliv-check {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(197,245,66,0.1);
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deliv-check svg { width: 18px; height: 18px; }
.deliv-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.deliv-item p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background:
    radial-gradient(140% 80% at 50% 0%, rgba(197,245,66,0.08), transparent 60%),
    var(--bg-2);
  border-color: rgba(197,245,66,0.4);
  transform: scale(1.02);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-name {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.price-tag {
  font-size: 14px;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.price-amt {
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amt em { font-size: 0.45em; color: var(--text-dim); font-weight: 600; }
.price-period {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  margin-bottom: 28px;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.price-list li::before {
  content: "";
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5f542' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.price-list li.muted { color: var(--text-mute); }
.price-list li.muted::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a6a6a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}
.price-card .btn {
  justify-content: center;
  width: 100%;
}

/* FAQ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color .2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--accent); }
.faq-list summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  transition: transform .3s var(--easing);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding-top: 14px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 720px;
}

/* SVC CTA */
.svc-cta {
  margin: 0 var(--pad);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(60px, 8vw, 100px) clamp(28px, 5vw, 80px);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: var(--radius-lg);
  color: #0a0a0a;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}
.svc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.16) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}
.svc-cta-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.svc-cta h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #0a0a0a;
}
.svc-cta .btn {
  background: #0a0a0a;
  color: var(--accent);
}
.svc-cta .btn:hover { background: #fff; color: #0a0a0a; }

/* NEXT SERVICE NAV */
.svc-next {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px var(--pad);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.svc-next a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: color .2s;
}
.svc-next a:hover { color: var(--accent); }
.svc-next .label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  font-weight: 600;
}
.svc-next .name {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.svc-next a.next { text-align: right; align-items: flex-end; }

/* SVC visuals - shared bits */
.svc-vis-tag {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent);
  background: rgba(197,245,66,0.12);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* VIRAL NETWORK */
.viral-network {
  position: absolute;
  inset: 60px 32px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vn-center {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 0 10px rgba(197,245,66,0.1);
}
.vn-pulse, .vn-pulse-2 {
  position: absolute;
  width: 80px; height: 80px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: vnpulse 3s ease-out infinite;
}
.vn-pulse-2 { animation-delay: 1.5s; }
@keyframes vnpulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3.5); opacity: 0; }
}
.vn-node {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
.vn-node.n1 { top: 12%; left: 15%; }
.vn-node.n2 { top: 12%; right: 15%; }
.vn-node.n3 { bottom: 12%; left: 22%; }
.vn-node.n4 { bottom: 12%; right: 22%; }
.vn-node.n5 { top: 50%; left: -2%; transform: translateY(-50%); }
.vn-node.n6 { top: 50%; right: -2%; transform: translateY(-50%); background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.vn-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

/* SEO SCORE */
.seo-score {
  position: relative;
  margin-top: 56px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.seo-circle {
  position: relative;
  width: 130px; height: 130px;
  flex-shrink: 0;
}
.seo-circle svg { width: 100%; height: 100%; }
.seo-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.seo-num span {
  font-size: 12px;
  color: var(--text-mute);
  font-weight: 600;
  margin-top: 4px;
}
.seo-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}
.seo-item span {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.seo-item.ok span { background: rgba(197,245,66,0.15); color: var(--accent); }
.seo-item.warn span { background: rgba(255,90,90,0.15); color: #ff5a5a; }

.seo-rank {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-rank-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
}
.rank-key { color: var(--text-dim); font-weight: 500; }
.rank-val {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.01em;
}
.rank-val.up { color: var(--accent); }

/* AI WORKFLOW */
.wf-mock {
  position: relative;
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  height: 280px;
}
.wf-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.wf-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-mute);
  margin-bottom: 6px;
  text-align: center;
}
.wf-node {
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.wf-node.accent {
  background: rgba(197,245,66,0.06);
  border-color: rgba(197,245,66,0.25);
  color: var(--accent);
}
.wf-center {
  align-items: center;
}
.wf-brain {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 3;
  box-shadow: 0 0 0 10px rgba(197,245,66,0.1), 0 14px 30px -10px rgba(197,245,66,0.4);
}
.wf-brain svg { width: 38px; height: 38px; }
.wf-brain span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.wf-pulse {
  position: absolute;
  width: 100px; height: 100px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: vnpulse 2.5s ease-out infinite;
}
.wf-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* GEO MOCK */
.geo-mock {
  margin-top: 56px;
}
.geo-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.geo-search svg {
  width: 16px; height: 16px;
  color: var(--text-mute);
  flex-shrink: 0;
}
.geo-overview {
  background: linear-gradient(135deg, rgba(197,245,66,0.1), rgba(108,92,231,0.06));
  border: 1px solid rgba(197,245,66,0.25);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.geo-ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 10px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.3);
  border-radius: 999px;
}
.geo-ai-tag svg {
  width: 12px; height: 12px;
}
.geo-overview p {
  margin: 0 0 10px 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}
.geo-overview mark {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
}
.geo-sources {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.src-chip {
  font-size: 10px;
  color: var(--text-mute);
  padding: 3px 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
}
.geo-classic {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.geo-r {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  opacity: 0.55;
}
.geo-r .num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--line-2);
  color: var(--text-mute);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.geo-r > div { flex-grow: 1; }
.geo-r p {
  margin: 0;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}
.geo-r small {
  font-size: 10px;
  color: var(--text-mute);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 80px var(--pad) 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 800;
}
.footer-tagline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 60px;
  max-width: 720px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.footer-cols h4 {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-cols ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-cols li {
  font-size: 14px;
  color: var(--text-dim);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--accent);
  color: #0a0a0a;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 14px 40px -10px rgba(197, 245, 66, 0.4);
  opacity: 0;
  transition: opacity .35s, transform .35s var(--easing);
  z-index: 200;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--easing), transform .8s var(--easing);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile menu — flatten dropdown */
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    position: absolute;
    top: 64px;
    right: var(--pad);
    left: var(--pad);
    background: rgba(15, 15, 15, 0.96);
    backdrop-filter: blur(24px);
    border: 1px solid var(--line-2);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav-links.open > a,
  .nav-links.open .nav-trigger {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
  }
  .nav-links.open .nav-trigger { pointer-events: none; opacity: 0.7; }
  .nav-links.open .caret { display: none; }
  .nav-links.open .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: auto;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--line);
    box-shadow: none;
    margin-bottom: 6px;
    padding: 6px;
  }
  .nav-links.open .dropdown::before { display: none; }
  .nav-links.open .dd-item { padding: 10px 12px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form { padding: 28px; }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .step-meta { text-align: left; }

  /* svc-hero stacking */
  .svc-hero-visual { height: 380px; }

  /* pricing — featured no scale */
  .price-card.featured { transform: none; }
}

@media (max-width: 560px) {
  .form-row.two { grid-template-columns: 1fr; }
  .hero-meta {
    flex-direction: column;
    gap: 24px;
  }
  .hero-meta div {
    display: flex;
    align-items: baseline;
    gap: 12px;
    justify-content: center;
  }
  .hero-meta strong { display: inline; }
  .hero-meta span { display: inline; margin-top: 0; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

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