:root {
  --blue: #1a77fa;
  --blue-dark: #164a7d;
  --blue-light: #eaf3fb;

  --navy: #102b46;

  --gray-50: #f5f7fa;
  --gray-100: #eef2f6;
  --gray-200: #dfe5ec;
  --gray-300: #c8d0da;
  --gray-400: #9aa7b5;
  --gray-500: #718096;
  --gray-600: #536273;
  --gray-700: #344454;

  --white: #ffffff;

  --border: #dce3ea;

  --container: 1180px;

  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;

  color: var(--gray-700);

  background: var(--white);

  line-height: 1.6;
}
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;

  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));

  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;

  color: var(--navy);

  line-height: 1.15;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);

  letter-spacing: -0.04em;
}

h2 span,
h1 span {
  color: var(--blue);
}

.hero {
  position: relative;

  min-height: 750px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: #082541;
}

.hero-background {
  position: absolute;

  inset: 0;

  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    #082541 0%,
    rgba(8, 37, 65, 0.98) 24%,
    rgba(8, 37, 65, 0.91) 42%,
    rgba(8, 37, 65, 0.62) 59%,
    rgba(8, 37, 65, 0.12) 82%,
    rgba(8, 37, 65, 0) 100%
  );
}

.hero-overlay::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(0deg, rgba(5, 22, 38, 0.38), transparent 35%);
}

.hero-container {
  position: relative;

  z-index: 2;

  width: min(var(--container), calc(100% - 40px));

  padding-top: 55px;

  padding-bottom: 55px;
}

.hero-content {
  width: 62%;

  max-width: 720px;

  color: white;
}

.hero-badge {
  width: fit-content;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 25px;

  padding: 8px 14px;

  color: #d9e9f8;

  background: rgba(31, 95, 159, 0.2);

  border: 1px solid rgba(116, 174, 225, 0.4);

  border-radius: 50px;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.12em;
}

.badge-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #4d9be5;

  box-shadow: 0 0 0 4px rgba(77, 155, 229, 0.13);
}

.hero h1 {
  max-width: 750px;

  margin-bottom: 23px;

  color: white;

  font-family: "Manrope", sans-serif;

  font-size: clamp(43px, 5.2vw, 70px);

  font-weight: 800;

  line-height: 1.03;

  letter-spacing: -0.055em;
}

.hero h1 span {
  color: #4d9be5;
}

.hero-subtitle {
  max-width: 610px;

  margin: 0;

  color: #d2deea;

  font-size: 17px;

  line-height: 1.7;
}

.hero-line {
  width: 50px;
  height: 3px;

  margin-top: 25px;

  background: #3989d4;
}

.hero-actions {
  display: flex;

  align-items: center;

  gap: 27px;

  margin-top: 25px;
}

.hero-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  min-width: 165px;

  padding: 14px 21px;

  color: white;

  background: #2678c5;

  border: 1px solid #2678c5;

  border-radius: 5px;

  font-size: 12px;

  font-weight: 800;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

  transition: 0.3s ease;
}

