:root {
  --navy: #062f5f;
  --navy-2: #0b4788;
  --blue: #0875d1;
  --sky: #29b7f3;
  --green: #57aa27;
  --green-dark: #3a8614;
  --yellow: #ffc928;
  --ink: #10243a;
  --muted: #5f6f7f;
  --soft: #f2f8fc;
  --line: #dce9f2;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(6, 47, 95, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.16;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar p {
  margin: 0;
}

.topbar i {
  margin-right: 7px;
  color: var(--yellow);
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar a {
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: var(--yellow);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 233, 242, 0.8);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(6, 47, 95, 0.1);
}

.nav-wrap {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 118px;
  height: 72px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.brand img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: #2e4054;
  font-size: 14px;
  font-weight: 800;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta).active {
  color: var(--blue);
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta).active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 19px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #54b52c, #2f8e12);
  box-shadow: 0 10px 25px rgba(80, 174, 38, 0.25);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(80, 174, 38, 0.35);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 5px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 78px 0 90px;
  background:
    radial-gradient(circle at 5% 10%, rgba(41, 183, 243, 0.12), transparent 27%),
    radial-gradient(circle at 50% 100%, rgba(87, 170, 39, 0.1), transparent 32%),
    linear-gradient(120deg, #ffffff 0%, #f7fbfe 58%, #eef8fd 100%);
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__shape--one {
  width: 420px;
  height: 420px;
  top: -235px;
  right: 14%;
  border: 55px solid rgba(41, 183, 243, 0.08);
}

.hero__shape--two {
  width: 180px;
  height: 180px;
  bottom: -100px;
  left: 6%;
  background: rgba(255, 201, 40, 0.13);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 68px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--blue);
  background: #e9f6fe;
  border: 1px solid #d5edfb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow i {
  color: var(--green);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(46px, 5.25vw, 73px);
  letter-spacing: -0.048em;
}

.hero h1 span,
.section-heading h2 span,
.about h2 span,
.areas h2 span,
.faq h2 span,
.contact h2 span {
  color: var(--green);
}

.hero__content > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 26px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  box-shadow: 0 12px 28px rgba(8, 117, 209, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 16px 34px rgba(8, 117, 209, 0.32);
}

.btn--outline {
  color: var(--navy);
  background: var(--white);
  border: 1px solid #cbdde9;
}

.btn--outline:hover {
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 25px rgba(6, 47, 95, 0.08);
}

.btn--white {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(2, 31, 59, 0.18);
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #42596c;
  font-size: 13px;
  font-weight: 700;
}

.hero__points i {
  margin-right: 5px;
  color: var(--green);
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__image {
  position: relative;
  aspect-ratio: 0.93;
  padding: 11px;
  border-radius: 46% 46% 28px 28px;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(6, 47, 95, 0.18);
}

.hero__image::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border-radius: inherit;
  background: linear-gradient(145deg, var(--sky), var(--green));
}

.hero__image img {
  width: 100%;
  height: 100%;
  border-radius: 45% 45% 20px 20px;
  object-fit: cover;
  object-position: 53% center;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 35px rgba(6, 47, 95, 0.16);
  backdrop-filter: blur(10px);
}

.floating-card--top {
  top: 14%;
  right: -28px;
}

.floating-card--bottom {
  bottom: 9%;
  left: -42px;
}

.floating-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
}

.floating-card__icon.green {
  background: var(--green);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
}

.floating-card small {
  color: var(--muted);
  font-size: 11px;
}

.quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -28px;
}

.quick-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-strip__grid > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 23px 20px;
  border-right: 1px solid var(--line);
}

.quick-strip__grid > div:last-child {
  border-right: 0;
}

.quick-strip__grid > div > i {
  color: var(--blue);
  font-size: 25px;
}

.quick-strip strong,
.quick-strip small {
  display: block;
}

.quick-strip strong {
  color: var(--navy);
  font-size: 13px;
}

.quick-strip small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-inline: auto;
}

.section-heading h2,
.about h2,
.areas h2,
.faq h2,
.contact h2 {
  margin-bottom: 17px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.035em;
}

.section-heading > p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
}

.services {
  padding-top: 120px;
}

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

