﻿:root {
  --bg: #f2f6fb;
  --surface: #ffffff;
  --surface-soft: #eaf0f7;
  --text: #13263a;
  --muted: #456078;
  --heading: #0b1b2f;
  --accent: #0bb8dc;
  --accent-strong: #0797b5;
  --line: #bfd0df;
  --overlay-dark: rgba(4, 14, 25, 0.72);
  --shadow-soft: 0 30px 50px -34px rgba(14, 34, 56, 0.52);
  --radius-lg: 1.35rem;
  --radius-md: 1rem;
  --section-space: clamp(4.5rem, 8vw, 7rem);
  --container: min(1180px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(42rem 36rem at 84% -8%, rgba(11, 184, 220, 0.16), transparent 60%),
    radial-gradient(40rem 35rem at -10% 20%, rgba(8, 68, 120, 0.1), transparent 65%),
    var(--bg);
  line-height: 1.62;
  font-size: clamp(1.06rem, 0.98rem + 0.35vw, 1.18rem);
}

h1,
h2,
h3,
.logo,
.btn,
.phone-btn {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--heading);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 1.7rem + 4.4vw, 5rem);
  line-height: 0.98;
  font-weight: 800;
  margin: 0 0 1.4rem;
  max-width: 14ch;
}

h2 {
  font-size: clamp(2rem, 1.35rem + 2.2vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.24rem, 1.02rem + 0.65vw, 1.6rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.people-zone {
  position: relative;
  isolation: isolate;
  z-index: 0;
}

.people-zone-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.people-zone-bg::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: url("assets/People.webp") center / cover no-repeat;
  filter: blur(14px);
  transform: scale(1.1);
  opacity: 0.78;
}

.people-zone-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 24, 40, 0.45), rgba(12, 29, 46, 0.55)),
    radial-gradient(70rem 36rem at 50% -10%, rgba(14, 98, 130, 0.16), transparent 72%);
}

.section-people-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(5.4rem, 9vw, 8rem);
}

.section-people-content h2 {
  font-size: clamp(2.2rem, 1.4rem + 2.7vw, 3.5rem);
  line-height: 1.02;
  margin-bottom: 1.4rem;
  color: #f1f8ff;
  text-shadow: 0 3px 18px rgba(5, 16, 30, 0.55);
}

.section-people-content p {
  font-size: clamp(1.1rem, 1rem + 0.35vw, 1.28rem);
}

/* .section-alt {
  background: linear-gradient(180deg, rgba(8, 25, 42, 0.26), rgba(11, 28, 44, 0.34));
} */

.skip-link {
  position: absolute;
  left: -1000px;
  top: 0;
  background: var(--heading);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.9rem;
  top: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191, 208, 223, 0.8);
  background: rgba(242, 246, 251, 0.86);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.35rem;
}

.logo img {
  width: clamp(2rem, 1.35rem + 1.8vw, 3rem);
  height: auto;
  display: block;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  color: #24445e;
  text-decoration: none;
  font-weight: 700;
  padding: 0.45rem 0.62rem;
  border-radius: 999px;
}

