:root {
  --ink: #0f1724;
  --navy: #07172f;
  --navy-soft: #102b55;
  --blue: #1268d9;
  --cyan: #13c6ff;
  --green: #22b85f;
  --gold: #f7b733;
  --coral: #f15b4a;
  --paper: #f5f8fb;
  --white: #ffffff;
  --mist: #dde7f2;
  --muted: #5d6b7d;
  --line: rgba(15, 23, 36, 0.14);
  --white-line: rgba(255, 255, 255, 0.22);
  --shadow: 0 22px 60px rgba(7, 23, 47, 0.14);
  --shadow-strong: 0 30px 90px rgba(7, 23, 47, 0.28);
  --sans: "Inter", Arial, sans-serif;
  --display: "Sora", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 23, 47, 0.78);
  border-bottom: 1px solid var(--white-line);
  color: var(--white);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 10px clamp(16px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, min-height 180ms ease;
  z-index: 30;
}

.site-header.is-scrolled {
  background: rgba(7, 23, 47, 0.96);
  min-height: 66px;
}

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

.brand img {
  background: var(--white);
  border: 1px solid rgba(19, 198, 255, 0.4);
  border-radius: 8px;
  height: 56px;
  object-fit: cover;
  width: 56px;
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 3px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.86;
  position: relative;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a::after {
  background: var(--gold);
  bottom: -9px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a:hover {
  color: var(--cyan);
  opacity: 1;
}

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

.header-actions,
.hero-actions,
.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.icon-button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 0 18px;
  text-align: center;
}

.icon-button {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--white-line);
  color: var(--white);
  width: 44px;
}

.button-header {
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(18, 104, 217, 0.24);
}

.button-light {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--navy);
}

.button-dark {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  background: transparent;
  border: 0;
  color: var(--white);
  display: none;
  height: 44px;
  padding: 0;
  width: 44px;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 8px auto;
  width: 24px;
}

main section[id],
.site-footer {
  scroll-margin-top: 88px;
}

.hero {
  align-items: flex-end;
  background: var(--navy);
  color: var(--white);
  display: flex;
  min-height: 82svh;
  overflow: hidden;
  padding: 128px clamp(18px, 6vw, 84px) 64px;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(7, 23, 47, 0.96), rgba(7, 23, 47, 0.62) 42%, rgba(7, 23, 47, 0.12)),
    linear-gradient(180deg, rgba(7, 23, 47, 0.08), rgba(7, 23, 47, 0.7));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-content {
  max-width: 710px;
  position: relative;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.34);
  z-index: 2;
}

.hero-logo {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(19, 198, 255, 0.44);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  height: 92px;
  margin-bottom: 20px;
  object-fit: cover;
  width: 92px;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 900;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.process-section h2,
.why-copy h2,
.contact-content h2 {
  font-family: var(--display);
  line-height: 1.02;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 7.2rem);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.26rem);
  margin: 18px 0 26px;
  max-width: 670px;
}

.contact-strip {
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(7, 23, 47, 0.08);
  display: grid;
  gap: 1px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(240px, 0.9fr);
  position: relative;
  z-index: 3;
}

.contact-strip a,
.contact-strip p {
  align-items: center;
  background: var(--white);
  display: flex;
  gap: 14px;
  margin: 0;
  min-height: 96px;
  padding: 18px clamp(18px, 5vw, 54px);
}

.contact-strip svg {
  color: var(--blue);
  flex: 0 0 auto;
  height: 34px;
  width: 34px;
}

.contact-strip a:nth-child(2) svg {
  color: var(--green);
}

.contact-strip strong {
  color: var(--navy);
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.contact-strip span,
.contact-strip p {
  color: var(--muted);
  font-weight: 800;
}

.section,
.process-section,
.why-section,
.contact-section {
  padding: clamp(68px, 9vw, 116px) clamp(18px, 6vw, 84px);
}

.section-heading {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  margin: 0 auto 42px;
  max-width: 1180px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
  text-align: center;
}

.section-heading h2,
.process-section h2,
.why-copy h2,
.contact-content h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4.6vw, 4.4rem);
}

.section-heading p:not(.eyebrow),
.why-copy p,
.contact-content p {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 0;
}

.service-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 0.52fr);
  min-height: 430px;
  overflow: hidden;
}

.service-card > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-card > div {
  align-content: start;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
}

