:root {
  --bg: #e8edf7;
  --paper: rgba(255, 255, 255, 0.82);
  --card: rgba(255, 255, 255, 0.9);
  --card-strong: #ffffff;
  --ink: #15244d;
  --ink-soft: #46577f;
  --line: rgba(19, 40, 93, 0.12);
  --accent: #1d6cff;
  --accent-strong: #0e4fca;
  --accent-soft: #dcebff;
  --navy: #0f2252;
  --navy-2: #132d6c;
  --shadow-lg: 0 26px 60px rgba(19, 35, 78, 0.18);
  --shadow-md: 0 18px 34px rgba(19, 35, 78, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(76, 125, 245, 0.22), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.85), transparent 22%),
    linear-gradient(180deg, #f4f6fb 0%, var(--bg) 44%, #dce4f3 100%);
  min-height: 100vh;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 32px auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(245, 248, 255, 0.58));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  overflow: clip;
}

.site-header,
.site-footer,
section {
  padding-inline: clamp(20px, 3vw, 40px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 39, 91, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d8cff, #0d4fc7);
  box-shadow: 0 10px 24px rgba(20, 87, 216, 0.28);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.brand-mark::before {
  width: 16px;
  height: 16px;
  background: white;
}

.brand-mark::after {
  width: 9px;
  height: 9px;
  background: #0d4fc7;
}

.brand-dot {
  position: absolute;
  right: -4px;
  bottom: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8fd4ff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--ink);
}

.header-phone {
  padding: 14px 18px;
  border: 1px solid rgba(29, 108, 255, 0.18);
  border-radius: 16px;
  background: rgba(242, 247, 255, 0.95);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 3px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 32px;
  padding-top: clamp(30px, 5vw, 52px);
  padding-bottom: 30px;
  background:
    linear-gradient(118deg, rgba(14, 30, 71, 0.98) 0%, rgba(16, 41, 103, 0.94) 47%, rgba(219, 228, 246, 0.16) 100%),
    radial-gradient(circle at top right, rgba(131, 178, 255, 0.4), transparent 24%);
  color: white;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 82px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-right: 8px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ec2ff;
}

.hero h1,
.section-head h2,
.cta h2 {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #3290ff 0%, #1762ec 100%);
  box-shadow: 0 14px 28px rgba(31, 102, 255, 0.26);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #74c8ff;
  box-shadow: 0 0 0 6px rgba(116, 200, 255, 0.16);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metrics strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-content: start;
}

.visual-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.autoclave-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(229, 236, 250, 0.9));
}

.ice-card {
  width: min(82%, 420px);
  justify-self: end;
  background: linear-gradient(145deg, rgba(12, 26, 68, 0.95), rgba(25, 54, 122, 0.88));
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.visual-media {
  position: relative;
  overflow: hidden;
}

.visual-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(8, 17, 42, 0), rgba(8, 17, 42, 0.18));
}

.visual-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-media-main {
  aspect-ratio: 16 / 10;
}

.visual-media-secondary {
  aspect-ratio: 4 / 3;
}

.visual-caption {
  padding: 0 26px 24px;
  color: var(--ink);
}

.visual-caption span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.visual-caption strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
}

.ice-card .visual-caption {
  color: white;
}

.ice-card .visual-caption span {
  color: rgba(255, 255, 255, 0.7);
}

.floating-badge {
  max-width: none;
  min-height: 100%;
  padding: 16px 18px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.badge-dark {
  background: rgba(10, 20, 50, 0.9);
  color: white;
}

.badge-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.floating-badge strong,
.floating-badge span {
  display: block;
}

.floating-badge span {
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: inherit;
  opacity: 0.8;
}

section {
  padding-top: 56px;
  padding-bottom: 26px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2,
.cta h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: var(--navy);
}

.section-head .eyebrow,
.cta .eyebrow {
  color: #4c7adb;
  margin-bottom: 10px;
}

.brand-strip {
  padding-top: 30px;
}

.brand-groups {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 20px;
}

.brand-group {
  padding: 24px;
  border-radius: 26px;
  background: var(--card);
  border: 1px solid rgba(17, 39, 91, 0.08);
  box-shadow: var(--shadow-md);
}

.brand-group h3 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: #f3f7ff;
  color: var(--navy);
  font-weight: 700;
  border: 1px solid rgba(29, 108, 255, 0.1);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.service-card,
.review-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid rgba(17, 39, 91, 0.08);
  box-shadow: var(--shadow-md);
}

