/* HOMEPAGE-SPECIFIC STYLES */

/* HERO */
.hero {
  position: relative;
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content { position: relative; z-index: 3; }
.hero h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  margin-bottom: 28px;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordReveal .9s var(--easing) forwards;
}
.hero h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue-glow);
  letter-spacing: -.02em;
  text-shadow: 0 0 40px rgba(59,123,255,.4);
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero p.lede {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted-2);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s .6s var(--easing) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s .8s var(--easing) forwards;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: fadeUp 1s 1s var(--easing) forwards;
}
.hero-stat-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--white);
  letter-spacing: -.02em;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* HERO VISUAL - Floating dashboard cards */
.hero-visual {
  position: relative;
  height: 600px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  pointer-events: none;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: var(--blue);
  top: 10%; left: 20%;
  animation: float 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: var(--blue-2);
  bottom: 10%; right: 10%;
  animation: float 14s ease-in-out -3s infinite;
}
.hero-card {
  position: absolute;
  background: rgba(0,4,31,.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  opacity: 0;
  animation: cardReveal 1.2s var(--easing) forwards;
  z-index: 2;
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-card-1 {
  top: 10%; left: 0;
  width: 300px;
  animation-delay: 1.2s;
}
.hero-card-2 {
  top: 38%; right: 0;
  width: 280px;
  animation-delay: 1.4s;
}
.hero-card-3 {
  bottom: 5%; left: 15%;
  width: 320px;
  animation-delay: 1.6s;
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.hero-card-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-icon svg { width: 100%; height: 100%; }
.hero-card-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 600;
}
.hero-card-platform {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.hero-card-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-card-value em {
  font-family: 'Instrument Serif', serif;
  color: var(--blue-glow);
  font-style: italic;
  font-weight: 400;
}
.hero-card-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}
.hero-card-spark {
  margin-top: 10px;
}
.hero-pulse {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  top: 16px; right: 16px;
  box-shadow: 0 0 0 0 rgba(16,185,129,.7);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,.7); }
  70% { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 500px; }
}
@media (max-width: 640px) {
  .hero { padding: 140px 0 60px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 28px; }
  .hero-visual { height: 400px; }
  .hero-card-1 { width: 240px; }
  .hero-card-2 { width: 220px; }
  .hero-card-3 { width: 240px; }
}

/* TRUST BAR */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0,4,31,.4);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 42px;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-num em { color: var(--blue-glow); }
.trust-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .trust-num { font-size: 32px; }
}

/* SECTION HEAD */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head p {
  color: var(--muted-2);
  font-size: 16px;
  margin-top: 16px;
}

/* LIVE OPS DASHBOARD */
.ops-dashboard {
  padding: 100px 0;
  position: relative;
}
.dashboard-frame {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.dashboard-tabs {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
  background: rgba(0,4,31,.6);
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.dashboard-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-2);
  background: transparent;
  border: 1px solid transparent;
  cursor: none;
  transition: all .3s var(--easing);
}
.dashboard-tab.active {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: var(--line-strong);
}
.dashboard-tab svg, .dashboard-tab .pf-mini { width: 18px; height: 18px; flex-shrink: 0; }
.dashboard-tab .pf-mini { border-radius: 4px; overflow: hidden; }
.dashboard-tab .pf-mini svg { width: 100%; height: 100%; }
.dashboard-live {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dashboard-live::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.5s infinite;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
}
.dashboard-main {
  padding: 32px;
  border-right: 1px solid var(--line);
}
.dashboard-side {
  padding: 32px;
}

/* AMAZON-STYLE SELLER CENTRAL HEADER */
.sc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.sc-header-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sc-header-platform {
  width: 36px; height: 36px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.sc-header-platform svg { width: 100%; height: 100%; }
.sc-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.sc-header-sub {
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}
.sc-header-range {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 3px;
}
.sc-range-btn {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-2);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: none;
}
.sc-range-btn.active { background: var(--blue); color: var(--white); }

