:root {
  --bg: #f4f8ff;
  --surface: rgba(255, 255, 255, .88);
  --text: #08111f;
  --muted: #647083;
  --line: rgba(15, 31, 54, .12);
  --blue: #115cff;
  --cyan: #00d4ff;
  --green: #25d366;
  --dark: #06111f;
  --shadow: 0 26px 80px rgba(7, 17, 31, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body.site-page {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(0, 212, 255, .16), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(17, 92, 255, .14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 44%, #f8fbff 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

body.site-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 92, 255, .052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 92, 255, .052) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(0, 9, 18, .98), rgba(5, 30, 61, .98) 58%, rgba(0, 12, 26, .96)),
    #020b16;
  box-shadow: 0 16px 42px rgba(1, 8, 18, .28);
}

.site-header-inner {
  width: min(1180px, calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  height: 100%;
  min-width: 190px;
  overflow: hidden;
}

.site-brand img {
  width: 205px;
  height: auto;
  display: block;
  margin-left: -8px;
  filter: drop-shadow(0 8px 18px rgba(0, 212, 255, .2));
  mix-blend-mode: screen;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav .nav-login {
  color: #fff;
  background: linear-gradient(135deg, rgba(17, 92, 255, .78), rgba(0, 212, 255, .58));
}

.hero-section,
.section,
.contact-section,
.site-footer {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-section {
  width: 100%;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .9fr);
  gap: 46px;
  align-items: center;
  padding: 142px max(40px, calc((100vw - 1180px) / 2)) 96px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(1, 12, 25, .94), rgba(1, 24, 48, .84) 50%, rgba(1, 17, 34, .72)),
    radial-gradient(circle at 74% 26%, rgba(0, 212, 255, .34), transparent 26%),
    linear-gradient(135deg, #03101e, #062d58 62%, #061524);
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(to bottom, transparent, rgba(244, 248, 255, .96));
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  color: var(--cyan);
}

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

h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: .97;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

h3 {
  margin: 0;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 600px;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--line);
  cursor: pointer;
}

.btn.primary {
  color: #fff;
  border-color: rgba(17, 92, 255, .45);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 34px rgba(17, 92, 255, .26);
}

.btn.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 26px rgba(7, 17, 31, .08);
}

.hero-visual {
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  overflow: hidden;
  background: #07111f;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
  opacity: .92;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 92, 255, .08), rgba(0, 212, 255, .08));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: contain;
  background: #07111f;
}

.metrics-strip {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 40px));
  margin: -54px auto 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 17, 31, .16);
}

.metrics-strip article {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metrics-strip article:last-child {
  border-right: 0;
}

.metrics-strip strong {
  display: block;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 52px);
  line-height: .9;
}

.metrics-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.section {
  padding: 82px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.solution-card {
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 38px rgba(7, 17, 31, .08);
  backdrop-filter: blur(12px);
}

.solution-card-img {
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(7, 17, 31, .12);
}

.solution-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}

.solution-card h3 {
  font-size: 20px;
}

.solution-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  border-top: 1px solid rgba(15, 31, 54, .1);
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 14px 34px rgba(7, 17, 31, .06);
}

.service-list p,
.contact-section p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  margin-bottom: 32px;
  padding: 34px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0, rgba(0, 212, 255, .25), transparent 35%),
    linear-gradient(135deg, #07111f, #092a63 58%, #064f72);
  box-shadow: var(--shadow);
}

.contact-section .eyebrow,
.contact-section p {
  color: #c4d4e8;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #052814;
  background: var(--green);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
}

.whatsapp-link svg,
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #d9e6f7;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  font: inherit;
  padding: 12px;
  outline: none;
}

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

.form-alert {
  padding: 11px 12px;
  border-radius: 8px;
  font-weight: 800;
}

.form-alert.success {
  color: #05351c;
  background: #d9fbe7;
}

.form-alert.error {
  color: #4a0b0b;
  background: #ffe1e1;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #052814;
  background: var(--green);
  box-shadow: 0 16px 40px rgba(37, 211, 102, .36);
}

.site-footer {
  padding: 22px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .site-header-inner {
    align-items: flex-start;
    height: auto;
    min-height: 78px;
    padding: 10px 0;
    flex-direction: column;
  }

  .site-brand {
    height: 58px;
  }

  .site-brand img {
    width: 172px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-section,
  .section-heading,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding: 174px 20px 92px;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header-inner,
  .section,
  .contact-section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 280px;
  }

  .metrics-strip {
    grid-template-columns: 1fr;
    margin-top: -42px;
  }

  .metrics-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-strip article:last-child {
    border-bottom: 0;
  }

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

  .contact-section {
    padding: 22px;
  }

  .contact-form {
    padding: 14px;
  }

  .site-footer {
    flex-direction: column;
  }
}
