@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  font-synthesis-weight: none;
  --cyan: #54ddeb;
  --aqua: #24c8e8;
  --blue: #004bb8;
  --navy: #07111f;
  --ink: #102033;
  --muted: #607085;
  --line: #dbeaf3;
  --soft: #f4fbff;
  --white: #ffffff;
  --green: #22c55e;
  --amber: #f59e0b;
  --shadow: 0 22px 70px rgba(0, 47, 110, .14);
}

* { box-sizing: border-box; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(219, 234, 243, .9);
  backdrop-filter: blur(18px);
}

.brand img { width: 116px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-group { position: relative; }

.nav-trigger,
.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-trigger {
  padding: 12px 10px;
  border-radius: 8px;
}

.nav-trigger:hover { background: var(--soft); color: var(--blue); }

.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 245px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .18s ease;
}

.nav-group:hover .mega-panel,
.nav-group:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-group-industries .mega-panel {
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  min-width: 470px;
}

.mega-panel a {
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}

.mega-panel a:hover { background: var(--soft); color: var(--blue); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 15px 38px rgba(0, 75, 184, .2);
}

.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 42px; padding: 10px 16px; white-space: nowrap; }
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--line); box-shadow: none; }
.btn-light { background: var(--white); color: var(--blue); box-shadow: none; }

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 18% 20%, rgba(84, 221, 235, .22), transparent 28%),
    linear-gradient(135deg, #f8fdff 0%, #eef9ff 44%, #ffffff 100%);
  overflow: hidden;
}

.hero-copy { max-width: 720px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; }
h1 { font-size: clamp(34px, 4.6vw, 58px); color: var(--navy); font-weight: 600; }
h2 { font-size: clamp(28px, 3.7vw, 46px); color: var(--navy); font-weight: 500; }
h3 { font-size: 20px; color: var(--navy); font-weight: 500; line-height: 1.18; }
p { color: var(--muted); }

.hero-copy p {
  max-width: 620px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

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

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
}

.video-link span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 75, 184, .16);
  position: relative;
}

.video-link span::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 11px;
  border-left: 12px solid var(--blue);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.hero-visual {
  position: relative;
  min-height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, .18), transparent);
  pointer-events: none;
}

.hero-visual img {
  width: calc(100% + 56px);
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.trust-strip,
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip div,
.hero-stats div {
  padding: 26px 22px;
  background: var(--white);
  text-align: center;
  font-weight: 650;
  font-size: 15px;
  color: var(--navy);
}

.hero-stats strong {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.section {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 17, 31, .05);
}

.info-card.has-image {
  padding: 0;
}

.card-body {
  padding: 0;
}

.has-image .card-body {
  padding: 0 28px 28px;
}

.card-image {
  display: block;
  width: 100%;
  height: 190px;
  margin: 0 0 22px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}

.info-card:hover {
  border-color: rgba(36, 200, 232, .62);
  transform: translateY(-2px);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 500;
  font-size: 14px;
}

.card-icon-img {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: var(--soft);
}

.split-section > div:first-child p { font-size: 18px; }

.signal-panel {
  display: grid;
  gap: 13px;
  padding: 22px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.signal-row {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(84, 221, 235, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.signal-row span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(34, 197, 94, .13);
  flex: 0 0 auto;
}

.signal-row p { margin: 0; color: #d9f7ff; font-weight: 620; font-size: 15px; }

.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.compare-card {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.compare-card strong { color: var(--navy); font-size: 21px; font-weight: 500; }
.compare-card ul { margin: 20px 0 0; padding-left: 20px; color: var(--muted); }
.compare-card li { margin: 10px 0; }

.compare-card:first-child {
  background: linear-gradient(180deg, #ffffff, #fff8f1);
}

.compare-card:last-child {
  background: linear-gradient(180deg, #ffffff, #effcff);
  border-color: rgba(36, 200, 232, .55);
}

.impact-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(84, 221, 235, .16), transparent 27%),
    var(--navy);
}

.impact-section h2,
.impact-section .eyebrow { color: var(--white); }

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

.impact-grid article {
  min-height: 172px;
  padding: 24px;
  border: 1px solid rgba(84, 221, 235, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.impact-grid strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1;
}

.impact-grid span {
  display: block;
  margin-top: 14px;
  color: #d9f7ff;
  font-weight: 620;
  font-size: 15px;
  line-height: 1.38;
}

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

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

.testimonial-grid figure {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 17, 31, .05);
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.rating-row span {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 0;
}

.rating-row strong {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 32px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 680;
  line-height: 1.35;
}

.testimonial-grid figcaption {
  display: grid;
  gap: 3px;
  margin-top: 18px;
}

.testimonial-grid figcaption strong {
  color: var(--blue);
  font-weight: 500;
  font-size: 14px;
}

.testimonial-grid figcaption span {
  color: var(--muted);
  font-size: 14px;
}

.industries-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.industry-cloud {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 28px rgba(7, 17, 31, .04);
  transition: .18s ease;
}

.industry-pill:hover {
  border-color: rgba(36, 200, 232, .65);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 75, 184, .09);
}

.industry-pill span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(84, 221, 235, .18), rgba(0, 75, 184, .12));
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.industry-pill h3 {
  font-size: 15px;
  line-height: 1.25;
}

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

.process-step {
  padding: 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
  border: 1px solid var(--line);
}

.step-number {
  color: var(--blue);
  font-size: 28px;
  font-weight: 600;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: clamp(30px, 5vw, 76px);
  padding: clamp(32px, 5vw, 56px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 10%, rgba(84, 221, 235, .36), transparent 26%),
    linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
}

.cta-band h2 { color: var(--white); max-width: 760px; }
.cta-band .eyebrow { color: var(--cyan); }

.site-footer {
  padding: 54px clamp(18px, 5vw, 76px) 26px;
  background: var(--navy);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
}

.footer-logo { width: 138px; margin-bottom: 18px; }
.site-footer p { color: #bed4e2; max-width: 410px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-grid h3 { color: var(--white); font-size: 16px; margin-bottom: 12px; }
.footer-grid a { display: block; color: #bed4e2; margin: 8px 0; font-size: 15px; line-height: 1.35; }
.footer-grid a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #9fb6c7;
  font-size: 14px;
}

.form-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label { display: grid; gap: 7px; color: var(--ink); font-weight: 500; }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
.full { grid-column: 1 / -1; }

@media (max-width: 1020px) {
  .menu-toggle { display: inline-flex; }
  .site-header { flex-wrap: wrap; }
  .site-nav {
    display: none;
    flex-basis: 100%;
    order: 3;
    align-items: stretch;
    flex-direction: column;
  }
  .site-nav.is-open { display: flex; }
  .nav-trigger { width: 100%; text-align: left; }
  .mega-panel {
    position: static;
    display: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-group-industries .mega-panel {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .nav-group:focus-within .mega-panel,
  .nav-group:hover .mega-panel { display: grid; }
  .page-hero,
  .split-section,
  .footer-top { grid-template-columns: 1fr; }
  .page-hero { min-height: auto; }
  .hero-visual, .hero-visual img { min-height: 330px; }
  .card-grid, .process, .impact-grid, .testimonial-grid, .industry-cloud { grid-template-columns: repeat(2, 1fr); }
  .trust-strip, .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .brand img { width: 108px; }
  .site-header .btn-small { display: none; }
  .card-grid, .process, .comparison, .footer-grid, .form-grid, .impact-grid, .testimonial-grid, .industry-cloud { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; margin-inline: 18px; }
  .footer-bottom { flex-direction: column; }
}
