:root {
  --white: #ffffff;
  --black: #0b0f14;

  --topbar-black: #11161c;
  --accent: #25addc;
  --accent-2: #3d6e76;

  --navy: #0a1630;
  --navy-2: #0f2a44;
  --muted: #7a8794;
  --border: rgba(17, 22, 28, 0.1);

  --container: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  position: relative;
  background: var(--topbar-black);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.2;
  overflow: hidden;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 60%, var(--accent) 60% 100%);
  opacity: 1;
  pointer-events: none;
}

.topbar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.topbar__left {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}

.topbar__brand {
  color: var(--accent);
  font-weight: 600;
}

.topbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.94);
}

.topbar__meta i {
  color: rgba(255, 255, 255, 0.95);
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.92);
  transition: transform 160ms ease, color 160ms ease;
}

.social:hover {
  color: var(--white);
  transform: translateY(-1px);
}

/* Header main */
.header-main {
  position: relative;
  background: var(--topbar-black);
}

.header-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.07) 0 35%, transparent 35% 100%);
  pointer-events: none;
}

.header-main__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand__logo {
  width: 160px;
  height: auto;
  display: block;
}

.header-main__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1 1 auto;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.info-card__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2px;
}

.info-card__value {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.info-card__value a {
  transition: color 160ms ease;
}

.info-card__value a:hover {
  color: var(--accent);
}

.btn-quote {
  flex: 0 0 auto;
  background: var(--accent-2);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 14px 18px;
  border-radius: 0;
  transition: transform 160ms ease, filter 160ms ease;
}

.btn-quote:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* Nav */
.nav {
  position: relative;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(17, 22, 28, 0.02);
  color: #1a2230;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.nav__toggle:hover {
  transform: translateY(-1px);
  background: rgba(17, 22, 28, 0.05);
  color: var(--accent);
}

.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  font-weight: 600;
  font-size: 14px;
  color: #1a2230;
  transition: color 160ms ease;
}

.nav__link:hover {
  color: var(--accent);
}

.plus {
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  transform: translateY(-1px);
}

.nav__item {
  position: relative;
}

.dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -10px;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 10;
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: #1a2230;
  transition: background 140ms ease, color 140ms ease;
}

.dropdown a:hover {
  background: rgba(37, 173, 220, 0.12);
  color: var(--accent);
}

.has-dropdown:hover > .dropdown,
.has-dropdown.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(17, 22, 28, 0.02);
  color: #1a2230;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
  position: relative;
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(17, 22, 28, 0.05);
  color: var(--accent);
}

.badge {
  position: absolute;
  top: -4px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--white);
}

/* Hero */
.hero {
  position: relative;
  height: 640px;
  background:
    linear-gradient(90deg, rgba(8, 22, 40, 0.78) 0 55%, rgba(8, 22, 40, 0.35) 55% 100%),
    url("../hero.jpg");
  background-size: cover, cover;
  background-position: center, center;
  overflow: hidden;
}

/* fallback visual if hero.jpg isn't present */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 70% 30%, rgba(255, 255, 255, 0.22), transparent 60%),
    radial-gradient(900px 600px at 20% 70%, rgba(37, 173, 220, 0.22), transparent 60%),
    linear-gradient(110deg, rgba(3, 10, 20, 0.75), rgba(15, 42, 68, 0.55));
  opacity: 0.18;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(8, 22, 40, 0.96) 0 50%, transparent 50% 100%);
  clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
  opacity: 0.72;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 860px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.hero__kicker-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.hero__title {
  position: relative;
  margin: 0;
  color: var(--white);
  font-size: 64px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.5px;
  padding-left: 18px;
}

.hero__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 10px;
  width: 3px;
  background: var(--accent);
}

.hero__title span {
  display: inline-block;
}

.hero__text {
  margin: 14px 0 0;
  padding-left: 18px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.8;
}

