:root {
  --bg: #08080C;
  --bg-2: #0E0E15;
  --bg-card: #131320;
  --accent: #E8921A;
  --accent-light: #F5C84A;
  --accent-dim: rgba(232, 146, 26, 0.12);
  --text: #FFFFFF;
  --text-2: #9E9EB0;
  --text-3: #6A6A80;
  --success: #22C55E;
  --border: rgba(255,255,255,0.07);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(8,8,12,0.9);
  backdrop-filter: blur(20px);
  z-index: 100;
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  width: 24px;
  height: 24px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: inline-block;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,146,26,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,146,26,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,146,26,0.12) 0%, transparent 70%);
  top: -100px; right: 0;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,200,74,0.06) 0%, transparent 70%);
  bottom: 100px; left: 200px;
}
.hero-blob-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,146,26,0.08) 0%, transparent 70%);
  top: 40%; left: 30%;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,146,26,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--accent-light);
  margin-bottom: 28px;
  font-weight: 500;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-3);
}
.proof-avatars {
  display: flex;
}
.avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -6px;
}
.avatar:first-child { margin-left: 0; }
.av-1 { background: #3B82F6; }
.av-2 { background: #10B981; }
.av-3 { background: #F59E0B; }
.av-4 { background: #8B5CF6; }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dashboard-mock {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 60px rgba(232,146,26,0.06);
}
.mock-header {
  background: #0D0D1A;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.m-red { background: #FF5F57; }
.m-yellow { background: #FFBD2E; }
.m-green { background: #28CA41; }
.mock-title {
  font-size: 12px;
  color: var(--text-3);
  margin-left: 8px;
  font-weight: 500;
}
.mock-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}
.mock-val {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
}
.mock-val.accent { color: var(--accent); }
.mock-val.success { color: var(--success); }
.mock-bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-bar-label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
}
.mock-bar {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.mock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 3px;
}
.mock-spark {
  height: 40px;
  display: flex;
  align-items: flex-end;
}
.spark-line {
  width: 100%;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40'%3E%3Cpath d='M0 35 L20 28 L35 32 L50 18 L65 22 L80 12 L95 18 L110 8 L125 15 L140 10 L155 14 L170 6 L185 12 L200 8' stroke='%23E8921A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.mock-pulse {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.pulse-text {
  font-size: 11px;
  color: var(--success);
  font-weight: 600;
}

.hero-float {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hero-float-1 {
  align-self: flex-start;
  animation: float1 6s ease-in-out infinite;
}
.hero-float-2 {
  align-self: flex-end;
  animation: float2 6s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.float-icon {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-icon-green { background: rgba(34,197,94,0.12); }
.float-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.float-sub {
  font-size: 11px;
  color: var(--text-3);
}

/* SECTION LABELS */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.text-accent { color: var(--accent); }

/* PROBLEMS */
.problems {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
}
.problems-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.problem-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
}
.problem-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.problem-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.problem-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 32px;
}
.problem-stat {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.problem-stat-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

/* SERVICES */
.services {
  padding: 120px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.services-header {
  max-width: 700px;
  margin-bottom: 64px;
}
.services-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 40px;
}
.service-card-main {
  grid-row: span 2;
  padding: 48px;
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon-sm {
  width: 44px; height: 44px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.service-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-features li {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%23E8921A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* STATS */
.stats-section {
  background: var(--accent);
  padding: 48px 60px;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--bg);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: rgba(8,8,12,0.7);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(8,8,12,0.2);
}

/* HOW IT WORKS */
.how {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
}
.how-header {
  max-width: 500px;
  margin-bottom: 64px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
}
.how-step:nth-child(2) { background: var(--bg); }
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  opacity: 0.3;
  letter-spacing: -0.04em;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}
.step-visual { display: flex; flex-direction: column; gap: 12px; }

/* Step 1 diagram */
.step-diagram {
  display: flex;
  align-items: center;
  gap: 12px;
}
.diagram-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
  min-width: 72px;
}
.node-icon {
  width: 32px; height: 32px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diagram-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.arrow-line {
  width: 24px; height: 1px;
  background: var(--accent);
  opacity: 0.4;
}
.arrow-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
}
.leak-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px;
  font-size: 12px;
  color: #EF4444;
  font-weight: 600;
  width: fit-content;
}
.leak-dot {
  width: 6px; height: 6px;
  background: #EF4444;
  border-radius: 50%;
}

/* Stack diagram */
.stack-diagram { display: flex; flex-direction: column; gap: 8px; }
.stack-row {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.stack-item {
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
}
.stack-item.accent {
  background: var(--accent-dim);
  border-color: rgba(232,146,26,0.3);
  color: var(--accent);
}
.stack-connector {
  width: 16px; height: 1px;
  background: var(--accent);
  opacity: 0.3;
  flex-shrink: 0;
}
.stack-connector-v {
  width: 1px; height: 8px;
  background: var(--accent);
  opacity: 0.3;
  margin-left: 24px;
}

/* Optimize chart */
.optimize-chart { display: flex; flex-direction: column; gap: 8px; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), var(--accent-light));
  border-radius: 3px 3px 0 0;
  opacity: 0.8;
}
.chart-bar:nth-child(1) { opacity: 0.3; }
.chart-bar:nth-child(2) { opacity: 0.4; }
.chart-bar:nth-child(3) { opacity: 0.55; }
.chart-bar:nth-child(4) { opacity: 0.65; }
.chart-bar:nth-child(5) { opacity: 0.8; }
.chart-bar:nth-child(6) { opacity: 1; }
.chart-label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
}

/* NICHES */
.niches {
  padding: 120px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.niches-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.niches-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 16px;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.niche-card {
  padding: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.niche-card:hover {
  border-color: rgba(232,146,26,0.3);
  transform: translateY(-4px);
}
.niche-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  margin-bottom: 20px;
  position: relative;
}
.niche-icon::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.7;
}
.niche-icon-dental::after { clip-path: polygon(50% 20%, 80% 50%, 50% 80%, 20% 50%); }
.niche-icon-home::after { clip-path: polygon(50% 10%, 90% 100%, 10% 100%); }
.niche-icon-law::after { clip-path: polygon(20% 80%, 50% 20%, 80% 80%); }
.niche-icon-salon::after { clip-path: circle(35% at 50% 50%); }
.niche-icon-real::after { clip-path: polygon(20% 100%, 50% 10%, 80% 100%); }
.niche-icon-auto::after { clip-path: polygon(15% 60%, 40% 30%, 60% 30%, 85% 60%, 85% 80%, 15% 80%); }
.niche-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.niche-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 140px 60px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,146,26,0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 40px;
}
.closing-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.closing-vision {
  display: flex;
  align-items: center;
  gap: 24px;
}
.vision-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.closing-vision p {
  font-size: 14px;
  color: var(--text-3);
  max-width: 400px;
  font-style: italic;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  padding: 60px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-3);
  max-width: 400px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
}
.footer-links a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 8px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,146,26,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-accent {
  background: var(--accent);
  color: var(--bg);
  padding: 16px 36px;
  font-size: 16px;
}
.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,146,26,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
  padding: 15px 35px;
  font-size: 16px;
}
.btn-ghost:hover {
  border-color: var(--text);
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

/* TESTIMONIALS */
.testimonials {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
}
.testimonials-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.av-hvac { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.av-dental { background: linear-gradient(135deg, #10B981, #059669); }
.av-salon { background: linear-gradient(135deg, #F59E0B, #D97706); }
.author-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.author-role {
  font-size: 13px;
  color: var(--text-3);
}

.services-cta {
  margin-top: 32px;
}

.closing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.closing-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
}
.trust-item svg {
  flex-shrink: 0;
}

.proof-logos {
  font-size: 14px;
  color: var(--text-3);
}

/* PRICING */
.pricing {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
}
.pricing-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.pricing-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 16px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 40px rgba(232,146,26,0.12);
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-tier-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--text);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.price-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.04em;
  color: var(--text);
}
.price-period {
  font-size: 16px;
  color: var(--text-3);
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%23E8921A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pricing-btn {
  width: 100%;
  margin-bottom: 12px;
}
.pricing-note {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
}
.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
/* SUCCESS PAGE */
.success-page {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.success-icon {
  margin-bottom: 32px;
}
.success-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.success-message {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}
.success-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 400px;
  margin-bottom: 40px;
}

/* PRICING SETUP */
.pricing-setup {
  text-align: center;
  padding: 48px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.setup-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
}
.setup-desc {
  font-size: 15px;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.setup-tiers {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.setup-tier {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.setup-tier-name {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}
.setup-tier-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 60px 40px; }
  .hero-visual { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card-main { grid-column: span 2; grid-row: auto; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .how-step { grid-template-columns: 60px 1fr; }
  .step-visual { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .nav-links { display: none; }
  .hero { padding: 48px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .problems { padding: 80px 24px; }
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-main { grid-column: auto; }
  .stats-inner { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .testimonials { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .niches { padding: 80px 24px; }
  .niches-grid { grid-template-columns: 1fr; }
  .how { padding: 80px 24px; }
  .how-step { padding: 32px 24px; }
  .closing { padding: 80px 24px; }
  .closing-actions { flex-direction: column; }
  .closing-actions .btn { width: 100%; }
  .footer { padding: 40px 24px; }
  .closing-vision { flex-direction: column; }
  .vision-line { display: none; }
  .closing-trust { flex-direction: column; align-items: center; gap: 16px; }
  .pricing { padding: 80px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-trust { flex-direction: column; align-items: flex-start; gap: 16px; }
  .setup-tiers { flex-direction: column; align-items: center; }
}