:root {
  --bg: #ffffff;
  --panel: #f7f7f7;
  --text: #1b1b1b;
  --muted: #5b5b5b;
  --primary: #e04030;
  --secondary: #b03020;
  --border: rgba(15, 15, 15, 0.08);
  --radius: 18px;
  --shadow: 0 18px 40px rgba(15, 15, 15, 0.08);
}

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

p {
  color: var(--muted);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.6rem 1rem;
  background: var(--primary);
  color: var(--text);
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(15, 15, 15, 0.06);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.25rem 0;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 1rem;
}

.brand-logo {
  height: 100px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

.brand-name {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: none;
  justify-content: center;
  gap: 2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:focus-visible,
.nav-links a:hover {
  border-bottom-color: var(--primary);
}

.header-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(224, 64, 48, 0.18);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 15, 15, 0.12);
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hero {
  padding: 4.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text);
}

.lead {
  font-size: 1.1rem;
  max-width: 34rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.proof-bar {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

.hero-card li::before {
  content: "-";
  color: var(--primary);
  margin-right: 0.6rem;
}

section {
  padding: 3.5rem 0;
  scroll-margin-top: 110px;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--text);
  margin-bottom: 0.6rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(224, 64, 48, 0.15);
  display: grid;
  place-items: center;
  color: var(--primary);
}

.icon svg {
  width: 24px;
  height: 24px;
}

.steps {
  display: grid;
  gap: 1.5rem;
}

.step-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(224, 64, 48, 0.18);
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 1.4rem;
  box-shadow: var(--shadow);
}

details summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  padding: 1rem 0;
}

details summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: "+";
  float: right;
  color: var(--primary);
}

details[open] summary::after {
  content: "-";
}

details p {
  padding-bottom: 1rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-details {
  display: grid;
  gap: 0.6rem;
}

.contact-details strong {
  color: var(--text);
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(15, 15, 15, 0.12);
  background: #ffffff;
  color: var(--text);
  padding: 0.75rem 0.9rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224, 64, 48, 0.3);
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.contact-cta .fine-print {
  font-size: 0.95rem;
}

.fine-print {
  font-size: 0.8rem;
  color: var(--muted);
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  color: var(--muted);
  text-align: center;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

@media (max-width: 600px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