.hero__controls {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #1a2230;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.hero__arrow:hover {
  transform: translateX(2px);
  background: var(--white);
  color: var(--accent);
}

/* Slide animation */
.hero__kicker,
.hero__title,
.hero__text {
  opacity: 1;
  transform: translateY(0);
}

.hero.is-animating .hero__kicker,
.hero.is-animating .hero__title,
.hero.is-animating .hero__text {
  animation: heroIn 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero.is-animating .hero__title {
  animation-delay: 60ms;
}

.hero.is-animating .hero__text {
  animation-delay: 120ms;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shared */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  min-width: 220px;
  background: var(--accent-2);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 160ms ease, filter 160ms ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.section-kicker__icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}

/* About */
.about {
  position: relative;
  padding: 90px 0;
  background: var(--white);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.about__media {
  position: relative;
  min-height: 520px;
}

.about__photo {
  background-size: cover, cover;
  background-position: center, center;
  border: 14px solid var(--white);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.14);
}

.about__photo--lg {
  width: min(520px, 100%);
  height: 520px;
  background-image: url("../1.jpg"), url("../assets/about-1.svg");
}

.about__photo--sm {
  position: absolute;
  left: 56%;
  bottom: -18px;
  width: 260px;
  height: 260px;
  transform: translateX(-50%);
  background-image: url("../2.jpg"), url("../assets/about-2.svg");
}

.about__years {
  position: absolute;
  top: 54px;
  right: -26px;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 14px;
  align-items: center;
}

.about__years-num {
  font-size: 78px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.about__years-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  color: #1a2230;
  letter-spacing: 0.2px;
}

.about__years-text span {
  display: block;
}

.about__rings {
  position: absolute;
  left: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, transparent 0 22%, rgba(37, 173, 220, 0.25) 22% 23%, transparent 23% 38%, rgba(37, 173, 220, 0.22) 38% 39%, transparent 39% 54%, rgba(61, 110, 118, 0.20) 54% 55%, transparent 55% 70%, rgba(37, 173, 220, 0.16) 70% 71%, transparent 71% 100%);
  filter: blur(0.2px);
  opacity: 0.75;
  animation: ringsFloat 6.5s ease-in-out infinite;
}

@keyframes ringsFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(8deg);
  }
}

.about__content {
  max-width: 620px;
}

.about__title {
  margin: 12px 0 0;
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #0f1623;
}

.about__desc {
  margin: 18px 0 0;
  color: #5f6c79;
  font-size: 15px;
  line-height: 1.9;
}

.about__chips {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 16px;
  background: var(--white);
  border: 1px solid rgba(17, 22, 28, 0.12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  color: #0f1623;
  transition: transform 160ms ease, border-color 160ms ease;
}

.chip i {
  color: var(--accent);
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 173, 220, 0.35);
}

