:root {
  --blue-950: #041a33;
  --blue-850: #062a54;
  --blue-700: #075aa8;
  --blue-600: #0876d8;
  --cyan-400: #22d3ee;
  --mint-400: #5eead4;
  --ink: #07111f;
  --steel: #5d6b7c;
  --line: #dbe7f4;
  --soft: #f3f8fd;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(4, 26, 51, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 40px rgba(4, 26, 51, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo-frame {
  display: flex;
  width: clamp(132px, 16vw, 186px);
  height: 46px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(4, 26, 51, 0.14);
}

.brand-logo-frame img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 26, 51, 0.92) 0%, rgba(4, 26, 51, 0.68) 37%, rgba(4, 26, 51, 0.18) 70%),
    linear-gradient(180deg, rgba(4, 26, 51, 0.52) 0%, rgba(4, 26, 51, 0) 42%, rgba(4, 26, 51, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-400);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 6.4vw, 5.45rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--blue-950);
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn svg,
.icon-pill svg,
.contact-methods svg,
.nav-toggle svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.25;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), #00a6d6);
  box-shadow: 0 18px 46px rgba(8, 118, 216, 0.28);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: -42px clamp(18px, 5vw, 72px) 0;
  position: relative;
  z-index: 4;
}

.trust-band article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(198, 223, 245, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 70px rgba(4, 26, 51, 0.12);
  backdrop-filter: blur(18px);
}

.trust-band svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 8px;
  color: var(--blue-600);
  background: linear-gradient(145deg, #e6f7ff, #f7fcff);
  stroke-width: 2.1;
}

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

.trust-band strong {
  color: var(--blue-950);
  font-size: 1rem;
}

.trust-band span {
  margin-top: 7px;
  color: var(--steel);
  line-height: 1.5;
}

.alliances {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: clamp(78px, 8vw, 118px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(8, 118, 216, 0.08), rgba(34, 211, 238, 0.06) 44%, rgba(255, 255, 255, 0.96)),
    #f8fcff;
  overflow: hidden;
}

.alliances-heading h2 {
  max-width: 430px;
  font-size: clamp(1.55rem, 3vw, 2.75rem);
}

.alliances-heading p:not(.eyebrow) {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--steel);
  line-height: 1.7;
}

.brand-slider {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: flex;
  align-items: center;
  background: transparent;
}

.brand-slider::before,
.brand-slider::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 46px;
  content: "";
  pointer-events: none;
}

.brand-slider::before {
  left: 0;
  background: linear-gradient(90deg, #f8fcff, rgba(248, 252, 255, 0));
}

.brand-slider::after {
  right: 0;
  background: linear-gradient(270deg, #f8fcff, rgba(248, 252, 255, 0));
}

.brand-track {
  display: flex;
  width: max-content;
  min-height: 150px;
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
  padding: 14px 0;
  animation: brand-slide 24s linear infinite;
}

.brand-slider:hover .brand-track {
  animation-play-state: paused;
}

.brand-track span {
  display: inline-flex;
  width: 210px;
  height: 112px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--blue-700);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  background: transparent;
}

.brand-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(4, 26, 51, 0.18));
}

.brand-more {
  color: var(--blue-700);
  text-align: center;
  text-transform: uppercase;
  filter: drop-shadow(0 12px 24px rgba(4, 26, 51, 0.1));
}

@keyframes brand-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}

.section,
.process-section,
.contact-section {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

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

.service-card {
  min-height: 296px;
  padding: 28px;
  border: 1px solid rgba(219, 231, 244, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.92));
  box-shadow: 0 18px 54px rgba(4, 26, 51, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 118, 216, 0.28);
  box-shadow: 0 24px 70px rgba(4, 26, 51, 0.11);
}

.service-card p,
.process-grid p,
.sector-copy p,
.contact-copy p {
  color: var(--steel);
  line-height: 1.7;
}

.icon-pill {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--blue-700);
  background: #e9f8ff;
}

.process-section {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(34, 211, 238, 0.18), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-850));
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.process-grid article {
  min-height: 274px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--mint-400);
  font-weight: 800;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sector-list span {
  display: flex;
  min-height: 76px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue-600);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--blue-950);
  font-weight: 800;
  background: var(--soft);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  background: linear-gradient(180deg, #eef7ff, #ffffff);
}

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

.contact-methods {
  margin-top: 28px;
}

.quote-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.quote-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-950);
  font-weight: 800;
}

.quote-list svg {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
  stroke-width: 2.25;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--blue-950);
  font-weight: 800;
  background: var(--white);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbdbea;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfdff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(8, 118, 216, 0.13);
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 999;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 12% 10%, rgba(34, 211, 238, 0.12), transparent 28%),
    linear-gradient(135deg, var(--blue-950), #021124);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(58px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.footer-brand img {
  width: 178px;
  margin-bottom: 20px;
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.96);
}

.footer-brand p {
  max-width: 430px;
  margin-bottom: 0;
  line-height: 1.75;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.2;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.45;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--cyan-400);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--cyan-400);
  stroke-width: 2.2;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 20px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-copy {
    position: static;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-logo-frame {
    width: 132px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(4, 26, 51, 0.18);
    transform: translateY(-8px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 108px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 26, 51, 0.82), rgba(4, 26, 51, 0.46)),
      linear-gradient(90deg, rgba(4, 26, 51, 0.72), rgba(4, 26, 51, 0.2));
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-band,
  .service-grid,
  .process-grid,
  .sector-list {
    grid-template-columns: 1fr;
  }

  .trust-band {
    margin-top: -28px;
  }

  .alliances {
    grid-template-columns: 1fr;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .brand-slider::before,
  .brand-slider::after {
    width: 42px;
  }

  .brand-track span {
    width: 156px;
    height: 78px;
  }

  .service-card,
  .process-grid article {
    min-height: auto;
  }

  .process-grid span {
    margin-bottom: 34px;
  }

  .contact-form {
    padding: 20px;
  }

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

  .footer-bottom {
    padding-bottom: 92px;
  }

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