:root {
  --iw-bg: #f8f7f3;
  --iw-surface: #ffffff;
  --iw-text: #1f2933;
  --iw-muted: #5b6470;
  --iw-cta: #167c80;
  --iw-cta-hover: #0f6266;
  --iw-line: #e5e1da;
  --iw-soft: #f4e8d4;
  --iw-soft-2: #eef4f2;
  --iw-shadow: 0 24px 70px rgba(31, 41, 51, 0.12);
  --iw-radius: 8px;
  --iw-max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(22, 124, 128, 0.34);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.45rem, 9vw, 5.65rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.85rem);
}

h3 {
  font-size: 1.05rem;
}

p {
  margin: 0;
  color: var(--iw-muted);
}

.iw-skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: var(--iw-radius);
  padding: 10px 14px;
  background: var(--iw-text);
  color: #ffffff;
  font-weight: 800;
  transition: transform 180ms ease;
}

.iw-skip-link:focus {
  transform: translateY(0);
}

.iw-header,
.iw-hero-inner,
.iw-section,
.iw-final-inner,
.iw-footer {
  width: min(var(--iw-max), calc(100% - 32px));
  margin: 0 auto;
}

.iw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  border-bottom: 1px solid rgba(31, 41, 51, 0.1);
}

.iw-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.iw-brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(22, 124, 128, 0.24);
  border-radius: var(--iw-radius);
  background: var(--iw-surface);
  color: var(--iw-cta);
  font-size: 0.86rem;
}

.iw-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--iw-radius);
  padding: 0 16px;
  background: var(--iw-cta);
  color: #ffffff;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease;
}

.iw-header-cta:hover {
  transform: translateY(-1px);
  background: var(--iw-cta-hover);
}

.iw-hero {
  padding: 28px 0 72px;
}

.iw-hero-inner {
  display: grid;
  gap: 34px;
  align-items: center;
}

.iw-hero-copy {
  display: grid;
  gap: 22px;
}

.iw-eyebrow {
  margin: 0;
  color: var(--iw-cta);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.iw-hero-lead {
  max-width: 680px;
  font-size: clamp(1.08rem, 4vw, 1.35rem);
  color: #374151;
}

.iw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.iw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--iw-radius);
  padding: 0 24px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.iw-btn-primary {
  background: var(--iw-cta);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(22, 124, 128, 0.18);
}

.iw-btn-primary:hover {
  background: var(--iw-cta-hover);
}

.iw-btn-secondary {
  border-color: var(--iw-line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--iw-text);
}

.iw-btn-secondary:hover {
  border-color: rgba(22, 124, 128, 0.34);
  color: var(--iw-cta-hover);
}

.iw-microcopy {
  max-width: 620px;
  font-size: 0.96rem;
}

.iw-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 225, 218, 0.95);
  border-radius: var(--iw-radius);
  background: var(--iw-surface);
  box-shadow: var(--iw-shadow);
  justify-self: center;
  width: min(100%, 500px);
}

.iw-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  transition: transform 360ms ease;
}

@media (min-width: 920px) and (hover: hover) and (pointer: fine) {
  .iw-hero-media {
    cursor: zoom-in;
  }

  .iw-hero-media:hover img {
    transform: scale(1.04);
  }
}

.iw-section {
  padding: 68px 0;
}

.iw-section-white {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - var(--iw-max)) / 2));
  background: var(--iw-surface);
}

.iw-section-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.iw-section-grid > div:first-child {
  display: grid;
  gap: 18px;
}

.iw-section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

.iw-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--iw-muted);
  list-style: none;
}

.iw-check-list li {
  position: relative;
  padding-left: 28px;
}

.iw-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--iw-cta);
  box-shadow: 0 0 0 5px rgba(22, 124, 128, 0.1);
}

.iw-image-slot {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed rgba(22, 124, 128, 0.32);
  border-radius: var(--iw-radius);
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(22, 124, 128, 0.08), transparent),
    var(--iw-soft-2);
  color: #476268;
  text-align: center;
}

.iw-image-slot-photo {
  overflow: hidden;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  background: var(--iw-surface);
}

.iw-image-slot-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iw-problem-photo {
  box-shadow: 0 16px 34px rgba(31, 41, 51, 0.08);
}

.iw-solution-photo {
  margin: 0;
  aspect-ratio: 43 / 24;
  box-shadow: 0 16px 34px rgba(31, 41, 51, 0.08);
}

.iw-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.iw-footer-links a {
  border: 1px solid var(--iw-line);
  border-radius: 999px;
  padding: 9px 12px;
  background: #ffffff;
  color: #47515d;
  font-size: 0.92rem;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.iw-footer-links a:hover {
  border-color: rgba(22, 124, 128, 0.36);
  background: rgba(22, 124, 128, 0.06);
  color: var(--iw-cta-hover);
}

.iw-final-cta {
  padding: 72px 0;
  background: #193234;
  color: #ffffff;
}

.iw-final-inner {
  display: grid;
  gap: 34px;
  text-align: left;
}

.iw-final-cta .iw-eyebrow {
  color: #9ddfe2;
}

.iw-final-copy {
  display: grid;
  gap: 20px;
  align-content: center;
}

.iw-final-copy h2 {
  max-width: 820px;
}

.iw-final-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
}