.about .btn-primary {
  margin-top: 34px;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(7px);
  transition: opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Variant: pop-in for service cards */
[data-reveal="pop"] {
  transform: translateY(18px) scale(0.98);
  filter: blur(9px);
}

/* Variant: slide-in directions */
[data-reveal="left"] {
  transform: translateX(-22px);
  filter: blur(8px);
}

[data-reveal="right"] {
  transform: translateX(22px);
  filter: blur(8px);
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-reveal="pop"].is-in {
  transform: translateY(0) scale(1);
}

[data-reveal="left"].is-in,
[data-reveal="right"].is-in {
  transform: translateX(0);
}

/* Services */
.services {
  position: relative;
  padding: 90px 0 110px;
  background:
    radial-gradient(1100px 540px at 18% 30%, rgba(37, 173, 220, 0.10), transparent 60%),
    radial-gradient(900px 520px at 88% 70%, rgba(61, 110, 118, 0.10), transparent 60%),
    var(--white);
}

.services__head {
  max-width: 760px;
}

.services__title {
  margin: 12px 0 0;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  color: #0f1623;
}

.services__desc {
  margin: 16px 0 0;
  color: #5f6c79;
  font-size: 15px;
  line-height: 1.9;
}

.services__grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 26px 24px 24px;
  background: var(--white);
  border: 1px solid rgba(17, 22, 28, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(37, 173, 220, 0.22), rgba(61, 110, 118, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 120%;
  height: 120%;
  background: linear-gradient(120deg, transparent 0 40%, rgba(37, 173, 220, 0.12) 45%, transparent 55% 100%);
  transform: rotate(8deg) translateX(-20%);
  opacity: 0;
  pointer-events: none;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(37, 173, 220, 0.12);
  border: 1px solid rgba(37, 173, 220, 0.24);
  color: var(--accent);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.service-card__icon i {
  font-size: 22px;
}

.service-card__title {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 800;
  color: #0f1623;
}

.service-card__text {
  margin: 10px 0 0;
  color: #5f6c79;
  font-size: 14px;
  line-height: 1.9;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 173, 220, 0.34);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.10);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
  animation: sheen 900ms ease both;
}

.service-card:hover .service-card__icon {
  transform: translateY(-2px) rotate(-6deg);
  background: rgba(61, 110, 118, 0.14);
  color: var(--accent-2);
}

@keyframes sheen {
  from {
    transform: rotate(8deg) translateX(-35%);
  }
  to {
    transform: rotate(8deg) translateX(70%);
  }
}

/* Why Choose Us */
.choose {
  position: relative;
  padding: 90px 0 110px;
  background: var(--white);
}

.choose__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: start;
}

.choose__title {
  margin: 16px 0 0;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 800;
  color: #0f1623;
}

.choose__desc {
  margin: 18px 0 0;
  color: #5f6c79;
  font-size: 15px;
  line-height: 1.9;
  max-width: 760px;
}

.choose__cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.choose-card {
  background: rgba(15, 22, 35, 0.02);
  border: 1px solid rgba(17, 22, 28, 0.10);
  padding: 30px 26px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.choose-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(37, 173, 220, 0.10);
  border: 1px solid rgba(37, 173, 220, 0.18);
  color: var(--accent);
}

.choose-card__icon i {
  font-size: 26px;
}

.choose-card__title {
  margin: 18px 0 0;
  font-size: 22px;
  font-weight: 800;
  color: #0f1623;
}

.choose-card__text {
  margin: 10px 0 0;
  color: #5f6c79;
  font-size: 14px;
  line-height: 1.9;
}

.choose-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 173, 220, 0.30);
  background: rgba(37, 173, 220, 0.06);
}

.choose__media {
  position: relative;
  min-height: 640px;
}

.choose__faucet {
  position: absolute;
  left: -44px;
  top: 108px;
  width: 170px;
  height: 170px;
  background: url("../assets/faucet.svg") center / contain no-repeat;
  opacity: 0.55;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.06));
}

.choose__img {
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.14);
}

.choose__img--top {
  width: 100%;
  height: 370px;
  background-image: url("../3.jpg"), url("../assets/choose-1.svg");
}

.choose__video {
  position: absolute;
  left: 0;
  bottom: 54px;
  width: 380px;
  height: 320px;
  background-image: url("../4.jpg"), url("../assets/choose-2.svg");
  background-size: cover, cover;
  background-position: center, center;
  border: 14px solid var(--white);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
}

.play {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.70);
  display: grid;
  place-items: center;
  color: var(--accent);
  position: relative;
  transition: transform 180ms ease, filter 180ms ease;
}

.play::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  animation: pulse 1.8s ease-in-out infinite;
}

.play i {
  transform: translateX(2px);
  font-size: 22px;
}

.play:hover {
  transform: scale(1.03);
  filter: brightness(1.02);
}

