:root {
  --ink: #0d1821;
  --muted: #506171;
  --line: #d9e4e7;
  --paper: #f6fbfa;
  --white: #ffffff;
  --aqua: #55c3d6;
  --teal: #007f73;
  --green: #98c943;
  --blue: #2456a6;
  --shadow: 0 18px 40px rgba(13, 24, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 228, 231, 0.78);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 126px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 3vw, 34px);
  color: #253849;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--teal);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/pexels-manuel-geissinger-325229-2048x717.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 30, 0.88), rgba(8, 27, 34, 0.62) 53%, rgba(5, 15, 24, 0.28)),
    linear-gradient(0deg, rgba(0, 127, 115, 0.24), rgba(36, 86, 166, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  padding: 150px clamp(22px, 6vw, 72px) 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #c9f0e0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 710px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--green);
  color: #12220e;
  box-shadow: 0 16px 32px rgba(152, 201, 67, 0.26);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.button.outline {
  border: 1px solid rgba(0, 127, 115, 0.34);
  color: var(--teal);
  background: var(--white);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(135px, 1fr));
  gap: 12px;
  max-width: 900px;
}

.hero-points span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-left: 3px solid var(--aqua);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.band {
  background: var(--paper);
}

.section,
.band {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.intro {
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.intro-grid p:last-child {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.coverage-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading.compact {
  max-width: 640px;
}

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

.service-card {
  min-height: 282px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(13, 24, 33, 0.05);
}

.service-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  background: rgba(85, 195, 214, 0.18);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.switch {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.switch-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.98fr) minmax(320px, 1.02fr);
  gap: clamp(30px, 7vw, 84px);
  align-items: start;
}

.switch-grid p {
  color: var(--muted);
  font-size: 1.04rem;
}

.switch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.switch-benefits {
  display: grid;
  gap: 14px;
}

.switch-benefits div {
  padding: 20px;
  border: 1px solid rgba(0, 127, 115, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(13, 24, 33, 0.05);
}

.switch-benefits strong,
.switch-benefits span {
  display: block;
}

.switch-benefits strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.switch-benefits span {
  color: var(--muted);
}

.hero-landing h1 {
  max-width: 880px;
}

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

.note {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note-box {
  padding: 28px;
  border-left: 4px solid var(--aqua);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(13, 24, 33, 0.05);
}

.note-box p:last-of-type {
  margin-bottom: 12px;
  color: var(--muted);
}

.note-box a {
  color: var(--teal);
  font-weight: 900;
}

.shredding {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shredding-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.shredding-grid p {
  color: var(--muted);
  font-size: 1.04rem;
}

.shredding-points {
  display: grid;
  gap: 14px;
}

.shredding-points div {
  padding: 20px;
  border: 1px solid rgba(85, 195, 214, 0.34);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(13, 24, 33, 0.05);
}

.shredding-points strong,
.shredding-points span {
  display: block;
}

.shredding-points strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.shredding-points span {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.proof-grid img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.proof-list div {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(13, 24, 33, 0.05);
}

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

.proof-list strong {
  margin-bottom: 4px;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}

.timeline-step {
  position: relative;
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f9fcfc);
}

.timeline-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.coverage {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.area-list span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-left: 4px solid var(--aqua);
  background: var(--white);
  color: #263846;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(13, 24, 33, 0.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: #263846;
  font-weight: 800;
}

.contact-details span {
  color: var(--muted);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #263846;
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c6d7dc;
  border-radius: 6px;
  padding: 11px 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(85, 195, 214, 0.26);
  border-color: var(--teal);
}

.form-button {
  border: 0;
  cursor: pointer;
}

.site-footer {
  padding: 46px 0;
  background: #0f1e24;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 36px;
}

.site-footer img {
  width: 122px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: var(--white);
}

.site-footer a,
.site-footer span {
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--aqua);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 112px;
  }

  .nav-links {
    display: none;
  }

  .hero-points,
  .service-grid,
  .value-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid,
  .switch-grid,
  .shredding-grid,
  .coverage-grid,
  .contact-grid,
  .intro-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid p:last-child {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 118px 20px 50px;
  }

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

  .hero-points,
  .service-grid,
  .value-grid,
  .timeline,
  .area-list {
    grid-template-columns: 1fr;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .section,
  .band {
    padding: 58px 0;
  }

  .service-card,
  .timeline-step {
    min-height: auto;
  }

  .service-number,
  .timeline-step span {
    margin-bottom: 28px;
  }

  .contact-form {
    padding: 18px;
  }

  .switch-actions {
    width: 100%;
  }
}
