:root {
  --ink: #07101f;
  --muted: #5d697b;
  --blue: #006fe6;
  --blue-deep: #003996;
  --cyan: #2fb8ff;
  --line: #d8e0ec;
  --paper: #ffffff;
  --soft: #f3f7fc;
  --night: #061326;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(3, 15, 35, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 12px clamp(20px, 5vw, 72px);
  color: #fff;
  background: rgba(3, 12, 26, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: clamp(130px, 14vw, 185px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .84rem;
}

.site-nav a {
  color: rgba(255, 255, 255, .82);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  min-height: calc(100vh - 86px);
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 90px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, .98) 0 48%, rgba(255, 255, 255, 0) 48.2%),
    radial-gradient(circle at 72% 25%, rgba(38, 166, 255, .5), transparent 22rem),
    linear-gradient(120deg, #061326, #031020 58%, #061b3a);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent 0 38%, #000 56%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-bg span {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #46c7ff;
  box-shadow: 0 0 0 5px rgba(47, 184, 255, .14), 0 0 32px #2fb8ff;
}

.hero-bg span:nth-child(1) { left: 57%; top: 23%; }
.hero-bg span:nth-child(2) { left: 72%; top: 33%; }
.hero-bg span:nth-child(3) { left: 83%; top: 18%; }
.hero-bg span:nth-child(4) { left: 91%; top: 43%; }

.hero-content {
  max-width: 660px;
  min-width: 0;
  color: var(--ink);
}

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

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

h1 {
  max-width: 10ch;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.secondary {
  color: var(--blue-deep);
  background: #fff;
}

.button.dark {
  color: #fff;
  background: var(--night);
  border-color: var(--night);
}

.hero-panel {
  padding: clamp(24px, 4vw, 36px);
  color: #fff;
  background: rgba(2, 10, 22, .88);
  border: 2px solid rgba(21, 147, 255, .9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-panel ul,
.solution-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  position: relative;
  padding-left: 32px;
  margin: 13px 0;
  font-size: 1.05rem;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  width: 18px;
  height: 18px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan) 0 35%, transparent 38%);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(20px, 6vw, 90px);
  background: var(--line);
}

.value-strip article {
  padding: 28px 20px;
  text-align: center;
  background: #fff;
}

.icon,
.solution-icon {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 14px;
  background: transparent;
}

.icon img,
.solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-strip h2,
.solution-grid h3,
.why-grid h3 {
  margin-bottom: 6px;
  color: var(--blue-deep);
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.value-strip p {
  margin-bottom: 0;
  font-size: .92rem;
}

.section,
.service-detail,
.trust,
.quote-section,
.faq,
.profile,
.contact {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 90px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.profile h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.solution-grid article {
  min-width: 0;
  padding: 28px 22px;
  background: #fff;
}

.solution-grid li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
  color: #202938;
  font-size: .94rem;
}

.solution-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
}

.service-detail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding-top: 0;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(90deg, transparent, var(--line), transparent) border-box;
}

.service-detail article {
  padding: 28px 22px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.service-detail article:last-child {
  border-right: 0;
}

.service-detail h3 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 1.08rem;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.trust {
  background: var(--soft);
}

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

.trust-grid article {
  min-height: 170px;
  padding: 28px;
  background: #fff;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.trust-grid span {
  color: var(--muted);
}

.why {
  padding: clamp(56px, 8vw, 94px) clamp(20px, 6vw, 90px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 0, rgba(0, 111, 230, .38), transparent 28rem),
    linear-gradient(135deg, #061326, #031020);
}

.light h2 {
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .2);
}

.why-grid article {
  padding: 26px 20px;
  background: rgba(255, 255, 255, .04);
}

.why-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 900;
}

.why-grid h3 {
  color: #fff;
}

.why-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .84);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.quote-copy h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.quote-copy p {
  max-width: 560px;
  color: var(--muted);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  color: var(--blue-deep);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-deep);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #c7d3e4;
  border-radius: 8px;
  background: #fff;
}

.quote-form textarea,
.quote-form label:nth-child(6),
.quote-form .button,
.form-note {
  grid-column: 1 / -1;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .button {
  width: fit-content;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-deep);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.profile {
  display: grid;
  grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--soft);
}

.profile p {
  color: var(--muted);
}

.profile-image {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(3, 15, 35, .18);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 24px;
  color: #fff;
  background: linear-gradient(120deg, var(--blue-deep), #041020 46%, #020812);
}

.contact-panel,
.company-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.contact h2 {
  max-width: 560px;
  margin-bottom: 26px;
}

.contact-actions a {
  display: block;
  min-width: min(100%, 260px);
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.contact-actions strong,
.contact-actions span {
  display: block;
}

.contact-actions strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.contact-actions span {
  color: rgba(255, 255, 255, .72);
}

.company-card p,
.company-card address {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .84);
  font-style: normal;
}

.map-link {
  display: inline-flex;
  margin-top: 10px;
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: #008f5a;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px clamp(20px, 6vw, 90px);
  color: #fff;
  background: #061326;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .84rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero,
  .profile,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(rgba(255, 255, 255, .96), rgba(255, 255, 255, .9)),
      radial-gradient(circle at 75% 20%, rgba(38, 166, 255, .45), transparent 24rem),
      linear-gradient(120deg, #061326, #031020);
  }

  .hero-panel {
    max-width: 560px;
  }

  .value-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-grid,
  .why-grid,
  .service-detail,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    padding: 8px 14px;
  }

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(3, 12, 26, .98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

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

  h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 3.1rem);
    line-height: .98;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .value-strip,
  .solution-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .service-detail,
  .trust,
  .quote-section,
  .faq,
  .profile,
  .contact,
  .why {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer {
    display: block;
    letter-spacing: .08em;
  }

  .site-footer p + p {
    margin-top: 8px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quick-links a,
  .quote-form .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 112px;
  }

  h1 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

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

  .button {
    min-height: 44px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: .88rem;
  }

  .service-detail,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    right: 12px;
    bottom: 12px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}