@keyframes pulse {
  0% {
    transform: scale(0.86);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.08);
    opacity: 0.12;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

.choose__badge {
  position: absolute;
  right: -26px;
  bottom: 96px;
  width: 250px;
  background: var(--white);
  padding: 26px 22px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(17, 22, 28, 0.10);
  text-align: center;
}

.choose__badge-num {
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}

.choose__badge-text {
  margin-top: 10px;
  font-weight: 700;
  color: #5f6c79;
  line-height: 1.4;
}

/* FAQ */
.faq {
  position: relative;
  padding: 100px 0 110px;
  background: var(--white);
  overflow: hidden;
}

.faq::after {
  content: "";
  position: absolute;
  right: -130px;
  top: 50%;
  transform: translateY(-10%);
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, transparent 0 42%, rgba(37, 173, 220, 0.22) 42% 43%, transparent 43% 58%, rgba(37, 173, 220, 0.18) 58% 59%, transparent 59% 74%, rgba(61, 110, 118, 0.14) 74% 75%, transparent 75% 100%);
  opacity: 0.75;
  pointer-events: none;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.faq__title {
  margin: 16px 0 0;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 800;
  color: #0f1623;
}

.faq__desc {
  margin: 18px 0 0;
  color: #5f6c79;
  font-size: 15px;
  line-height: 1.95;
  max-width: 720px;
}

.faq .btn-primary {
  margin-top: 34px;
  min-width: 210px;
}

.faq__right {
  position: relative;
  z-index: 1;
}

.accordion {
  display: grid;
  gap: 18px;
}

.acc-item {
  background: rgba(15, 22, 35, 0.03);
  border: 1px solid rgba(17, 22, 28, 0.10);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.05);
}

.acc-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 22px 22px;
  text-align: left;
  font-weight: 800;
  color: #0f1623;
  background: transparent;
}

.acc-number {
  font-weight: 900;
  color: #0f1623;
}

.acc-question {
  font-size: 18px;
  line-height: 1.3;
}

.acc-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(37, 173, 220, 0.10);
  border: 1px solid rgba(37, 173, 220, 0.22);
  color: var(--accent);
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.acc-panel {
  height: 0;
  overflow: hidden;
  transition: height 260ms ease;
}

.acc-panel__inner {
  padding: 0 22px 22px;
  color: #5f6c79;
  font-size: 14px;
  line-height: 1.9;
}

.acc-item.is-open .acc-icon {
  transform: rotate(180deg);
  background: rgba(61, 110, 118, 0.12);
  color: var(--accent-2);
}

.acc-item:hover {
  border-color: rgba(37, 173, 220, 0.22);
}

/* Process / How it works */
.process {
  position: relative;
  padding: 95px 0 110px;
  background:
    linear-gradient(180deg, rgba(15, 22, 35, 0.02), rgba(15, 22, 35, 0.00)),
    url("../assets/process-bg.svg");
  background-size: cover;
  background-position: right center;
  overflow: hidden;
}

.process__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.process__kicker {
  justify-content: center;
}

.process__title {
  margin: 14px 0 0;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 900;
  color: #0f1623;
}

.process__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 26px;
  align-items: start;
}

.process-step {
  text-align: center;
}

.process-step__media {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.process-step__img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(37, 173, 220, 0.9);
  outline: 12px solid rgba(255, 255, 255, 0.95);
  outline-offset: -12px;
  position: relative;
  overflow: hidden;
}

.process-step__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(450px 250px at 35% 20%, rgba(255, 255, 255, 0.20), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.process-step__img--1 {
  background-image: url("../assets/process-1.jpg"), url("../assets/process-1.svg");
}

.process-step__img--2 {
  background-image: url("../assets/process-2.jpg"), url("../assets/process-2.svg");
}

.process-step__img--3 {
  background-image: url("../assets/process-3.jpg"), url("../assets/process-3.svg");
}

.process-step__badge {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(37, 173, 220, 0.14);
  display: grid;
  place-items: center;
}

.process-step__badge::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(17, 22, 28, 0.10);
}