.hero-btn i {
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #328bd8;

  border-color: #328bd8;

  transform: translateY(-2px);

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.hero-btn:hover i {
  transform: translateX(4px);
}

.hero-email {
  display: flex;

  align-items: center;

  gap: 12px;

  color: white;

  transition: 0.3s ease;
}

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

.hero-email-icon {
  width: 43px;
  height: 43px;

  display: grid;

  place-items: center;

  color: white;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50%;

  font-size: 15px;
}

.hero-email-text {
  display: flex;

  flex-direction: column;

  gap: 1px;

  font-size: 12px;

  font-weight: 700;
}

.hero-email-text small {
  color: #91a9be;

  font-size: 9px;

  font-weight: 500;
}

.hero-highlights {
  display: flex;

  align-items: center;

  margin-top: 45px;

  padding-top: 23px;

  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-highlight {
  display: flex;

  align-items: center;

  gap: 10px;

  padding-right: 22px;
}

.highlight-icon {
  width: 39px;
  height: 39px;

  display: grid;

  place-items: center;

  color: white;

  background: rgba(31, 95, 159, 0.42);

  border: 1px solid rgba(92, 161, 219, 0.4);

  border-radius: 50%;

  font-size: 13px;
}

.hero-highlight span:last-child {
  display: flex;

  flex-direction: column;
}

.hero-highlight strong {
  color: white;

  font-family: "Manrope", sans-serif;

  font-size: 12px;

  line-height: 1.2;
}

.hero-highlight small {
  margin-top: 3px;

  color: #91a9be;

  font-size: 10px;
}

.highlight-divider {
  width: 1px;
  height: 35px;

  margin-right: 22px;

  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1050px) {
  .hero {
    min-height: 610px;
  }

  .hero-content {
    width: 68%;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      #082541 0%,
      rgba(8, 37, 65, 0.98) 35%,
      rgba(8, 37, 65, 0.78) 58%,
      rgba(8, 37, 65, 0.22) 100%
    );
  }
}

@media (max-width: 850px) {
  .hero {
    min-height: 680px;

    align-items: flex-end;
  }

  .hero-background img {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(
      0deg,
      #082541 5%,
      rgba(8, 37, 65, 0.96) 43%,
      rgba(8, 37, 65, 0.42) 75%,
      rgba(8, 37, 65, 0.1) 100%
    );
  }

  .hero-content {
    width: 100%;

    max-width: 680px;
  }

  .hero-container {
    padding-top: 110px;

    padding-bottom: 55px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 720px;
  }

  .hero-background img {
    object-position: 68% top;
  }

  .hero-overlay {
    background: linear-gradient(
      0deg,
      #082541 0%,
      rgba(8, 37, 65, 0.97) 43%,
      rgba(8, 37, 65, 0.58) 67%,
      rgba(8, 37, 65, 0.15) 100%
    );
  }

  .hero-container {
    width: calc(100% - 28px);

    padding-top: 170px;

    padding-bottom: 38px;
  }

  .hero-badge {
    margin-bottom: 17px;

    font-size: 8px;
  }

  .hero h1 {
    margin-bottom: 18px;

    font-size: 40px;

    line-height: 1.04;
  }

  .hero-subtitle {
    font-size: 14px;

    line-height: 1.65;
  }

  .hero-line {
    margin-top: 20px;
  }

  .hero-actions {
    align-items: flex-start;

    flex-direction: column;

    gap: 17px;

    margin-top: 21px;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-email {
    padding-left: 3px;
  }

  .hero-highlights {
    align-items: flex-start;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 30px;

    padding-top: 20px;
  }

  .hero-highlight {
    padding-right: 0;
  }

  .highlight-divider {
    display: none;
  }

  .hero-highlight:nth-child(5) {
    width: 100%;
  }
}

.section {
  padding: 110px 0;
}

.section-number {
  display: block;

  margin-bottom: 10px;

  color: var(--blue);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.1em;
}

.section-kicker {
  margin-bottom: 15px;

  color: var(--gray-500);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

/* =========================================================
   SERVICES
========================================================= */

.services {
  background: var(--gray-50);

  overflow: hidden;
}

.services-heading {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  margin-bottom: 50px;
}

.services-heading h2 {
  max-width: 620px;
}

.services-controls {
  display: flex;

  gap: 8px;
}

.service-arrow {
  width: 43px;
  height: 43px;

  display: grid;

  place-items: center;

  color: var(--navy);

  background: white;

  border: 1px solid var(--border);

  border-radius: 6px;

  cursor: pointer;

  transition: var(--transition);
}

.service-arrow:hover {
  color: white;

  background: var(--blue);

  border-color: var(--blue);
}

.services-track-wrapper {
  overflow: hidden;

  margin-right: calc((100vw - var(--container)) / -2);
}

.services-track {
  display: flex;

  gap: 18px;

  overflow-x: auto;

  padding-bottom: 20px;

  scroll-behavior: smooth;

  scrollbar-width: none;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.service-slide {
  flex: 0 0 380px;

  min-height: 470px;

  padding: 30px;

  background: white;

  border: 1px solid var(--border);

  border-radius: 10px;

  transition: var(--transition);
}

.service-slide:hover {
  border-color: #b9cce2;

  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(16, 36, 62, 0.08);
}

.service-slide-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  margin-bottom: 45px;
}

.service-slide-top > span {
  color: var(--gray-400);

  font-size: 11px;

  font-weight: 700;
}

.service-slide-icon {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  color: var(--blue);

  background: var(--blue-light);

  border-radius: 7px;
}

.service-slide h3 {
  max-width: 310px;

  margin-bottom: 17px;

  font-size: 21px;

  letter-spacing: -0.025em;
}

.service-slide p {
  min-height: 75px;

  margin-bottom: 28px;

  color: var(--gray-600);

  font-size: 13px;

  line-height: 1.75;
}

.service-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}

.service-tags span {
  padding: 7px 9px;

  color: var(--gray-700);

  background: var(--gray-100);

  border-radius: 4px;

  font-size: 10px;

  font-weight: 600;
}

.services-bottom {
  display: flex;

  align-items: center;

  gap: 20px;

  margin-top: 25px;

  color: var(--gray-500);

  font-size: 10px;
}

.service-progress {
  width: 120px;
  height: 2px;

  overflow: hidden;

  background: var(--gray-200);
}

.service-progress span {
  display: block;

  width: 25%;
  height: 100%;

  background: var(--blue);

  transition: 0.3s ease;
}

/* =========================================================
   WHO WE ARE
========================================================= */

.about-section {
  background: white;
}

.about-grid {
  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  gap: 90px;

  align-items: center;
}

.about-image {
  position: relative;

  height: 520px;

  overflow: hidden;

  border-radius: 10px;
}

.about-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.about-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, transparent 55%, rgba(10, 27, 48, 0.55));
}

