:root {
  --blue: #0068ff;
  --blue-deep: #063b85;
  --green: #63ee8e;
  --ink: #101828;
  --text: #344054;
  --muted: #667085;
  --line: #e4e9f0;
  --paper: #f6f8fb;
  --white: #ffffff;
  --night: #101828;
  --slate: #182235;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(16, 24, 40, 0.11);
  --display: "Manrope", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, 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: 20;
  background: var(--white);
  border-bottom: 1px solid rgba(228, 233, 240, 0.96);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.header-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(520px, 1.35fr) minmax(172px, 0.58fr);
  align-items: center;
  gap: clamp(22px, 3.4vw, 54px);
  min-height: 96px;
  padding: 0 clamp(22px, 5vw, 86px);
}

.brand img {
  width: clamp(240px, 20vw, 340px);
  max-height: 92px;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.6vw, 62px);
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #667085;
  background: transparent;
  box-shadow: none;
  font-size: 0.96rem;
  font-weight: 800;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 174px;
  padding: 0 24px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, #103f91 0%, #082b6f 100%);
  box-shadow: 0 16px 34px rgba(8, 43, 111, 0.22);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1251b7 0%, #093580 100%);
  box-shadow: 0 20px 42px rgba(8, 43, 111, 0.28);
}

.site-nav a {
  position: relative;
  padding: 38px 0 37px;
  border-radius: 0;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #0969da 0%, #064aa6 100%);
  box-shadow: 0 14px 30px rgba(6, 74, 166, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button.primary:hover {
  background: linear-gradient(135deg, #0b73ed 0%, #0756bf 100%);
  box-shadow: 0 18px 38px rgba(6, 74, 166, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(310px, 405px);
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(32px, 5vw, 70px) clamp(18px, 5vw, 76px) clamp(46px, 5vw, 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 106%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  transform: translateX(-3%) scale(1.03);
  animation: hero-motion 22s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.98) 0%, rgba(16, 24, 40, 0.86) 43%, rgba(16, 24, 40, 0.34) 100%),
    linear-gradient(0deg, rgba(16, 24, 40, 0.82) 0%, rgba(16, 24, 40, 0.1) 54%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 740px;
  margin-top: -36px;
}

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

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

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(2.15rem, 3.05vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.85vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.12vw, 1.08rem);
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-panel {
  align-self: center;
  justify-self: end;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: stretch;
  align-content: center;
  gap: 14px;
  width: min(100%, 405px);
  margin-top: -42px;
}

.panel-label {
  width: fit-content;
  justify-self: start;
  margin-bottom: 2px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(16, 24, 40, 0.46);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.panel-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  row-gap: 8px;
  align-items: center;
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(16, 24, 40, 0.7);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.panel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 128, 237, 0.48);
  background: rgba(16, 24, 40, 0.82);
}

.panel-card svg {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #7db7ff;
  background: rgba(47, 128, 237, 0.14);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-panel span {
  display: block;
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.15;
}

.panel-card p {
  grid-column: 2;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: clamp(28px, 4vw, 46px) clamp(18px, 5vw, 76px);
  background: var(--white);
}

.trust-strip div {
  display: grid;
  align-content: center;
  min-height: 126px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trust-strip div:hover {
  transform: translateY(-3px);
  border-color: rgba(9, 105, 218, 0.24);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  line-height: 1;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(76px, 8.5vw, 122px) clamp(18px, 5vw, 76px);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 7vw, 98px);
  align-items: center;
  margin-top: 0;
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 28px;
  color: var(--text);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.about-copy .section-title {
  display: grid;
  gap: 10px;
}

.about-copy p {
  max-width: 720px;
  margin-bottom: 0;
}

.about-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: min(420px, 46vw);
  object-fit: cover;
}

.about-media figcaption {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--night);
  font-size: 0.9rem;
  font-weight: 700;
}

.services {
  background: var(--paper);
}

.service-grid,
.feature-grid,
.capacity-grid {
  display: grid;
  gap: 16px;
}

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

.service-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(9, 105, 218, 0.26);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.09);
}

.service-card svg {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

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

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

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

.feature-item {
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.04);
}

.feature-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 900;
}

.feature-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

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

.structure {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 24, 40, 0.98), rgba(24, 34, 53, 0.96)),
    var(--night);
}

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

.structure-card p:last-child {
  max-width: 680px;
  margin-top: 22px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.capacity-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  row-gap: 7px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.capacity-card svg {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 1px solid rgba(125, 183, 255, 0.26);
  border-radius: 999px;
  color: #7db7ff;
  background: rgba(47, 128, 237, 0.12);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.capacity-card strong {
  display: block;
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.05rem;
}

.capacity-card span {
  color: rgba(255, 255, 255, 0.72);
}

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

.segment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.segment-list span {
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #f8fafc;
  font-weight: 900;
}

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

.stat-card {
  padding: 36px clamp(18px, 4vw, 42px);
  background: #101828;
  color: var(--white);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: #7db7ff;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.stat-card span,
.stat-card small {
  display: block;
}

.stat-card span {
  font-weight: 900;
}

.stat-card small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 800;
  text-transform: uppercase;
}

.quote-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background: linear-gradient(135deg, #101828, #064aa6);
}

.quote-cta h2 {
  color: var(--white);
}

.quote-cta .button {
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: none;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.74fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  background: var(--paper);
}

.contact-info p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 20px;
  color: var(--text);
}

.contact-info ul {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 210px;
  border: 1px dashed #98a2b3;
  border-radius: var(--radius);
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(0, 104, 255, 0.08), rgba(99, 238, 142, 0.12)),
    #ffffff;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd7e3;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 104, 255, 0.14);
}

.contact-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #667085 50%) right 18px center / 7px 7px no-repeat,
    linear-gradient(135deg, #667085 50%, transparent 50%) right 13px center / 7px 7px no-repeat,
    var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: #20b857;
  box-shadow: 0 18px 36px rgba(12, 112, 52, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(12, 112, 52, 0.34);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr minmax(220px, auto);
  gap: 32px;
  align-items: start;
  padding: 42px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.72);
  background: #080d16;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.site-footer nav {
  justify-self: center;
  color: var(--white);
  font-weight: 800;
}

.footer-contact {
  justify-self: end;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-motion {
  from {
    transform: translateX(-3%) scale(1.03);
  }

  to {
    transform: translateX(0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media img {
    animation: none;
    transform: translateX(-3%) scale(1.03);
  }

  .button,
  .header-cta,
  .service-card,
  .panel-card,
  .site-nav a {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .header-main {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    justify-self: end;
    display: block;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding: 10px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-nav.is-open a {
    padding: 15px 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
  }

  .hero,
  .about-grid,
  .structure,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-nav {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

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

  .trust-strip,
  .service-grid,
  .feature-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-contact,
  .site-footer nav {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .header-main {
    min-height: 68px;
    padding-block: 6px;
  }

  .brand img {
    width: 176px;
  }

  .hero {
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(2rem, 8.2vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.45rem);
  }

  .hero-actions,
  .button,
  .quote-cta .button {
    width: 100%;
  }

  .hero-panel {
    max-width: none;
  }

  .panel-card {
    grid-template-columns: 38px 1fr;
    padding: 18px;
  }

  .panel-card svg {
    width: 38px;
    height: 38px;
  }

  .trust-strip,
  .service-grid,
  .feature-grid,
  .capacity-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 260px;
  }

  .capacity-card {
    grid-template-columns: 44px 1fr;
  }

  .capacity-card svg {
    width: 44px;
    height: 44px;
  }

  .quote-cta {
    display: grid;
  }

  .contact-form {
    padding: 20px;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}