.process-step__badge i {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: 22px;
}

.process-step__title {
  margin: 26px 0 0;
  font-size: 28px;
  font-weight: 900;
  color: #0f1623;
}

.process-step__text {
  margin: 12px auto 0;
  max-width: 360px;
  color: #5f6c79;
  font-size: 14px;
  line-height: 1.9;
}

.process__connector {
  position: relative;
  width: 140px;
  height: 280px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.process__connector::before {
  content: "";
  width: 100%;
  height: 2px;
  background: rgba(15, 22, 35, 0.18);
}

.process__connector::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 16px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  opacity: 0;
  clip-path: polygon(0 45%, 80% 45%, 80% 25%, 100% 50%, 80% 75%, 80% 55%, 0 55%);
}

@keyframes flow {
  0% {
    transform: translate(-50%, -50%) translateX(-20px);
    opacity: 0.55;
  }
  50% {
    transform: translate(-50%, -50%) translateX(20px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateX(-20px);
    opacity: 0.55;
  }
}

.process__connector.is-in::before {
  background: rgba(37, 173, 220, 0.22);
}

.process__connector.is-in::after {
  opacity: 1;
  animation: flow 1s ease-in-out infinite;
}

/* Testimonials */
.testimonials {
  position: relative;
  padding: 95px 0 110px;
  background:
    radial-gradient(980px 520px at 80% 10%, rgba(37, 173, 220, 0.08), transparent 60%),
    radial-gradient(820px 520px at 15% 70%, rgba(61, 110, 118, 0.08), transparent 60%),
    var(--white);
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: -520px;
  top: -220px;
  width: 980px;
  height: 980px;
  background: url("../assets/process-bg.svg") left top / cover no-repeat;
  opacity: 0.65;
  pointer-events: none;
}

.testimonials__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.testimonials__kicker {
  justify-content: center;
}

.testimonials__title {
  margin: 14px 0 0;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 900;
  color: #0f1623;
}

.testimonials__grid {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.t-card {
  --t-pad: 30px;
  --t-photo: 150px;
  --t-gap: 26px;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(17, 22, 28, 0.10);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.t-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(37, 173, 220, 0.18), rgba(61, 110, 118, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.t-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 173, 220, 0.30);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.10);
}

.t-card:hover::before {
  opacity: 1;
}

.t-card__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--t-photo) 1fr;
  gap: var(--t-gap);
  padding: var(--t-pad);
}

.t-card__media {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
}

.t-card__photo {
  width: var(--t-photo);
  height: var(--t-photo);
  background-image: url("../assets/testimonial-1.jpg"), url("../assets/testimonial-1.svg");
  background-size: cover, cover;
  background-position: center, center;
  border: 10px solid var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
  outline: 1px solid rgba(17, 22, 28, 0.12);
}

.t-card__photo--alt {
  background-image: url("../assets/testimonial-2.jpg"), url("../assets/testimonial-2.svg");
}

.t-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 18px;
}

.t-card__body {
  padding-top: 4px;
}

.t-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.t-card__name {
  font-size: 26px;
  font-weight: 900;
  color: #0f1623;
  line-height: 1.15;
}

.t-card__role {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.t-card__quote {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: rgba(15, 22, 35, 0.26);
  font-size: 34px;
  transform: translateY(-4px);
}

.t-card__text {
  margin: 16px 0 0;
  color: #5f6c79;
  font-size: 14px;
  line-height: 1.95;
  max-width: 520px;
}

.t-card__bar {
  position: absolute;
  left: calc(var(--t-pad) + var(--t-photo) + var(--t-gap));
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--accent);
}

