:root {
  --bg: #eef5fb;
  --bg-strong: #d6e7f4;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #173247;
  --muted: #5f7485;
  --line: rgba(23, 50, 71, 0.12);
  --primary: #0a77a7;
  --primary-dark: #085978;
  --accent: #ff8a2a;
  --shadow: 0 24px 64px rgba(20, 49, 69, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 138, 42, 0.18), transparent 24%),
    radial-gradient(circle at right top, rgba(10, 119, 167, 0.2), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 100%);
}

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

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

.site-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 20px auto;
}

.topbar,
.hero,
.section,
.footer,
.trust-strip {
  backdrop-filter: blur(12px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  animation: rise-in 500ms ease both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong,
.nav a,
h1,
h2,
h3,
.button {
  font-family: "Space Grotesk", sans-serif;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  margin-top: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(223, 239, 248, 0.76)),
    var(--surface);
  box-shadow: var(--shadow);
  animation: rise-in 700ms ease both;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.95;
}

.lede,
.service-card p,
.benefit p,
.request-copy p,
.contact-list p,
.gallery-card figcaption,
.form-note,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.lede {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ffaf3f);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 138, 42, 0.28);
}

.button-secondary {
  border: 1px solid rgba(10, 119, 167, 0.16);
  background: rgba(255, 255, 255, 0.66);
  color: var(--primary-dark);
}

.button-wide {
  width: 100%;
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: middle;
}

.hero-media {
  display: grid;
  gap: 18px;
}

.hero-media img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media > img {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-card,
.request-form,
.contact-list,
.benefits-panel,
.service-card,
.gallery-card,
.trust-strip,
.section,
.footer {
  border: 1px solid var(--line);
}

.hero-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(9, 82, 112, 0.96), rgba(10, 119, 167, 0.9)),
    var(--primary);
  color: #fff;
}

.stat {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

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

.stat-label {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.84);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.trust-strip p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.section {
  margin-top: 18px;
  padding: 30px;
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
  animation: rise-in 820ms ease both;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
}

.service-card h3,
.benefit h3,
.gallery-card figcaption,
.request-form span {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.accent-card {
  background: linear-gradient(180deg, rgba(255, 239, 223, 0.95), rgba(255, 255, 255, 0.88));
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.benefits-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 42, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.78);
}

.benefit {
  padding: 18px 4px;
  border-bottom: 1px solid rgba(23, 50, 71, 0.08);
}

.benefit:last-child {
  border-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.gallery-card img {
  aspect-ratio: 4 / 3;
}

.gallery-card figcaption {
  padding: 16px 18px 18px;
  color: var(--text);
}

.request-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-list {
  margin-top: 22px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.contact-list p {
  margin: 0 0 10px;
}

.contact-list p:last-child {
  margin-bottom: 0;
}

.contact-list a {
  color: var(--primary-dark);
  font-weight: 700;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: var(--surface-strong);
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(23, 50, 71, 0.12);
  border-radius: 16px;
  background: #f9fcff;
  color: var(--text);
  font: inherit;
}

.request-form textarea {
  resize: vertical;
  min-height: 140px;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(10, 119, 167, 0.18);
  border-color: rgba(10, 119, 167, 0.28);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 32px;
  padding: 18px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.footer p {
  margin: 0;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .request-section,
  .gallery-grid,
  .services-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

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

  h1,
  h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1200px);
  }

  .topbar,
  .hero,
  .section,
  .footer,
  .trust-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }
}