.service-card {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(6, 47, 95, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: #bbdaf0;
  box-shadow: 0 24px 50px rgba(6, 47, 95, 0.13);
}

.service-card__image {
  position: relative;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__number {
  position: absolute;
  top: 13px;
  left: 13px;
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(7px);
}

.service-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 28px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 10px 23px rgba(8, 117, 209, 0.2);
}

.service-card:nth-child(even) .service-card__icon {
  background: linear-gradient(135deg, var(--green), #7fc944);
  box-shadow: 0 10px 23px rgba(87, 170, 39, 0.2);
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.service-card p {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.service-card a i,
.text-link i {
  transition: transform 0.2s ease;
}

.service-card a:hover i,
.text-link:hover i {
  transform: translateX(4px);
}

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

.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 90px;
}

.about__visual {
  position: relative;
}

.about__image-main {
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  right: -30px;
  bottom: -27px;
  width: 165px;
  height: 165px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 8px solid var(--soft);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  text-align: center;
}

.about__badge strong,
.about__badge span {
  display: block;
}

.about__badge strong {
  margin-bottom: -25px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 36px;
  letter-spacing: -0.05em;
}

.about__badge span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.about__content > p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 27px 0 28px;
}

.check-list > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.check-list > div > i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 3px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 11px;
}

.check-list strong,
.check-list small {
  display: block;
}

.check-list strong {
  color: var(--navy);
  font-size: 14px;
}

.check-list small {
  color: var(--muted);
  font-size: 12px;
}

.why-us {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(rgba(4, 37, 72, 0.94), rgba(4, 37, 72, 0.94)),
    url("assets/images/why-choose-bg.jpg") center / cover fixed;
  overflow: hidden;
}

.why-us::before,
.why-us::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.why-us::before {
  width: 320px;
  height: 320px;
  top: -150px;
  right: -100px;
  background: rgba(41, 183, 243, 0.13);
}

.why-us::after {
  width: 220px;
  height: 220px;
  bottom: -120px;
  left: 3%;
  border: 45px solid rgba(87, 170, 39, 0.13);
}

.section-heading--light {
  position: relative;
  z-index: 2;
}

.section-heading--light h2,
.contact h2,
.areas h2 {
  color: var(--white);
}

.eyebrow--light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.eyebrow--light i {
  color: var(--yellow);
}

.why-us__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.feature-card {
  padding: 29px 23px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
}

.feature-card > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 21px;
}

.feature-card:nth-child(even) > span {
  color: var(--white);
  background: var(--green);
}

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.process__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process__grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50px;
  left: 17%;
  right: 17%;
  border-top: 2px dashed #bcd8e9;
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 35px 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(6, 47, 95, 0.06);
  text-align: center;
}

.process-card__step {
  position: absolute;
  top: 15px;
  right: 17px;
  color: #c9dce8;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.process-card__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 8px solid #edf7fd;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 1px #d5eaf7;
  font-size: 25px;
}

.process-card:nth-child(2) .process-card__icon {
  background: var(--green);
}

.process-card:nth-child(3) .process-card__icon {
  color: var(--navy);
  background: var(--yellow);
}

.process-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 19px;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.areas {
  padding-top: 20px;
}

.areas__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: center;
  gap: 60px;
  padding: 55px 60px;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(41, 183, 243, 0.35), transparent 30%),
    linear-gradient(125deg, var(--navy), #075ca5);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.areas__inner::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border: 52px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.areas__copy,
.areas__action {
  position: relative;
  z-index: 2;
}

.areas__copy > p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.75);
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.area-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 12px;
  font-weight: 700;
}

.area-pills i {
  margin-right: 6px;
  color: var(--yellow);
}

.areas__action {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(8px);
}

.areas__action > i {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 36px;
}

.areas__action strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
}

.areas__action p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 12px;
}

.areas__action .btn {
  width: 100%;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 75px;
}

.faq__intro {
  align-self: start;
  position: sticky;
  top: 130px;
}

.faq__intro > p {
  color: var(--muted);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion__item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(6, 47, 95, 0.05);
}

.accordion__item button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.accordion__item button i {
  color: var(--blue);
  transition: transform 0.25s ease;
}

.accordion__item.open button i {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion__content p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 13px;
}

.contact {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 15%, rgba(41, 183, 243, 0.26), transparent 28%),
    linear-gradient(130deg, #04294f, #073b73);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.contact__info > p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 30px;
}

.contact-list > a,
.contact-list > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-list > a > i,
.contact-list > div > i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--navy);
  background: var(--yellow);
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.contact-list strong {
  overflow-wrap: anywhere;
  font-size: 11px;
}

.booking-form {
  padding: 34px;
  border-radius: 27px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 65px rgba(2, 25, 48, 0.25);
}

.booking-form__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.booking-form__head > span {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: var(--white);
  background: var(--green);
}

.booking-form h3 {
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 21px;
}

.booking-form__head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

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

.booking-form label {
  display: block;
  margin-bottom: 15px;
  color: #31485c;
  font-size: 12px;
  font-weight: 800;
}

.booking-form label > span {
  color: #80909e;
  font-weight: 500;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #d7e5ee;
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #fbfdff;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 117, 209, 0.1);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 13px 0 0;
  color: #7a8b99;
  font-size: 10px;
  text-align: center;
}

.form-note i {
  margin-right: 4px;
  color: var(--green);
}

.footer {
  color: #c1d0dd;
  background: #031d38;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr 1.1fr;
  gap: 50px;
  padding: 70px 0 50px;
}

.footer__brand img {
  width: 135px;
  height: 120px;
  margin-bottom: 12px;
  background: transparent;
  object-fit: contain;
}

.footer__brand p {
  color: #92a8ba;
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--blue);
}

.footer__column h3 {
  margin: 9px 0 20px;
  color: var(--white);
  font-size: 15px;
}