.service-card {
  overflow: hidden;
}

.service-media {
  margin: -24px -24px 18px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe7f7;
}

.service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #f9fcff, #dcebff);
  color: #1758d9;
  font-size: 1.5rem;
  font-weight: 800;
}

.info-card h3,
.service-card h3,
.review-card strong,
.timeline h3,
.brand-group h3 {
  color: var(--navy);
}

.info-card h3,
.service-card h3,
.timeline h3 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
}

.info-card p,
.service-card p,
.review-card p,
.timeline p,
.split-banner p,
.cta-copy p,
.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.process {
  padding-bottom: 40px;
}

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

.timeline article {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(230, 238, 251, 0.95));
  border: 1px solid rgba(17, 39, 91, 0.08);
  box-shadow: var(--shadow-md);
}

.timeline span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #1d6cff, #104ec2);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.split-banner,
.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
  margin: 26px 40px 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(100, 170, 255, 0.36), transparent 28%),
    linear-gradient(135deg, #0e234f, #12346f 58%, #1d5edf 100%);
  box-shadow: var(--shadow-lg);
}

.split-banner h2,
.cta h2,
.split-banner p,
.cta-copy p,
.cta-copy .eyebrow {
  color: white;
}

.split-banner h2,
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.banner-copy,
.cta-copy {
  align-self: center;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  font-weight: 700;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 88px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  flex: none;
  box-shadow: 0 14px 26px rgba(18, 36, 77, 0.12);
}

.review-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(8, 17, 42, 0.26);
  color: white;
  padding: 15px 16px;
  outline: none;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.request-form select {
  appearance: none;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: rgba(143, 212, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(143, 212, 255, 0.12);
}

.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}

.form-actions p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-actions strong {
  color: white;
}

.honey-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.banner-list {
  display: grid;
  gap: 14px;
}

.banner-list div {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.banner-list strong {
  display: block;
  margin-bottom: 8px;
  color: white;
}

.review-card .stars {
  color: #f7b81e;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.cta {
  margin-bottom: 40px;
}

.cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 0;
  padding-bottom: 26px;
  font-size: 0.94rem;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .ice-card {
    width: min(74%, 420px);
  }

  .brand-groups,
  .split-banner,
  .cta,
  .three-up,
  .four-up,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--max));
    margin: 12px auto;
    border-radius: 28px;
  }

  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(17, 39, 91, 0.08);
  }

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

  .site-nav a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .header-phone {
    text-align: center;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.5rem, 11vw, 4.2rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-metrics,
  .hero-badges,
  .brand-groups,
  .split-banner,
  .cta,
  .request-form,
  .three-up,
  .four-up,
  .timeline {
    grid-template-columns: 1fr;
  }

  .ice-card {
    width: min(100%, 420px);
    justify-self: stretch;
  }

  .floating-badge {
    padding: 14px 16px;
  }

  .section-head {
    display: block;
  }

  .section-head h2 {
    max-width: 12ch;
  }

  .split-banner,
  .cta {
    margin-inline: 20px;
  }

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

@media (max-width: 540px) {
  .page-shell {
    border-radius: 24px;
  }

  .site-header,
  .site-footer,
  section {
    padding-inline: 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-text {
    max-width: 154px;
    line-height: 1.05;
  }

  .hero {
    gap: 18px;
    padding-bottom: 22px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-points {
    display: grid;
    gap: 12px;
  }

  .ice-card {
    width: 100%;
  }

  .visual-caption {
    padding: 0 18px 18px;
  }

  .info-card,
  .service-card,
  .review-card,
  .timeline article,
  .brand-group {
    padding: 20px;
    border-radius: 20px;
  }

  .split-banner,
  .cta {
    margin-inline: 16px;
    padding: 22px 18px;
    border-radius: 24px;
  }
}
