:root {
  --ink: #071424;
  --muted: #6a7588;
  --line: #dce7f2;
  --blue: #0759d8;
  --blue-2: #087dae;
  --blue-3: #0d3159;
  --cyan: #67d8ff;
  --green: #20c778;
  --white: #ffffff;
  --panel: #f5faff;
  --shadow: 0 26px 80px rgba(6, 35, 69, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 92px);
  border-bottom: 1px solid rgba(220, 231, 242, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 38px rgba(7, 20, 36, 0.1);
}

.brand {
  width: min(220px, 42vw);
}

.brand img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: #243047;
  font-size: 15px;
  font-weight: 900;
}

.nav-links a {
  padding: 10px 0;
}

.header-action,
.button,
.price-card a,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 950;
  white-space: nowrap;
}

.header-action,
.button.primary,
.price-card a {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #064ec4);
  box-shadow: 0 18px 34px rgba(7, 89, 216, 0.26);
}

.header-action {
  padding: 0 20px;
}

.wa-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero-blue {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  min-height: calc(100vh - 76px);
  gap: clamp(32px, 5vw, 82px);
  padding: clamp(46px, 6vw, 82px) clamp(18px, 5vw, 92px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 89, 216, 0.18), transparent 36%),
    linear-gradient(120deg, #08335c 0%, #097fab 52%, #0a6b98 100%);
}

.hero-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.6), transparent 75%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  padding: 0 22px;
}

.button.ghost {
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.hero-screen {
  position: relative;
  z-index: 2;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.14);
  box-shadow: 0 36px 95px rgba(2, 24, 43, 0.34);
}

.hero-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.hero-screen img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.metric-strip div {
  min-height: 104px;
  padding: 22px clamp(18px, 4vw, 40px);
  background: var(--white);
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: var(--blue);
  font-size: 24px;
  font-weight: 1000;
}

.metric-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 750;
}

.section,
.pricing-section,
.contact-section,
.solutions-map,
.page-hero,
.cta-band {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 92px);
}

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

.section-heading {
  max-width: 820px;
}

.section-heading.wide {
  max-width: 980px;
}

.section-heading p,
.page-hero p,
.contact-section p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

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

.feature-card,
.price-card,
.solution-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card {
  min-height: 238px;
  padding: 30px;
  box-shadow: 0 18px 48px rgba(7, 20, 36, 0.07);
}

.feature-card span,
.solution-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 1000;
}

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

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-3), var(--blue));
}

.cta-band .eyebrow {
  color: #bcecff;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(32,199,120,0.13), transparent 42%),
    linear-gradient(120deg, #08335c, #087dae);
}

.page-hero.compact {
  padding-bottom: clamp(42px, 6vw, 72px);
}

.page-hero h1 {
  max-width: 930px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
}

.pricing-section {
  background: var(--panel);
}

.pricing-section.standalone {
  min-height: 56vh;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 258px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(7, 20, 36, 0.09);
}

.price-card small {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 12px;
  font-weight: 1000;
}

.price-card span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.price-card strong {
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1;
}

.price-card a {
  margin-top: auto;
}

.price-card.highlighted {
  border-color: rgba(7, 89, 216, 0.45);
  box-shadow: 0 28px 75px rgba(7, 89, 216, 0.18);
}

.solutions-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  background: var(--panel);
}

.solution-card {
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(7, 20, 36, 0.08);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #d7ecfb;
}

.solution-card div {
  padding: 24px;
}

.solution-card h2 {
  margin-top: 16px;
  font-size: clamp(24px, 3vw, 34px);
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: linear-gradient(135deg, #051f3d, #0759d8);
}

.contact-section .eyebrow {
  color: #bcecff;
}

.contact-section p {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
}

.contact-button {
  min-height: 58px;
  padding: 0 26px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 40px rgba(32, 199, 120, 0.28);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 92px);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero-blue {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-grid,
  .pricing-grid,
  .metric-strip,
  .solutions-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
  }

  .brand {
    width: 184px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .nav-links {
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    font-size: 14px;
  }

  .hero-actions,
  .cta-band,
  .contact-section,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .contact-button {
    width: 100%;
  }

  .feature-grid,
  .pricing-grid,
  .metric-strip,
  .solutions-map {
    grid-template-columns: 1fr;
  }

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