.site-nav.is-open {
  position: absolute;
  top: 4.8rem;
  left: 4vw;
  right: 4vw;
  display: grid;
  gap: 0.3rem;
  padding: 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.menu-toggle {
  border: 1px solid var(--line);
  border-radius: 0.68rem;
  background: #fff;
  color: #1e374f;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1rem, 0.94rem + 0.22vw, 1.1rem);
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-nav-call,
.btn-primary,
.phone-btn {
  background: linear-gradient(130deg, var(--accent), #27d2ea);
  color: #05202c;
  box-shadow: 0 10px 20px -14px rgba(11, 184, 220, 0.7);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.94);
  border-color: #94abc0;
  color: #173955;
}

.hero {
  position: relative;
  min-height: min(100vh, 58rem);
  padding-top: clamp(5.5rem, 8vw, 7rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-bg-layer,
.hero-blur-layer {
  position: absolute;
  inset: -5%;
  background-image: url("assets/Back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  will-change: transform;
}

.hero-bg-layer {
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0) scale(var(--hero-scale, 1));
}

.hero-blur-layer {
  filter: blur(9px);
  opacity: 0.55;
  transform: translate3d(calc(var(--parallax-x, 0px) * 0.65), calc(var(--parallax-y, 0px) * 0.65), 0)
    scale(var(--hero-blur-scale, 1.06));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, var(--overlay-dark) 26%, rgba(4, 14, 25, 0.5) 58%, rgba(4, 14, 25, 0.62) 100%),
    radial-gradient(50rem 24rem at 90% 10%, rgba(12, 189, 223, 0.19), transparent 66%);
}

.hero-grid {
  display: grid;
  gap: 1rem;
}

.hero-copy {
  max-width: 50rem;
}

.hero-location {
  display: inline-block;
  font-size: clamp(0.9rem, 0.82rem + 0.3vw, 1rem);
  color: #d6ecf5;
  background: rgba(4, 17, 31, 0.5);
  border: 1px solid rgba(148, 171, 192, 0.48);
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  margin-bottom: 1rem;
}

.hero h1,
.hero .hero-subheadline {
  color: #f4fbff;
}

.hero-subheadline {
  font-size: clamp(1.13rem, 1rem + 0.4vw, 1.34rem);
  max-width: 56ch;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.hero-badges {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges li {
  color: #d9f4fb;
  border: 1px solid rgba(203, 226, 241, 0.5);
  background: rgba(10, 25, 41, 0.45);
  border-radius: 999px;
  padding: 0.42rem 0.86rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-contact-strip {
  display: grid;
  gap: 0.5rem;
}

.hero-contact-strip a {
  width: fit-content;
  text-decoration: none;
  color: #f1fcff;
  font-weight: 700;
  border-bottom: 1px solid rgba(214, 236, 245, 0.5);
}

.two-col {
  display: grid;
  gap: 2rem;
}

.about-blocks {
  display: grid;
  gap: 1rem;
}

.about-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.about-block h3 {
  color: #0b6f8a;
}

.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  align-self: start;
}

.side-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.side-card li + li {
  margin-top: 0.45rem;
}

.services-grid,
.trust-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.55rem;
}

.service-card svg {
  width: 2rem;
  height: 2rem;
  fill: var(--accent-strong);
  margin-bottom: 0.9rem;
}

#services .services-grid {
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

#services .service-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(188, 213, 236, 0.3);
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 0.85rem;
}

#services .service-card:last-child {
  border-bottom: 0;
}

#services .service-card svg {
  display: none;
}

#services .service-card h3 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.03rem, 0.97rem + 0.28vw, 1.22rem);
  color: #f2f8ff;
}

#services .service-card p {
  margin: 0;
  color: #c8daee;
}

.industries-intro {
  max-width: 56ch;
  margin-bottom: 1.1rem;
  color: #dbeaf9;
  text-shadow: 0 2px 10px rgba(5, 16, 30, 0.45);
}

.industry-grid {
  display: grid;
  gap: 1rem;
}

.industry-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.55rem;
}

.license-document-wrap {
  background: rgba(7, 21, 35, 0.56);
  border: 1px solid rgba(174, 203, 228, 0.38);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.license-image {
  display: block;
  width: 100%;
  height: auto;
}

.process-steps-image {
  display: block;
  width: min(100%, 1000px);
  height: auto;
  margin: 0.35rem auto 0;
}

@media (max-width: 779px) {
  .hero {
    --hero-scale: 1.24;
    --hero-blur-scale: 1.3;
  }

  .process-steps-image {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .license-document-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
}

.section-contact {
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, #10263f, #091c31);
}

.contact-wrap {
  text-align: center;
}

.contact-wrap h2,
.contact-wrap p {
  color: #e7f8ff;
}

.contact-wrap p {
  max-width: 48ch;
  margin: 0 auto 1.4rem;
}

.contact-buttons {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.phone-btn {
  display: block;
  text-decoration: none;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  font-weight: 800;
  border: 1px solid rgba(161, 237, 251, 0.55);
}

.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-buttons a {
  text-decoration: none;
  color: #e6f4fa;
  border: 1px solid rgba(173, 199, 220, 0.6);
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
}

.site-footer {
  position: relative;
  z-index: 3;
  background: #071726;
  color: #d5e7f5;
  padding: 2.4rem 0;
}

.footer-grid {
  display: grid;
  gap: 0.75rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.site-footer p {
  color: #d5e7f5;
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: #d5e7f5;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #0cbddd;
  outline-offset: 2px;
}

@media (hover: hover) {
  .btn:hover,
  .phone-btn:hover,
  .service-card:hover,
  .trust-card:hover,
  .social-buttons a:hover,
  .site-nav a:hover {
    transform: translateY(-2px);
  }

  #services .service-card:hover {
    transform: none;
  }

  .site-footer a:hover,
  .hero-contact-strip a:hover {
    color: #7fe7f8;
  }
}

@media (min-width: 780px) {
  .license-image {
    width: auto;
    max-width: 100%;
    max-height: 800px;
    margin-inline: auto;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  .hero-contact-strip {
    grid-template-columns: repeat(3, max-content);
    gap: 1rem;
  }

  .two-col {
    grid-template-columns: 1.22fr 0.78fr;
    gap: 1.8rem;
  }

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

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

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

  .contact-buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-bg-layer,
  .hero-blur-layer {
    transform: none !important;
  }
}