/* MAIN STAT */
.sc-main-stat {
  margin-bottom: 28px;
}
.sc-main-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.sc-main-value {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
}
.sc-main-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 100px;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}
.sc-main-trend svg { width: 12px; height: 12px; }

/* SALES CHART */
.sc-chart {
  height: 200px;
  position: relative;
  margin-bottom: 28px;
}
.sc-chart svg {
  width: 100%; height: 100%;
}
.sc-chart-grid line {
  stroke: rgba(255,255,255,.05);
}
.sc-chart-area {
  fill: url(#chartGrad);
  opacity: .8;
}
.sc-chart-line {
  fill: none;
  stroke: var(--blue-glow);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 8px rgba(59,123,255,.6));
}
.sc-chart-x {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

/* MINI METRICS GRID */
.sc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sc-metric {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.sc-metric-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 6px;
}
.sc-metric-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.sc-metric-bar {
  height: 3px;
  background: rgba(255,255,255,.06);
  border-radius: 100px;
  overflow: hidden;
}
.sc-metric-bar-fill {
  height: 100%;
  background: var(--blue-glow);
  width: 0%;
  border-radius: 100px;
  box-shadow: 0 0 6px var(--blue-glow);
  transition: width 1.5s var(--easing);
}

/* SIDE - LIVE FEED + GAUGE */
.side-section {
  margin-bottom: 28px;
}
.side-section:last-child { margin-bottom: 0; }
.side-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.side-section-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 600;
}
.side-counter {
  font-size: 11px;
  color: var(--green);
  font-family: 'JetBrains Mono', monospace;
}

