:root {
  --bg: #dceffd;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #123246;
  --muted: #4d6676;
  --line: rgba(18, 50, 70, 0.12);
  --brand: #75c7d6;
  --brand-deep: #125674;
  --brand-night: #103b56;
  --accent: #2f8a5d;
  --shadow: 0 28px 70px rgba(16, 59, 86, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Outfit", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 26%),
    radial-gradient(circle at top right, rgba(117, 199, 214, 0.35), transparent 34%),
    linear-gradient(180deg, #f8fcff 0%, #d8efff 36%, var(--bg) 68%, #e3f2f2 100%);
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: 14rem;
  height: 18rem;
  background:
    linear-gradient(135deg, transparent 20%, rgba(16, 59, 86, 0.08) 20% 48%, transparent 48%),
    linear-gradient(225deg, transparent 28%, rgba(18, 86, 116, 0.08) 28% 54%, transparent 54%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5));
}

body::after {
  bottom: 0;
  height: 22rem;
  background:
    radial-gradient(circle at 50% 10%, rgba(117, 199, 214, 0.35), transparent 35%),
    linear-gradient(180deg, transparent 0 20%, rgba(16, 59, 86, 0.08) 20% 100%);
}

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

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

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.topbar,
.site-footer,
.service-card,
.callout,
.story-card,
.values-panel,
.contact-card,
.contact-info-panel {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 0 0 26px 26px;
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(21, 35, 34, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(16, 59, 86, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.82);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(117, 199, 214, 0.22);
  color: var(--brand-night);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(117, 199, 214, 0.2);
  color: var(--brand-night);
  font: inherit;
  font-weight: 600;
}

.hero,
.page-hero,
.contact-layout,
.callout {
  animation: rise 700ms ease both;
}

.anchor-section,
.single-section {
  position: relative;
}

.hero {
  display: block;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 35rem;
  margin: 0 0 3rem;
  background:
    linear-gradient(180deg, rgba(8, 39, 59, 0.18), rgba(6, 35, 52, 0.4)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    url("backdrop-image.jpg") center center / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  pointer-events: none;
}

.hero::before {
  height: 100%;
  background:
    linear-gradient(180deg, rgba(13, 51, 75, 0.18) 0%, rgba(13, 51, 75, 0.28) 48%, rgba(10, 32, 26, 0.42) 100%);
}

.hero::after {
  height: 0;
  background: none;
}

.hero-copy,
.page-hero {
  padding: 1rem 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding: 5.5rem 1.5rem 9rem;
  color: #ffffff;
  text-align: center;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 3rem 2.25rem 3.5rem;
  border-radius: 32px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  z-index: -1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 18ch;
  margin: 0 auto;
  margin-bottom: 1.6rem;
  color: #ffffff;
  text-shadow: 0 10px 24px rgba(16, 59, 86, 0.3);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: 1.3rem;
}

.lead,
.hero-copy p,
.page-hero p,
.service-card p,
.story-card p,
.callout p,
.feature-strip p,
.contact-info-panel p,
.check-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-copy .eyebrow,
.hero-copy .lead {
  color: rgba(255, 255, 255, 0.94);
}

.lead {
  max-width: 42ch;
  margin: 1.25rem 0 0;
  margin-inline: auto;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 75, 95, 0.12);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-night), var(--brand-deep));
  color: #fff;
}

.button-secondary {
  border-color: rgba(18, 86, 116, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-night);
}

.callout,
.story-card,
.values-panel,
.contact-card,
.contact-info-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 2rem;
}

.feature-strip article {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.feature-strip h2 {
  font-size: 1.18rem;
  margin-bottom: 0.6rem;
}

.services,
.values-panel,
.contact-layout,
.story-grid {
  margin-top: 2.5rem;
}

.financing-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 2.5rem;
}

.financing-copy,
.heil-badge {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.financing-copy {
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(16, 59, 86, 0.96), rgba(18, 86, 116, 0.92));
}

.financing-copy .eyebrow,
.financing-copy h2,
.financing-copy p {
  color: rgba(255, 255, 255, 0.96);
}

.financing-copy p:last-child {
  margin-bottom: 0;
}

.heil-badge {
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(231, 245, 251, 0.92));
  text-align: center;
}

.heil-label {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.heil-badge img {
  width: min(100%, 18rem);
  border-radius: 18px;
  background: #ffffff;
  padding: 0.85rem;
  box-shadow: 0 12px 24px rgba(16, 59, 86, 0.08);
}

.single-section {
  padding-top: 3.5rem;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.services .section-heading {
  justify-items: center;
  text-align: center;
}

.values-panel .section-heading {
  justify-items: center;
  text-align: center;
}

.service-grid,
.story-grid,
.check-grid {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.story-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(237, 247, 252, 0.86));
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(16, 59, 86, 0.08);
}

.service-card h3,
.story-card h2 {
  margin-bottom: 0.8rem;
}

.callout {
  display: grid;
  grid-template-columns: 1fr 1.1fr auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(16, 59, 86, 0.94), rgba(18, 86, 116, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  color: rgba(255, 255, 255, 0.96);
}

.callout .eyebrow,
.callout h2,
.callout p {
  color: inherit;
}

.page-main {
  padding: 3.5rem 0 1.5rem;
}

.page-hero h1 {
  max-width: 13ch;
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
}

.values-panel {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(16, 59, 86, 0.96), rgba(18, 86, 116, 0.92));
}

.check-grid {
  grid-template-columns: repeat(3, 1fr);
}

.check-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.check-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
}

.review-carousel {
  display: block;
  padding-top: 0.5rem;
}

.review-window {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 1rem;
  transition: transform 220ms ease;
}

.review-card {
  flex: 0 0 calc(50% - 0.5rem);
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(16, 59, 86, 0.08);
}

.review-card h3 {
  margin-bottom: 0.35rem;
  color: var(--text);
}

.review-meta {
  margin: 0 0 0.9rem;
  color: var(--brand-deep);
  font-size: 0.94rem;
  font-weight: 600;
}

.review-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.review-button {
  min-width: 7.5rem;
  padding: 0.8rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.96);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.review-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.values-panel .section-heading h2 {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
}

.contact-layout {
  display: block;
}

.contact-card {
  border-radius: var(--radius-xl);
}

.contact-card {
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(233, 246, 252, 0.88));
}

.contact-card h2 {
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 75, 95, 0.16);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(117, 199, 214, 0.34);
  border-color: var(--brand);
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--brand-deep);
  font-weight: 600;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(16, 59, 86, 0.96), rgba(18, 86, 116, 0.92));
  color: rgba(255, 255, 255, 0.92);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-company {
  font-weight: 600;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-phone {
  font-size: 1.05rem;
}

.footer-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
}

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

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

@media (max-width: 900px) {
  .hero,
  .feature-strip,
  .service-grid,
  .financing-section,
  .callout,
  .story-grid,
  .check-grid,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex-basis: 100%;
  }

  .topbar {
    border-radius: 0 0 24px 24px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 30rem;
  }

  .hero-copy {
    padding: 4rem 1.25rem 7rem;
  }

  .hero-copy::before {
    inset: 2rem 0.75rem 2.25rem;
  }

  .review-card {
    flex-basis: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.5rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    background: rgba(255, 255, 255, 0.74);
  }

  .callout {
    padding: 1.4rem;
  }

  .site-footer {
    display: grid;
    justify-items: center;
  }

  .footer-contact {
    justify-content: center;
  }
}

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

  .hero {
    min-height: 26rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .values-panel,
  .contact-card,
  .contact-info-panel,
  .service-card,
  .story-card {
    padding: 1.2rem;
  }
}