.footer__column > a,
.footer__column > p {
  display: block;
  margin-bottom: 10px;
  color: #92a8ba;
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer__column > a:hover {
  color: var(--white);
}

.footer__contact i {
  width: 18px;
  color: var(--yellow);
}

.footer__bottom {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7891a6;
  font-size: 10px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: var(--white);
  font-weight: 700;
}

.footer__bottom i {
  margin-left: 5px;
  color: var(--green);
}

.whatsapp-float {
  position: fixed;
  z-index: 999;
  right: 22px;
  bottom: 22px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 11px;
  border: 3px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: #20b95b;
  box-shadow: 0 13px 35px rgba(22, 151, 70, 0.35);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
}

.whatsapp-float i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal--delay-sm {
  transition-delay: 0.08s;
}

.reveal--delay {
  transition-delay: 0.15s;
}

.reveal--delay-lg {
  transition-delay: 0.22s;
}

@media (max-width: 1080px) {
  .hero__grid {
    gap: 45px;
  }

  .main-nav {
    gap: 20px;
  }

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

  .quick-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .quick-strip__grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .service-card__image {
    aspect-ratio: 1.75;
  }

  .about__grid,
  .contact__grid {
    gap: 55px;
  }

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

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

@media (max-width: 860px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    z-index: 900;
    inset: 0;
    background: rgba(3, 29, 56, 0.48);
    backdrop-filter: blur(2px);
  }

  .site-header {
    z-index: 1001;
    backdrop-filter: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar p,
  .topbar__links a:last-child {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    width: 112px;
    height: 68px;
  }

  .brand img {
    width: 104px;
    height: 104px;
  }

  .main-nav {
    position: absolute;
    z-index: 1002;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 92px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 15px 16px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 20px 20px;
    background: var(--white);
    box-shadow: 0 25px 55px rgba(6, 47, 95, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

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

  .main-nav > a:not(.nav-cta) {
    width: 100%;
    padding: 14px 12px;
    border-bottom: 1px solid #edf3f7;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav .nav-cta {
    width: 100%;
    margin-top: 13px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero__grid,
  .about__grid,
  .faq__grid,
  .contact__grid,
  .areas__inner {
    grid-template-columns: 1fr;
  }

  .hero__content {
    text-align: center;
  }

  .hero__content .eyebrow,
  .hero__actions {
    margin-inline: auto;
  }

  .hero__content > p {
    margin-inline: auto;
  }

  .hero__points {
    justify-content: center;
  }

  .hero__visual {
    width: min(100%, 560px);
    margin: 16px auto 0;
  }

  .about__visual {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .about__content {
    text-align: center;
  }

  .about__content .eyebrow,
  .about__content .text-link {
    margin-inline: auto;
  }

  .check-list {
    width: min(100%, 520px);
    margin-inline: auto;
    text-align: left;
  }

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

  .process__grid::before {
    display: none;
  }

  .areas__inner {
    gap: 35px;
  }

  .faq__intro {
    position: static;
    text-align: center;
  }

  .faq__intro .eyebrow {
    margin-inline: auto;
  }

  .contact__info {
    text-align: center;
  }

  .contact__info .eyebrow {
    margin-inline: auto;
  }
}

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

  .topbar__inner {
    min-height: 34px;
  }

  .topbar__links a:first-child {
    font-size: 12px;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    width: 105px;
    height: 64px;
  }

  .brand img {
    width: 98px;
    height: 98px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 76px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .hero__content > p {
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__points {
    align-items: center;
    flex-direction: column;
    gap: 6px;
  }

  .hero__image {
    aspect-ratio: 0.9;
    border-radius: 40% 40% 24px 24px;
  }

  .floating-card--top {
    top: 9%;
    right: -4px;
  }

  .floating-card--bottom {
    bottom: 5%;
    left: -3px;
  }

  .floating-card {
    padding: 9px 11px;
  }

  .floating-card__icon {
    width: 35px;
    height: 35px;
  }

  .floating-card strong {
    font-size: 11px;
  }

  .floating-card small {
    font-size: 9px;
  }

  .quick-strip {
    margin-top: -21px;
  }

  .quick-strip__grid {
    grid-template-columns: 1fr;
  }

  .quick-strip__grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about h2,
  .areas h2,
  .faq h2,
  .contact h2 {
    font-size: 34px;
  }

  .services {
    padding-top: 90px;
  }

  .services__grid,
  .why-us__grid,
  .contact-list,
  .form-row,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .service-card__image {
    aspect-ratio: 1.45;
  }

  .service-card__body {
    padding: 25px 22px;
  }

  .about__grid {
    gap: 65px;
  }

  .about__badge {
    right: -3px;
    bottom: -40px;
    width: 132px;
    height: 132px;
  }

  .about__badge strong {
    margin-bottom: -20px;
    font-size: 29px;
  }

  .about__badge span {
    font-size: 9px;
  }

  .why-us {
    background-attachment: scroll;
  }

  .areas {
    padding-top: 5px;
  }

  .areas__inner {
    padding: 37px 23px;
    border-radius: 25px;
  }

  .area-pills {
    flex-direction: column;
  }

  .booking-form {
    padding: 25px 19px;
  }

  .footer__top {
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
    text-align: center;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    justify-content: center;
    border-width: 3px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float i {
    width: auto;
    height: auto;
    background: transparent;
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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