/* styles.css */
:root {
  --bg: #050505;
  --bg-elevated: #0c0c0f;
  --bg-panel: #0f1013;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 44, 44, 0.55);
  --text: #f3f3f4;
  --text-muted: #a8abb3;
  --red: #ff2a2a;
  --red-dark: #b51414;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --heading-font: "Teko", "Arial Narrow", Impact, sans-serif;
  --body-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 42, 42, 0.05), transparent 30%),
    linear-gradient(180deg, #08080a 0%, #050505 100%);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
}

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

.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding-top: 3.5rem;
}

.section--divider {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.section--cta {
  padding-top: 2rem;
  padding-bottom: 4.5rem;
}

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

.heading-xl,
.heading-lg,
.heading-md {
  margin: 0;
  font-family: var(--heading-font);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--red);
}

.heading-xl {
  font-size: clamp(3.2rem, 11vw, 6rem);
}

.heading-lg {
  font-size: clamp(2.2rem, 8vw, 4rem);
}

.heading-md {
  font-size: clamp(1.7rem, 5vw, 2.25rem);
  color: #fff;
}

.section__header {
  max-width: 64rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section__header--narrow {
  max-width: 52rem;
}

.section__copy {
  max-width: 48rem;
  margin: 1rem auto 0;
  color: var(--text);
  font-size: 1rem;
}

.section__copy--left {
  margin-left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  width: min(72vw, 330px);
  height: auto;
  object-fit: contain;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: #fff;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  padding: 1rem;
  background: rgba(8, 8, 10, 0.98);
  border-bottom: 1px solid var(--line);
}

.site-nav.is-open {
  display: block;
}

.site-nav__list {
  display: grid;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.site-nav__list a {
  display: block;
  padding: 0.75rem 0;
  color: #f0f0f0;
  font-weight: 600;
}

.nav-cta {
  width: 100%;
  justify-content: center;
}

.hero {
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}

.hero__inner {
  text-align: center;
  max-width: 56rem;
}

.hero__copy {
  max-width: 42rem;
  margin: 1rem auto 0;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  color: var(--text);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 0;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--solid {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.button--solid:hover {
  background: #ff4040;
  border-color: #ff4040;
}

.button--outline {
  border-color: var(--red);
  color: #fff;
  background: transparent;
}

.button--outline:hover {
  background: rgba(255, 42, 42, 0.08);
}

.button--ghost {
  margin-top: auto;
  align-self: flex-start;
  padding-inline: 1rem;
  border-color: var(--line-strong);
  color: #fff;
  background: transparent;
}

.trust-bar {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  padding: 1.2rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cards-grid,
.reviews-grid {
  display: grid;
  gap: 1rem;
}

.card,
.review-card,
.cta-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.4rem;
  min-height: 100%;
}

.card p {
  margin: 0;
  color: #d9d9dc;
}

.card__icon {
  width: 64px;
  height: 64px;
  color: var(--red);
}

.review-card {
  padding: 1.25rem;
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.review-card__name {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
}

.review-card__role {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
}

.review-card blockquote {
  margin: 0.75rem 0 0;
  color: #efeff1;
  font-size: 1rem;
}

.avatar {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, #2b2c31, #111216);
  color: #fff;
  font-weight: 800;
}

.stars {
  margin: 0.7rem 0 0;
  color: var(--red);
  letter-spacing: 0.08em;
}

.cta-panel {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border-color: var(--line-strong);
}

.cta-panel__actions {
  display: flex;
  align-items: center;
}

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

.footer__inner {
  display: grid;
  gap: 1.25rem;
}

.brand--footer {
  width: fit-content;
}

.brand__logo--footer {
  width: min(60vw, 220px);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: #fff;
}

.site-footer__legal {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Tablet */
@media (min-width: 700px) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .hero__actions .button {
    min-width: 220px;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

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

  .cta-panel {
    grid-template-columns: 1.7fr auto;
    align-items: center;
    padding: 2rem;
  }
}

/* Desktop */
@media (min-width: 980px) {
  .nav-wrap {
    min-height: 96px;
  }

  .brand__logo {
    width: min(34vw, 420px);
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
  }

  .site-nav__list a {
    padding: 0;
    color: #f5f5f5;
    font-weight: 600;
  }

  .site-nav__list a:hover {
    color: var(--red);
  }

  .nav-cta {
    width: auto;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 4.5rem;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section--cta {
    padding-top: 2rem;
    padding-bottom: 5.5rem;
  }

  .card,
  .review-card {
    padding: 1.6rem;
  }
}