:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-alt: #f2f4f8;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --primary: #0f172a;
  --accent: #f59e0b;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --container: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 248, 251, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}
.brand-icon { font-size: 1.5rem; }
.brand-logo { width: 2.4rem; height: 2.4rem; object-fit: contain; flex: 0 0 auto; }
.footer-logo { width: 1.8rem; height: 1.8rem; }
.brand-name { letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero { padding: 5rem 0 4rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  max-width: 14ch;
}

h2 { font-size: clamp(2rem, 3vw, 3rem); }

.hero-text, .section p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.7rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}
.button-primary:hover { background: #0b1220; }

.button-secondary {
  background: white;
  border-color: var(--line);
  color: var(--text);
}
.button-secondary:hover { background: #f9fafb; }

.hero-points {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}
.hero-points li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 0.55rem;
  font-weight: 700;
}

.hero-card, .card, .cta-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card { padding: 1rem; }
.report-preview {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}
.preview-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  background: #fff7ed;
  border-bottom: 1px solid #fde68a;
}
.preview-title { margin-left: 0.55rem; font-size: 0.9rem; color: var(--muted); }
.dot { width: 10px; height: 10px; border-radius: 999px; display: inline-block; }
.dot-red { background: #f87171; }
.dot-yellow { background: #fbbf24; }
.dot-green { background: #34d399; }
.preview-body { padding: 1rem; display: grid; gap: 1rem; }
.preview-block h3 { margin: 0 0 0.3rem; font-size: 0.95rem; }
.preview-block ul { margin: 0; padding-left: 1rem; color: var(--muted); }

.section { padding: 4rem 0; }
.section-alt { background: var(--surface-alt); }
.section-heading { max-width: 720px; margin-bottom: 2rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.step-card { padding: 1.4rem; }
.step-number { color: var(--accent); font-weight: 700; }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.5rem; align-items: start; }
.pricing-card { padding: 1.5rem; }
.price-row { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 0.8rem 0; }
.price-row:last-child { border-bottom: 0; }
.reel-card { padding: 1rem; overflow: hidden; }
.reel-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
}
.reel-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}
.sample-card { padding: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.request-card { padding: 2rem; }
.request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; }
.form-hint { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
.form-actions { margin-top: 0.5rem; }
.map-container { margin-top: 1.5rem; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); min-height: 250px; }
.map-placeholder { display: flex; align-items: center; justify-content: center; min-height: 250px; color: var(--muted); font-size: 0.95rem; background: var(--surface-alt); }
.map-container iframe { width: 100%; height: 300px; border: 0; }

@media (max-width: 720px) {
  .request-form { grid-template-columns: 1fr; }
}
.cta-panel { padding: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-footer { padding: 2rem 0 3rem; border-top: 1px solid var(--line); }
.footer-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-copy { color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--muted); }

@media (max-width: 980px) {
  .hero-grid, .two-col, .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 3rem; }
  .sample-card { flex-direction: column; align-items: flex-start; }
}