.service-card svg {
  color: var(--blue);
  height: 32px;
  width: 32px;
}

.service-card:nth-child(2) svg,
.service-card:nth-child(4) svg {
  color: var(--green);
}

.service-badge {
  background: rgba(247, 183, 51, 0.18);
  border: 1px solid rgba(247, 183, 51, 0.36);
  border-radius: 8px;
  color: var(--navy);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  justify-self: start;
  padding: 5px 9px;
  text-transform: uppercase;
}

.empty-state {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  text-align: center;
}

.service-card h3,
.process-track h3,
.why-grid h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.14;
  margin: 0;
}

.service-card p,
.service-card li,
.process-track p,
.why-grid p {
  color: var(--muted);
  margin: 0;
}

.service-card ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card li {
  padding-left: 18px;
  position: relative;
}

.service-card li::before {
  background: var(--gold);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.62em;
  transform: rotate(45deg);
  width: 7px;
}

.text-link {
  align-items: center;
  color: var(--blue);
  display: inline-flex;
  font-weight: 900;
  gap: 7px;
  margin-top: 4px;
}

.text-link svg {
  height: 18px;
  width: 18px;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(221, 231, 242, 0.75)),
    var(--mist);
}

.process-track {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 42px auto 0;
  max-width: 1180px;
}

.process-track article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  padding: 24px;
}

.process-track svg {
  color: var(--cyan);
  height: 34px;
  margin-bottom: 22px;
  width: 34px;
}

.process-track span {
  color: var(--coral);
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.why-section {
  background: var(--white);
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.why-copy {
  max-width: 600px;
}

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

.why-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 230px;
  padding: 24px;
}

.why-grid svg {
  color: var(--green);
  height: 34px;
  margin-bottom: 26px;
  width: 34px;
}

.contact-section {
  align-items: stretch;
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  padding: 0;
}

.contact-media {
  min-height: 470px;
  min-width: 0;
}

.contact-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.contact-content {
  align-content: center;
  display: grid;
  min-width: 0;
  padding: clamp(44px, 7vw, 82px);
}

.contact-content h2,
.contact-content p {
  color: var(--white);
}

.contact-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  margin: 18px 0 26px;
}

.floating-whatsapp {
  align-items: center;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 16px 42px rgba(34, 184, 95, 0.35);
  color: var(--white);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 22px;
  width: 58px;
  z-index: 25;
}

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

.site-footer {
  background: #08111f;
  color: rgba(255, 255, 255, 0.72);
  padding: 26px clamp(18px, 6vw, 84px);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
    min-height: 390px;
  }

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

@media (max-width: 920px) {
  .site-header {
    min-height: 70px;
  }

  .brand {
    flex-basis: auto;
  }

  .brand small {
    max-width: 178px;
  }

  .site-nav {
    background: rgba(7, 23, 47, 0.98);
    border: 1px solid var(--white-line);
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
    display: none;
    flex-direction: column;
    gap: 0;
    min-width: min(280px, calc(100vw - 32px));
    padding: 8px;
    position: fixed;
    right: 16px;
    top: 78px;
  }

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

  .site-nav a {
    border-radius: 8px;
    padding: 12px 14px;
    width: 100%;
  }

  .site-nav a::after {
    display: none;
  }

  .button-header {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    min-height: 78svh;
    padding-top: 110px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 23, 47, 0.96), rgba(7, 23, 47, 0.72)),
      linear-gradient(180deg, rgba(7, 23, 47, 0.08), rgba(7, 23, 47, 0.7));
  }

  .contact-strip,
  .section-heading,
  .why-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-strip a,
  .contact-strip p {
    min-height: 78px;
  }

  .contact-media {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .brand img {
    height: 48px;
    width: 48px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 74svh;
    padding-bottom: 44px;
  }

  .hero-logo {
    height: 72px;
    width: 72px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .section,
  .process-section,
  .why-section {
    padding-block: 60px;
  }

  .service-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-card > img {
    aspect-ratio: 4 / 3;
  }

  .process-track,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-track article,
  .why-grid article {
    min-height: 0;
  }

  .floating-whatsapp {
    bottom: 16px;
    height: 52px;
    right: 16px;
    width: 52px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-inline: 12px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 18vw, 4.2rem);
  }

  .contact-strip span {
    overflow-wrap: anywhere;
  }
}