.image-label {
  position: absolute;

  left: 25px;
  bottom: 23px;

  z-index: 2;

  color: white;
}

.image-label span {
  display: block;

  margin-bottom: 3px;

  color: #a9c4e5;

  font-size: 9px;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.image-label strong {
  font-family: "Manrope", sans-serif;

  font-size: 15px;
}

.about-content h2 {
  max-width: 600px;

  margin-bottom: 27px;
}

.about-content p {
  max-width: 650px;

  margin-bottom: 18px;

  color: var(--gray-600);

  font-size: 14px;

  line-height: 1.85;
}

.linkedin-icon {
  width: 25px;
  height: 25px;

  display: inline-grid;

  place-items: center;

  margin-left: 5px;

  color: white;

  background: #0a66c2;

  border-radius: 4px;

  font-size: 12px;

  vertical-align: middle;

  transition: var(--transition);
}

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

.text-btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 12px;

  color: var(--blue);

  font-size: 12px;

  font-weight: 800;

  transition: var(--transition);
}

.text-btn i {
  transition: var(--transition);
}

.text-btn:hover {
  color: var(--blue-dark);
}

.text-btn:hover i {
  transform: translateX(5px);
}

/* =========================================================
   HOW WE WORK
========================================================= */

.work-section {
  background: var(--gray-50);

  border-top: 1px solid var(--border);
}

.work-grid {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 90px;

  align-items: center;
}

.work-content h2 {
  margin-bottom: 27px;
}

.work-content p {
  max-width: 600px;

  margin-bottom: 18px;

  color: var(--gray-600);

  font-size: 14px;

  line-height: 1.85;
}

.work-points {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  margin: 35px 0;

  border-top: 1px solid var(--border);

  border-left: 1px solid var(--border);
}

.work-points div {
  padding: 18px;

  background: white;

  border-right: 1px solid var(--border);

  border-bottom: 1px solid var(--border);
}

.work-points span {
  display: block;

  margin-bottom: 5px;

  color: var(--blue);

  font-size: 9px;

  font-weight: 800;
}

.work-points strong {
  color: var(--navy);

  font-family: "Manrope", sans-serif;

  font-size: 12px;
}

.work-image {
  position: relative;

  height: 530px;

  overflow: hidden;

  border-radius: 10px;
}

.work-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.work-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(10, 27, 48, 0.05),
    rgba(10, 27, 48, 0.45)
  );
}

.work-image-card {
  position: absolute;

  right: 25px;
  bottom: 25px;

  z-index: 2;

  min-width: 190px;

  padding: 18px 20px;

  background: white;

  border-radius: 7px;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.work-image-card span {
  display: block;

  margin-bottom: 3px;

  color: var(--gray-500);

  font-size: 9px;
}

.work-image-card strong {
  color: var(--navy);

  font-family: "Manrope", sans-serif;

  font-size: 12px;
}

/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta {
  position: relative;
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.contact-cta .container {
  position: relative;
  z-index: 2;
}

.contact-cta-card {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 70px;

  min-height: 390px;
  padding: 70px 75px;

  background: linear-gradient(135deg, #071a2e 0%, #0a2340 50%, #061528 100%);

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 25px 70px rgba(7, 28, 50, 0.18);
}

.cta-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);

  background-size: 45px 45px;

  mask-image: linear-gradient(
    to right,
    transparent,
    black 25%,
    black 75%,
    transparent
  );

  pointer-events: none;
}

.cta-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(10px);
}

