:root {
  --navy-950: #061521;
  --navy-900: #082233;
  --navy-800: #0d344b;
  --green-600: #21a957;
  --green-500: #34c86b;
  --cyan-500: #159bd7;
  --amber-400: #f2b84b;
  --coral-500: #e86f5b;
  --ink: #142331;
  --muted: #637485;
  --line: #dce6ef;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 21, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea {
  font: inherit;
}

body.modal-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 230, 239, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--cyan-500));
  border-radius: 12px;
  font-size: 0.82rem;
  box-shadow: 0 10px 24px rgba(33, 169, 87, 0.26);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #405162;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a,
.nav-button {
  padding: 10px 0;
}

.nav-button {
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: inherit;
}

.main-nav a:hover,
.nav-button:hover,
.nav-button:focus-visible {
  color: var(--green-600);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 4vw, 62px);
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 6vw, 82px) clamp(20px, 5vw, 72px) clamp(24px, 4vw, 52px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(244, 248, 251, 0.92), rgba(255, 255, 255, 0.8) 48%, rgba(232, 245, 238, 0.88)),
    var(--white);
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-600);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--navy-950);
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy-950);
  font-size: 1.16rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: #405162;
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.primary-button,
.secondary-button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.primary-button {
  padding: 14px 22px;
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 16px 34px rgba(33, 169, 87, 0.24);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  background: #178d48;
  box-shadow: 0 18px 38px rgba(33, 169, 87, 0.34);
}

.secondary-button {
  padding: 13px 20px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  color: var(--green-600);
  border-color: rgba(33, 169, 87, 0.34);
  transform: translateY(-2px);
}

.contact-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-email {
  color: var(--navy-900);
  font-weight: 900;
  word-break: break-word;
}

.copy-button {
  min-height: 38px;
  margin-left: auto;
  padding: 10px 14px;
  color: var(--green-600);
  background: #edf9f1;
}

.copy-button:hover,
.copy-button:focus-visible {
  background: #dcf4e5;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.contact-modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 33, 0.62);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  border: 1px solid rgba(220, 230, 239, 0.92);
  border-radius: 14px;
  box-shadow: 0 34px 90px rgba(6, 21, 33, 0.34);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-900);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--green-600);
  background: #edf9f1;
}

.modal-dialog h2 {
  max-width: 560px;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.modal-intro {
  max-width: 610px;
  margin-bottom: 22px;
  color: #405162;
  font-size: 1.02rem;
}

.contact-info {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 18px;
  background: linear-gradient(180deg, #f7fafc, #ffffff);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.modal-copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.modal-copy-row .copy-button {
  min-height: 42px;
  margin-left: 0;
}

.modal-mail-button {
  min-height: 42px;
  padding: 10px 14px;
  box-shadow: none;
}

.contact-guidance {
  margin-bottom: 22px;
}

.contact-guidance h3 {
  margin-bottom: 12px;
}

.contact-guidance ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.modal-steps div {
  padding: 16px;
  background: #f4f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.modal-steps strong,
.modal-steps span {
  display: block;
}

.modal-steps strong {
  margin-bottom: 6px;
  color: var(--navy-950);
}

.modal-steps span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-stats div {
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 230, 239, 0.92);
  border-radius: 8px;
}

.hero-stats dt {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media img {
  display: block;
  width: min(760px, 100%);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(220, 230, 239, 0.98);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  right: -4%;
  bottom: -7%;
  width: 48%;
  height: 22%;
  content: "";
  background: linear-gradient(90deg, rgba(242, 184, 75, 0.26), rgba(232, 111, 91, 0.2));
  border-radius: 18px;
  filter: blur(24px);
  z-index: -1;
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.38fr);
  gap: 24px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card {
  min-height: 280px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(6, 21, 33, 0.06);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--green-600);
  background: #edf9f1;
  border-radius: 8px;
  font-weight: 900;
}

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

.delivery-section {
  background: var(--soft);
}

.delivery-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(26px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 34, 51, 0.96), rgba(13, 52, 75, 0.96)),
    var(--navy-900);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.delivery-panel h2 {
  color: var(--white);
}

.delivery-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

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

.delivery-list div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

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

.delivery-list strong {
  margin-bottom: 5px;
  color: var(--white);
}

.delivery-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.workflow-section {
  background: var(--white);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.workflow li {
  min-height: 190px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: step;
}

.workflow li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--white);
  content: counter(step);
  background: var(--navy-900);
  border-radius: 8px;
  font-weight: 900;
}

.workflow span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 1.14rem;
  font-weight: 900;
}

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

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin: 0 clamp(20px, 5vw, 72px) clamp(48px, 6vw, 80px);
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(33, 169, 87, 0.94), rgba(21, 155, 215, 0.9)),
    var(--green-600);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(21, 155, 215, 0.18);
}

.cta-section h2 {
  max-width: 830px;
  margin-bottom: 0;
  color: var(--white);
}

.cta-section .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.light-button {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(6, 21, 33, 0.14);
}

.light-button:hover,
.light-button:focus-visible {
  color: var(--navy-900);
  background: #f4f8fb;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: #587082;
  background: #f7fafc;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--navy-900);
  font-weight: 800;
}

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

  .hero-media {
    order: -1;
  }

  .hero-media img {
    width: 100%;
    max-height: 470px;
  }

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

@media (max-width: 780px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: auto;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-stats,
  .section-heading,
  .delivery-panel,
  .workflow,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .copy-button {
    margin-left: 0;
  }

  .modal-steps {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .main-nav {
    gap: 10px;
    font-size: 0.88rem;
  }

  .hero-actions,
  .primary-button,
  .secondary-button,
  .modal-mail-button,
  .modal-copy-row .copy-button {
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    padding-inline: 14px;
  }

  .hero-stats div,
  .feature-card,
  .workflow li {
    padding: 18px;
  }

  .delivery-panel,
  .cta-section,
  .modal-dialog {
    border-radius: 8px;
  }
}
