:root {
  --bg-dark: #07111f;
  --bg-darker: #04101d;
  --panel: #ffffff;
  --panel-soft: #f4f7fb;
  --panel-mid: #edf2f9;
  --text: #0b1420;
  --text-soft: #526173;
  --line: rgba(15, 33, 53, 0.12);
  --blue: #2d6df6;
  --blue-dark: #1f57d2;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(7, 17, 31, 0.12);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 16, 29, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.65rem;
}

.logo-white {
  color: #fff;
}

.logo-blue {
  color: var(--blue);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-menu > a:not(.btn) {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.98rem;
}

.nav-menu > a:not(.btn):hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  border-radius: 14px;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  text-align: center;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

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

.btn-small {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
}

.btn-large {
  min-width: 210px;
  min-height: 74px;
}

.btn-large span,
.btn span {
  font-weight: 500;
  font-size: 0.88rem;
  opacity: 0.88;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.05);
}

.light-outline {
  border-color: rgba(255, 255, 255, 0.35);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(45, 109, 246, 0.18),
      transparent 26%
    ),
    linear-gradient(
      90deg,
      var(--bg-darker) 0%,
      var(--bg-dark) 58%,
      #091a2e 100%
    );
  color: #fff;
  padding: 3.8rem 0 2.8rem;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 20%;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(4, 16, 29, 0.96) 0%,
    rgba(4, 16, 29, 0.88) 28%,
    rgba(4, 16, 29, 0.7) 46%,
    rgba(4, 16, 29, 0.38) 62%,
    rgba(4, 16, 29, 0.18) 76%,
    rgba(4, 16, 29, 0.1) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  gap: 2.25rem;
  align-items: center;
}

.hero-alt-contact {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.hero-alt-contact a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 3px;
}

.hero-alt-contact a:hover {
  color: #cfe0ff;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #27d768;
  box-shadow: 0 0 0 4px rgba(39, 215, 104, 0.18);
}

.eyebrow-location {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 0.95rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: #4e88ff;
}

.hero-text {
  margin: 1.5rem 0 1.35rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
  padding: 0;
  margin: 0 0 1.8rem;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #5f91ff;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.section-light,
.section-soft {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #f4f7fb 0%, #eef3fa 100%);
}

.section-kicker {
  margin: 0 0 0.5rem;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  text-align: center;
}

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

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-align: center;
}

.section-subtitle {
  margin: 0.85rem auto 2.25rem;
  max-width: 720px;
  color: var(--text-soft);
  text-align: center;
  font-size: 1.08rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.card,
.price-card,
.about-card,
.repair-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(7, 17, 31, 0.05);
}

.card {
  padding: 1.4rem;
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eef4ff;
  color: var(--blue);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.25rem;
  text-align: center;
}

.price-card p {
  flex-grow: 1;
}

.price-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.price-card .btn {
  margin-top: 1rem;
  width: 100%;
}

.price-card.featured .btn {
  background: linear-gradient(135deg, #2d6df6, #4e88ff);
}

.price {
  margin: 0 0 0.8rem;
  font-size: 2.55rem;
  line-height: 1;
  font-weight: 800;
  color: var(--blue);
}

.price span {
  font-size: 1rem;
  font-weight: 700;
}

.featured {
  border-color: rgba(45, 109, 246, 0.55);
  box-shadow: 0 18px 45px rgba(45, 109, 246, 0.12);
}

.badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.price-card.dark {
  background: #071126;
  color: #fff;
  border-color: #071126;
}

.price-card.dark .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.price-card.dark .btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.price-card.dark .price,
.price-card.dark p,
.price-card.dark h3 {
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.about-card {
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.about-photo {
  width: 148px;
  height: 148px;
  border-radius: 999px;
  overflow: hidden;
  border: 6px solid #f2f6fd;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h2 {
  text-align: left;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  margin-bottom: 0.7rem;
}

.about-copy p {
  margin: 0 0 0.85rem;
  color: var(--text-soft);
}

.stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.stats div {
  min-width: 110px;
}

.stats strong {
  display: block;
  font-size: 1.45rem;
  color: var(--blue);
}

.stats span {
  display: block;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.repair-card {
  padding: 1.6rem;
  background: #f7faff;
}

.repair-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.32rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.repair-card ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.repair-card li + li {
  margin-top: 0.55rem;
}

.repair-note {
  margin: 0;
  color: var(--text-soft);
}

.cta-strip {
  background: #071126;
  color: #fff;
  padding: 1.5rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-inner h2 {
  margin-bottom: 0.25rem;
  text-align: left;
  font-size: clamp(1.75rem, 2.4vw, 2.4rem);
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.site-footer {
  padding: 1.25rem 0 2rem;
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  color: var(--text-soft);
}

.footer-inner nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner nav a {
  color: var(--text-soft);
}

@media (max-width: 1120px) {
  .cards-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(4, 16, 29, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-photo {
    margin: 0 auto;
  }

  .about-copy h2,
  .section-kicker.left,
  .cta-inner h2 {
    text-align: center;
  }

  .about-copy,
  .cta-inner,
  .cta-inner p {
    text-align: center;
  }

  .cta-inner {
    flex-direction: column;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 2.5rem;
    min-height: 560px;
  }

  .cards-5,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }
}