.iw-purchase-card {
  display: grid;
  gap: 20px;
  width: min(100%, 430px);
  border: 1px solid #e5e1da;
  border-radius: var(--iw-radius);
  padding: 24px;
  background: #ffffff;
  color: var(--iw-text);
  box-shadow: 0 24px 60px rgba(7, 22, 27, 0.24);
}

.iw-purchase-header {
  display: grid;
  gap: 8px;
}

.iw-purchase-header h3 {
  font-size: clamp(1.22rem, 2vw, 1.48rem);
  line-height: 1.2;
  color: var(--iw-text);
}

.iw-purchase-header p,
.iw-purchase-note {
  color: #52606d;
  font-size: 0.95rem;
}

.iw-purchase-details {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--iw-line);
  border-bottom: 1px solid var(--iw-line);
  padding: 16px 0;
}

.iw-purchase-price {
  color: var(--iw-text);
  font-size: clamp(1.9rem, 8vw, 2.35rem);
  line-height: 1;
  font-weight: 900;
}

.iw-purchase-delivery {
  display: grid;
  gap: 4px;
  color: #52606d;
  font-size: 0.95rem;
}

.iw-purchase-delivery strong {
  color: var(--iw-cta-hover);
  font-weight: 850;
}

.iw-quantity-field {
  display: grid;
  gap: 10px;
}

.iw-quantity-label {
  color: var(--iw-text);
  font-size: 0.9rem;
  font-weight: 820;
}

.iw-quantity-stepper {
  display: grid;
  grid-template-columns: 54px minmax(58px, 1fr) 54px;
  min-height: 54px;
  overflow: hidden;
  border: 1px solid #e5e1da;
  border-radius: var(--iw-radius);
  background: #f8f7f3;
}

.iw-quantity-btn,
.iw-quantity-value {
  display: grid;
  place-items: center;
  min-width: 0;
  border: 0;
  color: var(--iw-text);
  font: inherit;
  font-weight: 850;
}

.iw-quantity-btn {
  min-height: 54px;
  background: #ffffff;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.iw-quantity-btn:hover:not(:disabled) {
  background: rgba(22, 124, 128, 0.08);
  color: var(--iw-cta-hover);
}

.iw-quantity-btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.iw-quantity-value {
  min-height: 54px;
  font-size: 1.12rem;
  background: #f8f7f3;
}

.iw-purchase-submit {
  width: 100%;
  min-height: 58px;
  background: var(--iw-cta);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(22, 124, 128, 0.2);
}

.iw-purchase-submit:hover {
  background: var(--iw-cta-hover);
}

.iw-footer {
  display: grid;
  gap: 22px;
  padding: 34px 0 46px;
}

.iw-footer-company {
  display: grid;
  gap: 4px;
  color: #5d6772;
  font-size: 0.92rem;
  line-height: 1.55;
}

.iw-footer-company a {
  color: #5d6772;
}

.iw-footer-name {
  color: var(--iw-text);
  font-size: 1rem;
  font-weight: 850;
}

@media (min-width: 920px) {
  .iw-hero {
    padding: 54px 0 92px;
  }

  .iw-hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
    gap: 52px;
  }

  .iw-hero-media {
    justify-self: end;
  }

  .iw-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .iw-section-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    gap: 54px;
  }

  .iw-solution-grid {
    grid-template-columns: minmax(0, 1fr) minmax(480px, 520px);
    gap: 72px;
  }

  .iw-solution-grid > div:first-child {
    justify-self: start;
    max-width: 520px;
  }

  .iw-problem-photo {
    justify-self: end;
    width: min(112%, 545px);
    box-shadow: 0 18px 42px rgba(31, 41, 51, 0.1);
  }

  .iw-solution-photo {
    order: -1;
    justify-self: end;
    width: min(100%, 600px);
    box-shadow: 0 18px 42px rgba(31, 41, 51, 0.1);
  }

  .iw-final-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 64px;
    align-items: center;
  }

  .iw-purchase-card {
    justify-self: end;
  }

  .iw-footer {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    align-items: start;
  }

  .iw-footer-links {
    justify-content: flex-end;
  }
}

@media (max-width: 540px) {
  .iw-header {
    width: min(var(--iw-max), calc(100% - 24px));
  }

  .iw-header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.92rem;
  }

  .iw-hero-inner,
  .iw-section,
  .iw-final-inner,
  .iw-footer {
    width: min(var(--iw-max), calc(100% - 24px));
  }

  .iw-section-white {
    width: 100%;
    padding-inline: 12px;
  }

  .iw-btn,
  .iw-actions {
    width: 100%;
  }

  .iw-image-slot {
    min-height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .iw-hero-media img {
    transition: none;
  }

  .iw-hero-media:hover img {
    transform: none;
  }
}
