/* === DESIGN TOKENS === */
:root {
  --color-primary:   #1B1B2F;
  --color-secondary: #4A47A3;
  --color-accent:    #F5A623;
  --color-light:     #F7F7F9;
  --color-white:     #FFFFFF;
  --color-text:      #2D2D3F;
  --color-muted:     #6B7280;

  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 8px;
  --max-width: 1100px;
  --section-pad: 80px 24px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.125rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.7; }

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-pad); }
section.dark  { background: var(--color-primary); color: var(--color-white); }
section.light { background: var(--color-light); }
section.white { background: var(--color-white); }
section.indigo { background: var(--color-secondary); color: var(--color-white); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
  text-align: center;
}
.btn:hover  { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary   { background: var(--color-accent); color: var(--color-primary); }
.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover { border-color: var(--color-white); }

/* === CTA GROUP === */
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* === VERDICT MOCK === */
.verdict-mock {
  background: var(--color-primary);
  border-radius: var(--radius);
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 520px;
  margin: 32px auto 0;
}
.verdict-mock .verdict-label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.verdict-mock .amber { color: #F5A623; }
.verdict-mock .green { color: #4ADE80; }
.verdict-mock .red   { color: #F87171; }
.verdict-mock ul { padding-left: 0; list-style: none; }
.verdict-mock ul li { margin-bottom: 8px; padding-left: 20px; position: relative; }
.verdict-mock ul li::before { content: "•"; position: absolute; left: 0; color: var(--color-accent); }
.verdict-mock .verdict-action {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--color-light);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}
.verdict-mock .expand-link {
  color: var(--color-accent);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  display: block;
  margin-top: 12px;
}

/* === SERVICE CARDS === */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid rgba(0,0,0,0.08);
}
.service-card .tier-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 8px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 12px 0 8px;
}
.service-card p { color: var(--color-muted); font-size: 0.9rem; }

/* === STATS ROW === */
.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.stat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}
.stat::before {
  content: "→";
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.stat-callout {
  margin-top: 32px;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text);
  border-left: 3px solid var(--color-accent);
  padding-left: 16px;
}

/* === NAV === */
nav {
  background: var(--color-primary);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .nav-domain {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* === FOOTER === */
footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.6);
  padding: 40px 24px;
  font-size: 0.875rem;
}
footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer .footer-links { display: flex; gap: 24px; }
footer .footer-links a:hover { color: var(--color-white); }
footer .footer-stamp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* === MOBILE === */
@media (max-width: 768px) {
  :root { --section-pad: 60px 20px; }
  .service-cards { grid-template-columns: 1fr; }
  .cta-group { flex-direction: column; }
  .cta-group .btn { width: 100%; text-align: center; }
  nav .nav-domain { display: none; }
  footer .footer-top { flex-direction: column; }
}
