:root {
  --blue: #0097ff;
  --dark-blue: #005dd6;
  --black: #05070a;
  --dark: #0b1118;
  --white: #ffffff;
  --muted: #b8c7d8;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #113a63 0%, #05070a 42%, #020305 100%);
  color: var(--white);
}

a {
  color: inherit;
}

.site-header {
  min-height: 100vh;
  padding: 22px;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link svg {
  flex-shrink: 0;
}

.nav-cta,
.primary,
.secondary,
.phone-link,
button {
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  font-family: inherit;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-cta,
.primary,
button {
  border: none;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
  box-shadow: 0 12px 30px rgba(0, 151, 255, 0.28);
}

.secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta:hover,
.primary:hover,
.secondary:hover,
.phone-link:hover,
button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.nav-cta:focus-visible,
.primary:focus-visible,
.secondary:focus-visible,
.phone-link:focus-visible,
.promo-cta:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
footer a:focus-visible {
  outline: 3px solid #64c8ff;
  outline-offset: 3px;
}

.hero {
  max-width: 1120px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: #64c8ff;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 900;
  font-size: 0.78rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  margin: 10px 0 22px;
  text-transform: uppercase;
  letter-spacing: -3px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0 0 14px;
  letter-spacing: -1px;
}

h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.subhead,
.section p,
.pricing p,
.service-area p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.hero-card img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-banner {
  background: linear-gradient(135deg, rgba(0, 151, 255, 0.15), rgba(0, 93, 214, 0.15));
  border-top: 1px solid rgba(0, 151, 255, 0.3);
  border-bottom: 1px solid rgba(0, 151, 255, 0.3);
  padding: 20px 22px;
}

.promo-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promo-badge {
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}

.promo-text {
  color: var(--white);
  font-size: 1rem;
  margin: 0;
}

.promo-cta {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 1px;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.promo-cta:hover {
  opacity: 0.8;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 90px 22px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
}

.cards {
  display: grid;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(0, 151, 255, 0.12);
  border-radius: 12px;
  margin-bottom: 14px;
  color: var(--blue);
}

.why-us {
  text-align: center;
}

.why-us h2 {
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px 22px;
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(0, 151, 255, 0.12);
  border-radius: 50%;
  margin-bottom: 14px;
  color: var(--blue);
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}

.how-it-works {
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 26px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 18px;
}

.step-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-item p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}

.pricing {
  margin: 20px auto;
  max-width: 1120px;
  padding: 70px 28px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0, 151, 255, 0.22), rgba(255, 255, 255, 0.04));
}

.price-tiers {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.price-tier {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
  transition: transform 0.2s ease;
}

.price-tier:hover {
  transform: translateY(-4px);
}

.price-tier.featured {
  border-color: rgba(0, 151, 255, 0.4);
  background: rgba(0, 151, 255, 0.12);
}

.tier-label {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.tier-price {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
}

.tier-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.tier-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 4px;
  align-self: flex-start;
}

.trust-strip {
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item svg {
  color: var(--blue);
  flex-shrink: 0;
}

.faq {
  max-width: 720px;
}

.faq h2 {
  margin-bottom: 36px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(0, 151, 255, 0.3);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.97rem;
  margin: 0;
}

.service-area {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.area-towns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0;
}

.area-towns span {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.area-note {
  font-size: 0.95rem;
}

.area-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.area-note a:hover {
  text-decoration: underline;
}

.contact-strip {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
}

.contact-strip p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.booking {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

form {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 26px;
}

label {
  display: block;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 0.95rem;
}

.optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: white;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

button {
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
}

.form-success {
  background: var(--card);
  border: 1px solid rgba(0, 151, 255, 0.3);
  border-radius: 26px;
  padding: 48px 28px;
  text-align: center;
}

.form-success svg {
  color: var(--blue);
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 400px;
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 50px 22px 70px;
  color: var(--muted);
}

footer img {
  width: 110px;
  height: auto;
}

footer a {
  color: #64c8ff;
  font-weight: 800;
}

@media (max-width: 800px) {
  .site-header {
    padding: 16px;
    min-height: auto;
  }

  .nav-actions {
    gap: 8px;
  }

  .phone-link {
    padding: 11px 14px;
  }

  .phone-text {
    display: none;
  }

  .nav-cta {
    padding: 11px 16px;
    font-size: 0.9rem;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .split,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 46px;
    gap: 30px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 26px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .section {
    padding: 66px 18px;
  }

  .pricing {
    margin: 0;
  }

  .promo-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .trust-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