/* Contact CTA */
.contact-cta {
  position: relative;
  padding: 95px 0;
  background:
    linear-gradient(90deg, rgba(8, 22, 40, 0.90), rgba(8, 22, 40, 0.72)),
    url("../hero.jpg");
  background-size: cover, cover;
  background-position: center, center;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(61, 110, 118, 0.45) 0 14%, transparent 14% 86%, rgba(37, 173, 220, 0.34) 86% 100%);
  opacity: 0.45;
  pointer-events: none;
}

.contact-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 20%, rgba(0, 0, 0, 0.24) 20% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 88% 100%, 100% 70%, 100% 30%, 88% 0, 0 0);
  opacity: 0.55;
  pointer-events: none;
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  justify-items: center;
}

.contact-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.contact-cta__phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-cta__phone-number {
  font-size: 28px;
  line-height: 1;
  transition: color 160ms ease;
}

.contact-cta__phone-number:hover {
  color: var(--white);
}

.contact-cta__title {
  margin: 22px 0 0;
  color: var(--white);
  font-size: 52px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.3px;
  max-width: 980px;
}

.contact-cta__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 34px;
  min-width: 220px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.contact-cta__btn--primary {
  background: var(--accent);
  color: #081628;
}

.contact-cta__btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.contact-cta__btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.contact-cta__btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
}

