:root {
  --bg: #0f1114;
  --surface: #171a1f;
  --surface-alt: #1e232b;
  --accent: #c97b2c;
  --accent-soft: #f2d7b3;
  --text: #f6f3ef;
  --muted: #b7b0a7;
  --success: #6bbf8a;
  --border: #2a2f37;
  --shadow: rgba(0, 0, 0, 0.3);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #1b1208;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 5;
}

.skip-link:focus {
  top: 1rem;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo span {
  color: var(--accent);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  background: var(--surface);
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  padding: 4.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.site-nav.open {
  transform: translateY(0);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  background: var(--surface-alt);
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    border: none;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .nav-links a {
    background: transparent;
  }
}

main {
  padding: 2rem 0 4rem;
}

.section {
  padding: 2.5rem 0;
}

.section.alt {
  background: var(--surface);
}

.section.highlight {
  background: linear-gradient(135deg, rgba(201, 123, 44, 0.2), rgba(17, 17, 20, 0.8));
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #1b1208;
  font-weight: 600;
}

.btn.outline {
  background: transparent;
  color: var(--accent);
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.card {
  background: var(--surface-alt);
  padding: 1.4rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px var(--shadow);
  flex: 1 1 240px;
}

.card h3 {
  margin-top: 0;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-row .panel {
  background: var(--surface-alt);
  padding: 1.6rem;
  border-radius: var(--radius);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  flex: 1 1 180px;
  padding: 1.2rem;
  background: var(--surface-alt);
  border-radius: 14px;
  text-align: left;
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--surface-alt);
  padding: 1.4rem;
  border-radius: var(--radius);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq-question {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1rem;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
}

.faq-answer {
  margin-top: 0.8rem;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison .card {
  flex: 1 1 100%;
}

.service-price {
  color: var(--accent);
  font-weight: 600;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted);
}

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .feature-row {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  width: min(520px, 100%);
  box-shadow: 0 20px 40px var(--shadow);
}

.modal h3 {
  margin-top: 0;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.notice {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(107, 191, 138, 0.15);
  color: var(--success);
  border: 1px solid rgba(107, 191, 138, 0.4);
}
