/* style.css */
:root {
  --red: #d61111;
  --red-dark: #9f0d0d;
  --black: #0d0d0f;
  --black-soft: #17171b;
  --white: #ffffff;
  --gray-100: #f4f4f5;
  --gray-200: #e7e7ea;
  --gray-500: #6d6d75;
  --gray-700: #2a2a31;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  color: var(--red-dark);
}

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

.narrow {
  width: min(100%, 760px);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 15, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--white);
  transition: var(--transition);
}

.nav-menu {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--black);
  padding: 0.75rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  color: var(--white);
  font-weight: 600;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(214, 17, 17, 0.18);
  color: var(--white);
}

.nav-call {
  background: var(--red) !important;
  color: var(--white) !important;
  text-align: center;
}

.header-call {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  min-height: 48px;
}

.header-call:hover {
  color: var(--white);
  background: var(--red-dark);
}

.hero-section {
  background:
    linear-gradient(180deg, rgba(13, 13, 15, 0.96), rgba(13, 13, 15, 0.9)),
    linear-gradient(135deg, #1a1a1f 0%, #0d0d0f 100%);
  color: var(--white);
  padding: 1.25rem 0 2.25rem;
}

.hero-grid {
  display: grid;
  gap: 1rem;
}

.hero-copy,
.hero-card,
.service-card,
.info-panel,
.cta-box,
.steps-list article,
.faq-list details {
  border-radius: var(--radius);
}

.eyebrow,
.section-label,
.card-kicker {
  display: inline-block;
  color: #ffd5d5;
  background: rgba(214, 17, 17, 0.16);
  border: 1px solid rgba(214, 17, 17, 0.24);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy h1,
.section h2,
.cta-box h2 {
  margin: 0.7rem 0 0.8rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 7vw, 4.25rem);
  max-width: 10ch;
}

.hero-text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  max-width: 60ch;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 1.2rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.micro-copy {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.micro-copy.center {
  text-align: center;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card h2 {
  margin: 0.65rem 0 0.65rem;
  font-size: 1.55rem;
  line-height: 1.15;
}

.hero-card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
}

.proof-bar {
  background: var(--red);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}

.proof-grid > div {
  background: rgba(0, 0, 0, 0.08);
  padding: 1rem;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 1rem;
}

.proof-grid span {
  opacity: 0.9;
  font-size: 0.92rem;
}

.section {
  padding: 3.4rem 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark a {
  color: #ff6a6a;
}

.section-head {
  margin-bottom: 1.3rem;
}

.section-head.left-align {
  text-align: left;
}

.section h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
}

.section p {
  color: inherit;
}

.card-grid,
.two-col {
  display: grid;
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.service-card i {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(214, 17, 17, 0.1);
  color: var(--red);
  font-size: 1.2rem;
}

.service-card h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0 0 0.85rem;
  color: var(--gray-500);
}

.text-link {
  font-weight: 700;
}

.accent-section {
  background: linear-gradient(180deg, #fff5f5, #ffffff);
}

.feature-list,
.link-list,
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
}

.feature-list li,
.link-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.info-panel {
  background: var(--black);
  color: var(--white);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.info-panel h3 {
  margin: 0.7rem 0;
  font-size: 1.4rem;
}

.link-list {
  display: grid;
  gap: 0.8rem;
}

.link-list a {
  color: var(--white);
}

.steps-layout {
  align-items: start;
}

.steps-list {
  display: grid;
  gap: 0.9rem;
}

.steps-list article {
  background: var(--gray-100);
  padding: 1.15rem;
  border: 1px solid var(--gray-200);
}

.steps-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
}

.steps-list h3 {
  margin: 0.9rem 0 0.45rem;
  font-size: 1.15rem;
}

.steps-list p {
  margin: 0;
  color: var(--gray-500);
}

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

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

.faq-list details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding-right: 2rem;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.1rem;
  font-size: 1.4rem;
  color: #ff8080;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-section {
  background: linear-gradient(180deg, #1a0000, #120000);
  color: var(--white);
}

.cta-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  padding: 1.4rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  background: #09090b;
  color: rgba(255, 255, 255, 0.86);
  padding: 2.5rem 0 6rem;
}

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

.footer-brand {
  margin-bottom: 0.6rem;
  display: inline-block;
}

.footer-phone {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer li + li {
  margin-top: 0.55rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.66);
}

.sticky-call {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 58px;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(214, 17, 17, 0.35);
}

.sticky-call:hover,
.sticky-call:focus-visible {
  color: var(--white);
  background: var(--red-dark);
}

.no-scroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 2rem, var(--max));
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    gap: 0.35rem;
  }

  .nav-menu a {
    background: transparent;
    padding: 0.7rem 0.95rem;
  }

  .nav-call {
    margin-left: 0.35rem;
    padding-inline: 1rem !important;
  }

  .header-call {
    display: inline-flex;
  }

  .hero-section {
    padding: 2rem 0 3.5rem;
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1.25fr 0.95fr;
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }

  .sticky-call {
    left: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    min-width: 190px;
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section {
    padding: 4.8rem 0;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .cta-box {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