/* Footer */
.site-footer {
  position: relative;
  background:
    radial-gradient(900px 520px at 18% 20%, rgba(37, 173, 220, 0.14), transparent 60%),
    radial-gradient(900px 520px at 88% 70%, rgba(61, 110, 118, 0.14), transparent 60%),
    linear-gradient(180deg, var(--navy), #081628);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(37, 173, 220, 0.22), transparent 60%),
    radial-gradient(circle at 30% 30%, rgba(61, 110, 118, 0.20), transparent 55%);
  filter: blur(1px);
  opacity: 0.65;
  pointer-events: none;
}

.footer__grid {
  position: relative;
  z-index: 1;
  padding: 82px 0 46px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.15fr;
  gap: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer__logo img {
  width: 170px;
  height: auto;
  display: block;
}

.footer__text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.9;
  max-width: 420px;
}

.footer__social {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  background: rgba(37, 173, 220, 0.14);
  border-color: rgba(37, 173, 220, 0.30);
  color: var(--white);
}

.footer__title {
  margin: 6px 0 18px;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.4;
  transition: transform 160ms ease, color 160ms ease;
}

.footer__links a::before {
  content: "";
  width: 10px;
  height: 2px;
  background: rgba(37, 173, 220, 0.45);
}

.footer__links a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer__contact {
  font-style: normal;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact__item a {
  transition: color 160ms ease;
}

.footer-contact__item a:hover {
  color: var(--white);
}

.footer-contact__icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.footer__bottom {
  position: relative;
  z-index: 1;
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.18);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy,
.footer__mini {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
  .header-main__info {
    gap: 16px;
  }

  .info-card {
    min-width: 200px;
  }

  .hero__title {
    font-size: 54px;
  }

  .about__grid {
    gap: 50px;
  }

  .about__title {
    font-size: 46px;
  }

  .services__title {
    font-size: 42px;
  }

  .choose__title {
    font-size: 46px;
  }

  .faq__title {
    font-size: 46px;
  }

  .process__title {
    font-size: 46px;
  }

  .testimonials__title {
    font-size: 46px;
  }

  .contact-cta__title {
    font-size: 44px;
  }
}

@media (max-width: 920px) {
  .topbar__left {
    display: none;
  }

  .topbar__right {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 10px;
  }

  .header-main__inner {
    flex-wrap: wrap;
  }

  .header-main__info {
    flex: 1 1 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .btn-quote {
    margin-left: auto;
  }

  /* Mobile nav (hamburger) */
  .nav__toggle {
    display: grid;
    place-items: center;
  }

  .nav__list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
    padding: 12px;
    margin: 0;
    z-index: 50;
    gap: 6px;
  }

  .nav.is-open .nav__list {
    display: grid;
  }

  .nav__item {
    width: 100%;
    border: 1px solid rgba(17, 22, 28, 0.08);
    background: rgba(17, 22, 28, 0.015);
  }

  .nav__link {
    width: 100%;
    padding: 12px 12px;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 10px;
    margin: 0;
    display: none;
  }

  .has-dropdown.is-open > .dropdown {
    display: grid;
  }

  .dropdown a {
    padding: 10px 12px 10px 22px;
    border-left: 2px solid rgba(37, 173, 220, 0.18);
  }

  .hero {
    height: 560px;
  }

  .hero__title {
    font-size: 46px;
  }

  .about {
    padding: 70px 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about__media {
    min-height: 520px;
  }

  .about__photo--sm {
    left: 62%;
  }

  .about__years {
    left: auto;
    right: 0;
    top: 16px;
  }

  .about__chips {
    grid-template-columns: 1fr;
  }

  .services {
    padding: 70px 0 90px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .choose {
    padding: 70px 0 90px;
  }

  .choose__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .choose__cards {
    grid-template-columns: 1fr;
  }

  .choose__media {
    min-height: 640px;
  }

  .choose__video {
    width: min(380px, 92%);
  }

  .choose__badge {
    right: 0;
    bottom: 22px;
  }

  .faq {
    padding: 70px 0 90px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .acc-question {
    font-size: 16px;
  }

  .process {
    padding: 70px 0 90px;
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process__connector {
    display: none;
  }

  .process-step__media {
    width: 250px;
    height: 250px;
  }

  .process-step__title {
    font-size: 26px;
  }

  .testimonials {
    padding: 70px 0 90px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .t-card {
    --t-pad: 26px;
    --t-photo: 140px;
    --t-gap: 22px;
  }

  .contact-cta {
    padding: 75px 0;
  }

  .contact-cta__phone-number {
    font-size: 24px;
  }

  .contact-cta__title {
    font-size: 38px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    padding: 70px 0 40px;
  }
}

@media (max-width: 520px) {
  .topbar__meta {
    display: none;
  }

  .topbar__social {
    gap: 10px;
  }

  .header-main__info {
    gap: 12px;
  }

  .info-card {
    min-width: 0;
    width: 100%;
  }

  .btn-quote {
    width: 100%;
    text-align: center;
  }

  .hero {
    height: 520px;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__text {
    font-size: 13px;
  }

  .about__media {
    min-height: 460px;
  }

  .about__photo--lg {
    height: 460px;
  }

  .about__photo--sm {
    left: auto;
    right: -6px;
    transform: none;
    width: 200px;
    height: 200px;
    border-width: 12px;
  }

  .testimonials__title {
    font-size: 38px;
  }

  .t-card__inner {
    grid-template-columns: 1fr;
  }

  .t-card__media {
    justify-items: center;
  }

  .t-card__photo {
    margin: 0 auto;
  }

  .t-card__bar {
    left: 0;
  }

  .contact-cta {
    padding: 64px 0;
  }

  .contact-cta__title {
    font-size: 32px;
  }

  .contact-cta__btn {
    width: 100%;
    min-width: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    padding: 64px 0 36px;
  }

  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .social,
  .btn-quote,
  .dropdown,
  .icon-btn,
  .hero__arrow {
    transition: none !important;
  }

  .hero.is-animating .hero__kicker,
  .hero.is-animating .hero__title,
  .hero.is-animating .hero__text {
    animation: none !important;
  }

  [data-reveal] {
    transition: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .about__rings {
    animation: none !important;
  }

  .service-card,
  .service-card::before,
  .service-card::after,
  .service-card__icon {
    transition: none !important;
    animation: none !important;
  }

  .play::before {
    animation: none !important;
  }

  .acc-panel {
    transition: none !important;
  }

  .acc-icon {
    transition: none !important;
  }

  .process__connector.is-in::after {
    animation: none !important;
  }
}
