:root {
  --bg: #f4fbff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #0d2148;
  --muted: #456182;
  --line: rgba(13, 33, 72, 0.12);
  --blue: #1f7ad4;
  --sky: #92d7ff;
  --deep: #091a3d;
  --glow: rgba(146, 215, 255, 0.42);
  --shadow: 0 24px 60px rgba(12, 36, 78, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(146, 215, 255, 0.85), transparent 28%),
    radial-gradient(circle at top right, rgba(31, 122, 212, 0.2), transparent 25%),
    linear-gradient(180deg, #ebf8ff 0%, #f7fcff 38%, #eff8fd 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 85%);
}

.site-header,
main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #fff;
}

.brand h1,
.hero h2,
.section-heading h2,
.service-card h3,
.contact-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.brand h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue);
}

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

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.hero,
.services,
.feature-band,
.contact-section,
.cta-band {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 4.5rem 0 3rem;
  align-items: center;
}

.hero-copy h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.96;
  max-width: 10ch;
}

.hero-text,
.section-heading p,
.service-card p,
.feature-copy p,
.quote-card p,
.contact-card p,
.hero-card-panel p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--blue));
  box-shadow: 0 18px 30px rgba(20, 70, 140, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 0 0 8px var(--glow);
}

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

.hero-card-panel,
.service-card,
.quote-card,
.contact-card,
.trust-strip,
.site-header,
.feature-band,
.contact-section,
.services {
  backdrop-filter: blur(18px);
}

.hero-card-panel,
.service-card,
.quote-card,
.contact-card,
.services,
.feature-band,
.contact-section {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-card-panel {
  padding: 1.5rem;
  border-radius: 28px;
}

.accent-panel {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(146, 215, 255, 0.42)),
    var(--surface);
}

.card-label,
.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-card-panel strong {
  display: block;
  margin: 0.5rem 0;
  font-size: 1.4rem;
  line-height: 1.15;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  border-radius: 28px;
  background: rgba(9, 26, 61, 0.9);
  color: #f4fbff;
}

.metric {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.trust-strip .metric-label {
  color: rgba(244, 251, 255, 0.78);
}

.services,
.feature-band,
.contact-section {
  padding: 2.25rem;
  border-radius: 36px;
  margin-bottom: 2rem;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2.25rem;
  margin-bottom: 2rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(146, 215, 255, 0.68), transparent 30%),
    linear-gradient(135deg, rgba(9, 26, 61, 0.97), rgba(16, 63, 124, 0.95));
  color: #f4fbff;
  box-shadow: var(--shadow);
}

.cta-band .eyebrow,
.cta-band p,
.cta-band h2 {
  color: #f4fbff;
}

.cta-band .eyebrow {
  color: var(--sky);
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.service-grid,
.contact-grid,
.review-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.contact-card,
.review-card,
.gallery-card {
  padding: 1.5rem;
  border-radius: 26px;
}

.contact-card a {
  color: var(--deep);
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.area-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 33, 72, 0.1);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(12, 36, 78, 0.08);
}

.review-card,
.gallery-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.review-card p {
  margin-top: 0;
}

.review-card strong {
  color: var(--deep);
  font-family: "Space Grotesk", sans-serif;
}

.gallery-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(31, 122, 212, 0.14), rgba(146, 215, 255, 0.32)),
    var(--surface-strong);
}

.gallery-card span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: var(--deep);
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.quote-card {
  position: relative;
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(146, 215, 255, 0.7), transparent 40%),
    rgba(9, 26, 61, 0.92);
  color: #fff;
}

.quote-card p,
.quote-card span {
  position: relative;
  z-index: 1;
}

.quote-card p {
  color: #fff;
  font-size: 1.15rem;
}

.quote-card span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.quote-mark {
  margin: 0;
  font-size: 5rem;
  line-height: 0.7;
  opacity: 0.25;
}

.highlight-card {
  background:
    linear-gradient(135deg, rgba(31, 122, 212, 0.14), rgba(146, 215, 255, 0.38)),
    var(--surface-strong);
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .feature-layout,
  .service-grid,
  .contact-grid,
  .review-grid,
  .gallery-grid,
  .cta-band,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding-top: 1rem;
  }

  .site-header,
  .brand {
    align-items: flex-start;
  }

  .site-header {
    flex-direction: column;
  }

  .hero {
    padding-top: 3rem;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  main {
    width: min(100% - 1rem, 1120px);
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .services,
  .feature-band,
  .contact-section {
    padding: 1.3rem;
    border-radius: 26px;
  }

  .hero-card-panel,
  .service-card,
  .contact-card,
  .quote-card {
    border-radius: 22px;
  }

  .hero-copy h2 {
    max-width: none;
  }
}