.cta-glow-one {
  width: 420px;
  height: 420px;

  right: -180px;
  top: -210px;

  background: rgba(31, 95, 159, 0.28);
}

.cta-glow-two {
  width: 300px;
  height: 300px;

  left: -150px;
  bottom: -180px;

  background: rgba(31, 95, 159, 0.16);
}

.cta-content {
  position: relative;
  z-index: 2;

  max-width: 720px;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  margin-bottom: 20px;

  color: #6da9e8;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-label span {
  display: block;

  width: 30px;
  height: 2px;

  background: #4d9be5;

  border-radius: 10px;
}

.contact-cta h2 {
  max-width: 680px;

  margin: 0;

  color: #ffffff;

  font-size: clamp(40px, 4.5vw, 62px);

  font-weight: 700;

  line-height: 1.08;

  letter-spacing: -0.045em;
}

.contact-cta h2 span {
  display: block;

  color: #5da7e8;
}

.contact-cta p {
  max-width: 560px;

  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;

  line-height: 1.85;
}

.cta-button {
  position: relative;
  z-index: 3;

  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  min-width: 185px;

  padding: 8px 9px 8px 24px;

  color: #ffffff;

  background: #1f5f9f;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50px;

  font-size: 12px;
  font-weight: 800;

  text-decoration: none;

  box-shadow: 0 12px 35px rgba(31, 95, 159, 0.35);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.cta-button:hover {
  color: #ffffff;

  background: #2673bc;

  transform: translateY(-5px);

  box-shadow: 0 18px 40px rgba(31, 95, 159, 0.45);
}

.cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  flex-shrink: 0;

  color: #123456;

  background: #ffffff;

  border-radius: 50%;

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.cta-arrow i {
  font-size: 13px;

  transition: transform 0.35s ease;
}

.cta-button:hover .cta-arrow {
  background: #f2f7fb;

  transform: rotate(-8deg);
}

.cta-button:hover .cta-arrow i {
  transform: translateX(3px);
}

.contact-cta-card::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -270px;
  bottom: -310px;

  border: 1px solid rgba(255, 255, 255, 0.07);

  border-radius: 50%;

  pointer-events: none;
}

