:root {
  --bg: #05131c;
  --surface: #0d1f2d;
  --surface-soft: #102736;
  --surface-strong: #132d3f;
  --text: #eef7ff;
  --muted: #9db4c6;
  --line: rgba(150, 189, 219, 0.14);
  --brand: #0d92ef;
  --brand-deep: #066ab5;
  --accent: #f5a11d;
  --accent-deep: #cf7c08;
  --accent-soft: rgba(245, 161, 29, 0.12);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 6.75rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 146, 239, 0.16), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(245, 161, 29, 0.12), transparent 18%),
    linear-gradient(180deg, #071722 0%, #05131c 52%, #081b27 100%);
}

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

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

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 19, 28, 0.82);
  border-bottom: 1px solid rgba(150, 189, 219, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: none;
}

.logo-image {
  width: auto;
  max-width: min(100%, 360px);
  height: 60px;
  display: block;
  border-radius: 0.8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a,
.hero-menu-panel a {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.nav-links a.is-active,
.hero-menu-panel a.is-active {
  color: #ffffff;
}

.nav-links a:hover,
.site-footer a:hover,
.contact-list a:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #07131b;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 14px 30px rgba(207, 124, 8, 0.28);
}

.btn-secondary {
  color: #dceeff;
  background: rgba(13, 146, 239, 0.12);
  border: 1px solid rgba(13, 146, 239, 0.22);
}

.btn-small {
  min-height: 2.85rem;
  padding-inline: 1.15rem;
}

.hero {
  padding: 5.25rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.split-grid h2,
.cta-panel h2,
.quote-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: #7fc9ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-text,
.section-heading p,
.feature-list p,
.service-card p,
.step-card p,
.faq-card p,
.quote-card p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 1.45rem 0 0;
  font-size: 1.06rem;
}

.hero-copy,
.hero-showcase {
  min-width: 0;
}

.hero-mobile-quickbar {
  display: none;
}

.hero-menu-shell {
  position: relative;
}

.hero-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.26rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(150, 189, 219, 0.18);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.hero-menu-toggle span {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: #ffffff;
}

.hero-menu-toggle[aria-expanded="true"] {
  background: rgba(13, 146, 239, 0.18);
  border-color: rgba(13, 146, 239, 0.28);
}

.hero-menu-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  z-index: 8;
  min-width: 14rem;
  max-width: min(16rem, calc(100vw - 3rem));
  padding: 0.55rem;
  border: 1px solid rgba(150, 189, 219, 0.16);
  border-radius: 1.2rem;
  background: rgba(7, 23, 34, 0.96);
  box-shadow: var(--shadow);
}

.hero-menu-panel[hidden] {
  display: none;
}

.hero-menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0.95rem;
  border-radius: 0.95rem;
  color: var(--muted);
  font-weight: 700;
}

.hero-menu-panel a::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(127, 201, 255, 0.38);
}

.hero-menu-panel a.is-active,
.hero-menu-panel a:hover {
  background: rgba(13, 146, 239, 0.14);
  border-color: rgba(13, 146, 239, 0.22);
}

.hero-menu-panel a.is-active::after,
.hero-menu-panel a:hover::after {
  background: var(--accent);
}

.hero-inline-call {
  display: inline-flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  min-width: 0;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: rgba(245, 161, 29, 0.14);
  border: 1px solid rgba(245, 161, 29, 0.26);
  color: #ffd18a;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: var(--shadow-soft);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 1.7rem 0 0;
  list-style: none;
}

.trust-points li {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(150, 189, 219, 0.14);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.hero-showcase {
  position: relative;
  min-height: 640px;
  padding-bottom: 3rem;
}

.hero-image-card,
.service-card,
.step-card,
.faq-card,
.gallery-card,
.cta-panel,
.proof-grid div,
.feature-list article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-image-card {
  position: relative;
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  border-radius: 2rem;
  background: #dde5e2;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 31, 28, 0.02), rgba(17, 31, 28, 0.24));
}

.hero-image-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  max-width: 17rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(5, 19, 28, 0.84);
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.hero-badge span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge strong {
  font-size: 1rem;
  line-height: 1.45;
}

.quote-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(24rem, calc(100% - 1.5rem));
  padding: 1.8rem;
  border-radius: 1.8rem;
  background: rgba(9, 23, 34, 0.94);
  border: 1px solid rgba(150, 189, 219, 0.14);
  box-shadow: var(--shadow);
}

