:root {
  --bg: #060b17;
  --surface: #0e1628;
  --surface-alt: #13203b;
  --surface-soft: rgba(18, 29, 49, 0.84);
  --text: #e8eef7;
  --text-muted: #a7b6d0;
  --accent: #3c8dff;
  --accent-soft: rgba(60, 141, 255, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --max-width: 1180px;
  --gap: 24px;
  --transition: 180ms ease;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(60, 141, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #061023 0%, #070b14 48%, #03050b 100%);
  font-family: var(--font-family, Inter, sans-serif);
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
}

.container {
  width: min(100%, calc(1120px + 2rem));
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 10, 19, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-grid {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 64px;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.45rem;
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.25rem 0 0;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-badge-logo {
  width: 42px;
  height: auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.55rem;
}

.hero-brand-badge span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-branding {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-branding p {
  margin: 0;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.header-action {
  white-space: nowrap;
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #1686ff);
  box-shadow: 0 18px 32px rgba(60, 141, 255, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn:hover,
button:hover,
.btn:focus-visible,
button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.85rem 1rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-close {
  align-self: flex-end;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-close:hover,
.mobile-close:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu a {
  color: var(--text);
  padding: 0.75rem 0;
}

.hero {
  padding: 4rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(400px, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero h1 {
  font-size: clamp(2.75rem, 4vw, 4.4rem);
  line-height: 1.02;
  margin: 1rem 0 1rem;
}

.hero p {
  max-width: 42rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badges span {
  color: var(--accent);
  font-weight: 600;
  background: rgba(60, 141, 255, 0.08);
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
}

.hero-media {
  display: grid;
  gap: 1rem;
}

.hero-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7, 12, 25, 0.9), rgba(5, 8, 16, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-card img {
  height: 420px;
  object-fit: cover;
}

.hero-card-text {
  padding: 1.2rem 1.25rem 1rem;
  color: var(--text);
}

.trust-bar {
  margin: 2rem 0 0;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  color: var(--text-muted);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.cards-grid,
.reviews-grid,
.pricing-grid,
.stats-grid,
.badges-grid,
.contact-grid,
.slider-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.review-card,
.price-card,
.feature-panel,
.slider-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.card h3,
.price-card h3,
.review-card strong {
  margin-bottom: 0.85rem;
}

.card p,
.review-card p,
.price-card p,
.feature-panel p,
.contact-panel p {
  color: var(--text-muted);
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 2.4rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--accent);
  font-weight: 800;
}

.two-column {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.feature-panel {
  display: grid;
  gap: 1.25rem;
}

.feature-pill {
  display: inline-flex;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(60, 141, 255, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.slider-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.slider-card p {
  margin-top: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.badges-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.badges-grid span {
  padding: 1rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  text-align: center;
  font-weight: 700;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  min-height: 220px;
  display: grid;
  gap: 1rem;
}

.reviews-link {
  margin-top: 1.75rem;
}

.book-now-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(36, 60, 106, 0.18), rgba(10, 18, 34, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.book-now-panel p {
  color: var(--text-muted);
  line-height: 1.8;
}

.btn-book-now {
  min-width: 180px;
}

#before-after {
  display: none;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card strong {
  display: block;
  margin: 1rem 0;
  font-size: 2.1rem;
  color: #fff;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.quote-form label {
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(60, 141, 255, 0.28);
  outline-offset: 2px;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -0.5rem;
}

.contact-panel {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10, 19, 34, 0.95), rgba(8, 14, 24, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-panel div {
  display: grid;
  gap: 0.45rem;
}

.panel-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-panel a {
  color: var(--text);
  font-weight: 600;
}

.contact-note {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.site-footer {
  padding: 2.5rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.footer-grid p {
  color: var(--text-muted);
  line-height: 1.75;
}

.footer-note {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}

.sticky-call {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 60;
  display: none;
  width: calc(100% - 2rem);
  max-width: 520px;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  text-align: center;
  background: linear-gradient(135deg, #2266ff, #3c8dff);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid,
  .two-column,
  .slider-grid,
  .cards-grid,
  .reviews-grid,
  .pricing-grid,
  .contact-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.85rem 0;
  }

  .header-grid {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
    width: 100%;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero-card img {
    height: 320px;
  }

  .book-now-panel,
  .contact-grid,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-brand-badge {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-call {
    display: flex;
  }
}

@media (max-width: 540px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .btn-book-now {
    width: 100%;
  }

  .book-now-panel,
  .contact-grid,
  .footer-grid,
  .stats-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: auto;
  }

  .site-header {
    padding: 0.75rem 0;
  }
}