.live-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feed-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 11.5px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .5s var(--easing), transform .5s var(--easing);
}
.feed-row.show {
  opacity: 1;
  transform: translateY(0);
}
.feed-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.feed-platform {
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.feed-item {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-qty { display: none; }
.feed-value {
  color: var(--white);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.feed-location { display: none; }
.feed-time {
  color: var(--muted);
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
}

/* GAUGE */
.gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.gauge {
  position: relative;
  width: 140px; height: 80px;
  margin-bottom: 8px;
}
.gauge svg {
  width: 100%; height: 100%;
}
.gauge-track {
  fill: none;
  stroke: rgba(255,255,255,.08);
  stroke-width: 12;
  stroke-linecap: round;
}
.gauge-fill {
  fill: none;
  stroke: url(#gaugeGrad);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: gaugeFill 2s 1s var(--easing) forwards;
  filter: drop-shadow(0 0 6px var(--blue-glow));
}
@keyframes gaugeFill {
  to { stroke-dashoffset: 18; }
}
.gauge-value {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.gauge-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* PLATFORM BADGES IN DASHBOARD */
.platform-revenue-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prev-bar {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: center;
}
.prev-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.prev-icon svg { width: 100%; height: 100%; }
.prev-bar-track {
  height: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.prev-bar-fill {
  height: 100%;
  border-radius: 100px;
  width: 0%;
  transition: width 1.8s var(--easing);
}
.prev-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
}

@media (max-width: 1024px) {
  .dashboard-body { grid-template-columns: 1fr; }
  .dashboard-main { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .dashboard-tabs { overflow-x: auto; gap: 4px; }
  .dashboard-tab { font-size: 12px; padding: 6px 10px; flex-shrink: 0; }
  .dashboard-live { display: none; }
  .sc-main-value { font-size: 36px; }
  .sc-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* PLATFORM SELECTOR */
.platform-selector {
  margin-top: 60px;
}
.platform-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.platform-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-2);
  cursor: none;
  transition: all .3s var(--easing);
}
.platform-tab:hover { color: var(--white); }
.platform-tab.active {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
  box-shadow: 0 10px 30px rgba(255,255,255,.1);
}
.platform-tab .pf-mini {
  width: 24px; height: 24px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.platform-tab .pf-mini svg { width: 100%; height: 100%; }
.platform-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.platform-panel.active { display: grid; animation: panelIn .6s var(--easing); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.platform-panel-content h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.platform-panel-content p {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.platform-panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.platform-panel-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink);
}
.platform-panel-list li::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.platform-stats-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 32px;
}
.platform-stats-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.platform-stats-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
}
.platform-stats-icon svg { width: 100%; height: 100%; }
.platform-stats-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.platform-stats-sub {
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 2px;
}
.platform-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.platform-stat {
  padding: 16px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.platform-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.platform-stat-val {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}
.platform-stat-trend {
  font-size: 11px;
  color: var(--green);
  margin-top: 4px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .platform-panel.active { grid-template-columns: 1fr; }
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.service-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  transition: all .4s var(--easing);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,4,31,.6);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(12,85,226,.15) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  overflow: hidden;
}
.service-card-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.service-card p {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.6;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-glow);
  margin-top: auto;
}
.service-card-link svg { width: 12px; height: 12px; transition: transform .3s; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* PROCESS - 6 STEPS */
.process-section {
  padding: 100px 0;
  background: rgba(0,4,31,.4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.process-step {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  transition: all .4s;
}
.process-step:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.process-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 56px;
  color: var(--blue-glow);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.process-step p {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.why-card-icon {
  width: 44px; height: 44px;
  background: rgba(12,85,226,.15);
  border: 1px solid rgba(12,85,226,.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue-glow);
}
.why-card-icon svg { width: 22px; height: 22px; }
.why-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.why-card p {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.6;
}
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* CASE STUDY */
.case-section {
  padding: 100px 0;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.case-content h2 { margin-bottom: 16px; }
.case-content p {
  font-size: 16px;
  color: var(--muted-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.case-stat-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 56px;
  color: var(--blue-glow);
  letter-spacing: -.02em;
  line-height: 1;
}
.case-stat-label {
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 6px;
}

/* Case visual mockup */
.case-mockup {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.case-mockup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.case-mockup-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.case-mockup-sub {
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 2px;
}
.case-mockup-tag {
  padding: 4px 10px;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 100px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}
.case-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.case-period {
  padding: 16px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.case-period-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.case-period-val {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}
.case-period-bar {
  height: 4px;
  background: rgba(255,255,255,.06);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 10px;
}
.case-period-fill {
  height: 100%;
  background: var(--blue-glow);
  border-radius: 100px;
  width: 0%;
  transition: width 1.8s var(--easing);
}
.case-period.before .case-period-fill { background: var(--muted); }

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

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
}
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tm-card {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.tm-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 18px;
  color: #FBBF24;
}
.tm-stars svg { width: 16px; height: 16px; }
.tm-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
}
.tm-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tm-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.tm-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.tm-role {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 1024px) { .tm-grid { grid-template-columns: 1fr; } }

/* PRICING + FAQ */
.faq-pricing-section {
  padding: 100px 0;
}
.fp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all .3s;
}
.faq-item.open {
  border-color: rgba(12,85,226,.3);
  background: rgba(12,85,226,.05);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-toggle {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  color: var(--white);
  transition: transform .3s;
}
.faq-toggle svg { width: 12px; height: 12px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--blue); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--easing);
}
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.7;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.price-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: all .3s;
}
.price-card:hover {
  border-color: rgba(59,123,255,.3);
  transform: translateY(-2px);
}
.price-card.featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(12,85,226,.12), rgba(12,85,226,.02));
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  left: 24px;
  padding: 4px 12px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 100px;
}
.price-tier {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.price-tier h3 {
  font-size: 22px;
  letter-spacing: -.02em;
}
.price-amount {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--blue-glow);
  font-size: 20px;
}
.price-desc {
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.price-features li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  align-items: flex-start;
}
.price-features li svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-glow);
}
.price-card .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1024px) {
  .fp-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-cards { position: static; }
}