.contact-cta-card::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  right: -130px;
  bottom: -170px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {
  .contact-cta-card {
    gap: 45px;

    padding: 60px 50px;
  }

  .contact-cta h2 {
    font-size: clamp(38px, 5vw, 52px);
  }

  .cta-button {
    min-width: 170px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {
  .contact-cta {
    padding: 60px 0;
  }

  .contact-cta-card {
    flex-direction: column;

    align-items: flex-start;

    gap: 35px;

    min-height: auto;

    padding: 50px 35px;

    border-radius: 15px;
  }

  .cta-content {
    max-width: 100%;
  }

  .contact-cta h2 {
    font-size: 40px;
  }

  .contact-cta p {
    font-size: 13px;
  }

  .cta-button {
    width: auto;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .contact-cta {
    padding: 45px 0;
  }

  .contact-cta-card {
    padding: 42px 25px;
  }

  .cta-label {
    font-size: 10px;
  }

  .contact-cta h2 {
    font-size: 34px;

    letter-spacing: -0.035em;
  }

  .contact-cta p {
    margin-top: 18px;

    font-size: 13px;
  }

  .cta-button {
    width: 100%;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  color: #a7b5c3;

  background: #0b1f33;
}

.footer-main {
  display: grid;

  grid-template-columns: 1.5fr 0.75fr 0.9fr 1fr;

  gap: 70px;

  padding: 75px 0 65px;
}

.footer-brand {
  max-width: 330px;
}

.footer-logo {
  display: block;

  width: 140px;

  height: 72px;

  margin-bottom: 23px;

  background: white;

  border-radius: 4px;
}

.footer-logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  border-radius: 4px;
}

.footer-brand p {
  margin-bottom: 22px;

  color: #8fa1b3;

  font-size: 12px;

  line-height: 1.8;
}

.footer-email {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: #c7d2dd;

  font-size: 12px;

  transition: var(--transition);
}

.footer-email:hover {
  color: white;
}

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 11px;
}

.footer-column h4 {
  margin-bottom: 10px;

  color: white;

  font-size: 12px;

  letter-spacing: 0.02em;
}

.footer-column a {
  color: #8fa1b3;

  font-size: 11px;

  transition: var(--transition);
}

.footer-column a:hover {
  color: white;

  transform: translateX(2px);
}

.footer-contact p {
  max-width: 230px;

  margin-bottom: 10px;

  color: #8fa1b3;

  font-size: 11px;

  line-height: 1.7;
}

.footer-contact-btn {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: 5px;

  padding: 11px 14px;

  color: white !important;

  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 4px;
}

.footer-contact-btn:hover {
  background: var(--blue);

  border-color: var(--blue);
}

.footer-bottom {
  min-height: 70px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: #708396;

  font-size: 10px;
}

.footer-bottom-links {
  display: flex;

  align-items: center;

  gap: 20px;
}

.footer-bottom-links a {
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

.footer-bottom-links a:last-child {
  width: 28px;
  height: 28px;

  display: grid;

  place-items: center;

  color: white;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 4px;
}

@media (max-width: 1050px) {
  .hero-grid {
    gap: 45px;
  }

  .about-grid,
  .work-grid {
    gap: 55px;
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 850px) {
  .section {
    padding: 85px 0;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 80px 0;
  }

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

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image-card {
    max-width: 600px;
  }

  .services-heading {
    align-items: flex-start;

    gap: 30px;
  }

  .service-slide {
    flex-basis: 340px;
  }

  .about-grid,
  .work-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .about-image,
  .work-image {
    height: 430px;
  }

  .contact-cta-inner {
    align-items: flex-start;

    flex-direction: column;
  }

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

    gap: 45px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero {
    padding: 65px 0 75px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;

    flex-direction: column;

    gap: 18px;
  }

  .hero-trust {
    margin-top: 40px;
  }

  .trust-item {
    min-width: 0;

    flex: 1;

    padding-right: 12px;

    margin-right: 12px;
  }

  .trust-item strong {
    font-size: 11px;
  }

  .trust-item span {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-image-card {
    height: 360px;
  }

  .hero-corner-card {
    right: 10px;

    top: 20px;
  }

  .hero-floating-card {
    left: 15px;

    bottom: 15px;
  }

  .services-heading {
    flex-direction: column;
  }

  .services-controls {
    align-self: flex-start;
  }

  .service-slide {
    flex: 0 0 calc(100vw - 42px);

    min-height: 430px;

    padding: 25px;
  }

  .services-track-wrapper {
    margin-right: -14px;
  }

  .service-slide h3 {
    font-size: 20px;
  }

  .about-image,
  .work-image {
    height: 350px;
  }

  .work-points {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    padding: 70px 0;
  }

  .contact-cta h2 {
    font-size: 34px;
  }

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

    gap: 38px;

    padding: 60px 0 45px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;

    flex-direction: column;

    justify-content: center;

    padding: 20px 0;
  }
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;

  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid transparent;

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);

  border-color: var(--border);

  box-shadow: 0 8px 30px rgba(16, 43, 70, 0.07);
}

.header-container {
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

.site-logo {
  display: flex;
  align-items: center;

  flex-shrink: 0;

  width: 145px;
  height: 60px;

  transition: transform 0.3s ease;
}

.site-logo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
}

.site-logo:hover {
  transform: translateY(-1px);
}

.desktop-nav {
  display: flex;
  align-items: center;

  gap: 30px;
}

.desktop-nav > a:not(.header-cta) {
  position: relative;

  color: var(--gray-700);

  font-size: 12px;
  font-weight: 700;

  white-space: nowrap;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.desktop-nav > a:not(.header-cta)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--blue);

  border-radius: 10px;

  transition: width 0.3s ease;
}

.desktop-nav > a:not(.header-cta):hover {
  color: var(--blue);
}

.desktop-nav > a:not(.header-cta):hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 42px;

  padding: 0 18px;

  color: white !important;

  background: var(--blue);

  border: 1px solid var(--blue);

  border-radius: 5px;

  font-size: 11px;
  font-weight: 800;

  box-shadow: 0 8px 20px rgba(26, 119, 250, 0.18);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.header-cta i {
  font-size: 10px;

  transition: transform 0.3s ease;
}

.header-cta:hover {
  color: white !important;

  background: var(--blue-dark);

  border-color: var(--blue-dark);

  transform: translateY(-2px);

  box-shadow: 0 12px 25px rgba(26, 119, 250, 0.25);
}

.header-cta:hover i {
  transform: translateX(4px);
}

.menu-toggle {
  width: 44px;
  height: 44px;

  display: none;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 5px;

  padding: 0;

  color: var(--navy);

  background: var(--gray-50);

  border: 1px solid var(--border);

  border-radius: 5px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.menu-toggle span {
  display: block;

  width: 18px;
  height: 2px;

  background: var(--navy);

  border-radius: 10px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle:hover {
  background: var(--blue-light);

  border-color: #c7dcef;

  transform: translateY(-1px);
}

.mobile-menu-overlay {
  position: fixed;

  inset: 0;

  z-index: 1998;

  background: rgba(7, 26, 46, 0.55);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;

  backdrop-filter: blur(3px);
}

.mobile-menu-overlay.active {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

.mobile-menu {
  position: fixed;

  top: 0;
  right: 0;

  z-index: 1999;

  width: min(390px, 88vw);
  height: 100dvh;

  display: flex;
  flex-direction: column;

  padding: 25px;

  background: white;

  border-left: 1px solid var(--border);

  box-shadow: -20px 0 60px rgba(7, 26, 46, 0.15);

  transform: translateX(105%);

  visibility: hidden;

  transition:
    transform 0.4s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0.4s ease;
}

.mobile-menu.active {
  transform: translateX(0);

  visibility: visible;
}

.mobile-menu-header {
  display: flex;

  align-items: center;
  justify-content: space-between;

  min-height: 58px;

  padding-bottom: 20px;

  border-bottom: 1px solid var(--border);
}

.mobile-logo {
  width: 125px;
  height: 50px;

  display: flex;
  align-items: center;
}

.mobile-logo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
}

.menu-close {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  color: var(--navy);

  background: var(--gray-50);

  border: 1px solid var(--border);

  border-radius: 5px;

  cursor: pointer;

  font-size: 17px;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.menu-close:hover {
  color: white;

  background: var(--blue);

  border-color: var(--blue);

  transform: rotate(5deg);
}

.mobile-nav {
  display: flex;

  flex-direction: column;

  margin-top: 25px;
}

.mobile-nav a {
  min-height: 64px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  color: var(--navy);

  border-bottom: 1px solid var(--border);

  font-family: "Manrope", sans-serif;

  font-size: 16px;
  font-weight: 700;

  transition:
    color 0.3s ease,
    padding 0.3s ease;
}

.mobile-nav a i {
  color: var(--gray-400);

  font-size: 12px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--blue);

  padding-left: 5px;
}

.mobile-nav a:hover i {
  color: var(--blue);

  transform: translateX(5px);
}

.mobile-menu-footer {
  margin-top: auto;

  padding-top: 25px;
}

.mobile-cta {
  width: 100%;

  min-height: 54px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 5px 6px 5px 20px;

  color: white;

  background: var(--blue);

  border-radius: 6px;

  font-size: 12px;
  font-weight: 800;

  box-shadow: 0 10px 25px rgba(26, 119, 250, 0.2);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.mobile-cta > span {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  color: var(--navy);

  background: white;

  border-radius: 50%;
}

.mobile-cta:hover {
  color: white;

  background: var(--blue-dark);

  transform: translateY(-2px);
}

.mobile-menu-footer p {
  margin-top: 15px;

  color: var(--gray-500);

  font-size: 11px;

  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}
@media (max-width: 950px) {
  .desktop-nav {
    gap: 22px;
  }

  .desktop-nav > a:not(.header-cta) {
    font-size: 11px;
  }

  .header-container {
    min-height: 76px;
  }
}

@media (max-width: 800px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-container {
    min-height: 72px;
  }

  .site-logo {
    width: 135px;
    height: 55px;
  }
}
@media (max-width: 480px) {
  .header-container {
    width: calc(100% - 28px);

    min-height: 68px;
  }

  .site-logo {
    width: 120px;
    height: 48px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    width: 92vw;

    padding: 20px;
  }
}