.card-label {
  margin: 0 0 0.75rem;
  color: #7fc9ff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.quote-card h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.6rem 0;
}

.contact-list a {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.contact-list span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-list strong {
  font-size: 1rem;
}

.card-note {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--accent-soft);
  color: #ffd18a;
  font-weight: 700;
  line-height: 1.6;
}

.proof-strip {
  padding-bottom: 1.25rem;
}

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

.proof-grid div {
  padding: 1.2rem 1.3rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.04);
}

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

.proof-grid strong {
  font-size: 1.04rem;
  margin-bottom: 0.2rem;
}

.proof-grid span {
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(13, 146, 239, 0.05), rgba(13, 146, 239, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-grid h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card,
.step-card,
.faq-card {
  padding: 1.55rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.04);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.service-kicker {
  margin: 0 0 0.85rem;
  color: #7fc9ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3,
.step-card h3,
.faq-card h3,
.feature-list h3 {
  margin: 0 0 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.gallery-section {
  padding-top: 1.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1rem;
}

.gallery-stack {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 1.7rem;
  background: var(--surface-soft);
}

.gallery-card img {
  width: 100%;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}

.gallery-card-wide img {
  height: 520px;
}

.gallery-stack .gallery-card img {
  height: 180px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
}

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

.feature-list article {
  padding: 1.35rem 1.4rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.04);
}

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

.step-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #ffd18a;
  background: rgba(245, 161, 29, 0.14);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.faq-section {
  padding-top: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cta-section {
  padding-top: 1.5rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.9rem;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(13, 146, 239, 0.18), transparent 24%),
    linear-gradient(135deg, #0d2536 0%, #12415f 100%);
}

.cta-panel .eyebrow {
  color: #8ed0ff;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-panel .cta-actions {
  display: grid;
  gap: 1rem;
  margin-top: 0;
  width: min(100%, 22rem);
  justify-self: end;
  align-self: center;
}

.cta-panel .cta-actions .btn {
  width: 100%;
  min-height: 3.6rem;
  padding-inline: 1.35rem;
  text-align: center;
  white-space: normal;
 }

.site-footer {
  padding: 1.4rem 0 2rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-row p {
  margin: 0;
}

.js-ready .reveal-ready {
  opacity: 0;
  transform: translateY(1.6rem) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-ready .reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .gallery-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: auto;
    padding-bottom: 0;
  }

  .quote-card {
    position: relative;
    width: min(28rem, calc(100% - 2rem));
    margin: -5rem 1rem 0 auto;
  }

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

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

  .cta-panel .cta-actions {
    justify-self: start;
    width: min(100%, 24rem);
  }
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: nowrap;
    padding: 0.8rem 0;
  }

  .brand {
    max-width: none;
  }

  .logo-image {
    max-width: min(100%, 220px);
    height: 40px;
  }

  .nav-links {
    display: none;
  }

  .btn-small {
    display: none;
  }

  .hero {
    padding: 2.4rem 0 2.8rem;
  }

  .hero-mobile-quickbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
    min-width: 0;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.75rem, 12vw, 4.3rem);
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 420px;
    height: 420px;
  }

  .hero-badge {
    position: relative;
    top: auto;
    left: auto;
    margin: 0.9rem 0 0;
    max-width: none;
    background: rgba(9, 23, 34, 0.92);
  }

  .quote-card {
    width: 100%;
    margin: 0.9rem 0 0;
    padding: 1.35rem;
  }

  .proof-grid,
  .service-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-stack {
    grid-template-columns: 1fr;
  }

  .gallery-card-wide img {
    height: 320px;
  }

  .gallery-stack .gallery-card img {
    height: 220px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .cta-panel .cta-actions {
    width: 100%;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .trust-points {
    gap: 0.6rem;
  }

  .trust-points li {
    padding: 0.62rem 0.85rem;
    font-size: 0.9rem;
  }

  .proof-strip {
    padding-bottom: 0.7rem;
  }

  .proof-grid div {
    padding: 1rem 1.05rem;
  }

  .section {
    padding: 3.6rem 0;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
