:root {
  --container: 1200px;

  --bg: #ffffff;
  --topbar-bg: #141518;
  --topbar-fg: rgba(255, 255, 255, 0.85);

  --text: #0f172a;
  --muted: rgba(255, 255, 255, 0.7);

  --nav-fg: #ffffff;
  --nav-muted: rgba(255, 255, 255, 0.78);

  --brand: #3a83a9;
  --brand-2: #adadad;

  --shadow: 0 10px 28px rgba(2, 6, 23, 0.18);
  --shadow-soft: 0 10px 24px rgba(2, 6, 23, 0.14);

  --radius: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}

.skip-link:focus {
  left: 16px;
}

/* Top bar */
.topbar {
  background: var(--topbar-bg);
  color: var(--topbar-fg);
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.topbar__item i {
  color: rgba(255, 255, 255, 0.65);
}

.topbar__item a {
  color: rgba(255, 255, 255, 0.85);
}

.topbar__item a:hover {
  color: #fff;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.topbar__link {
  color: rgba(255, 255, 255, 0.85);
}

.topbar__link:hover {
  color: #fff;
}

.topbar__sep {
  opacity: 0.35;
}

.topbar__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  color: #fff;
}

/* Navbar */
.navbar {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 76px;
  margin-left: -24px;
}

.brand__logo {
  position: relative;
  width: 78px;
  height: 78px;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding-left: 28px;
}

.nav__link {
  position: relative;
  font-weight: 500;
  color: var(--nav-fg);
  letter-spacing: 0.1px;
  padding: 10px 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 180ms ease;
}

.nav__link:hover {
  color: var(--brand-2);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.navbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.search-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.search-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(58, 131, 169, 0.28);
}

.btn--primary:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--dark {
  background: #0b0c0f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.24);
}

.btn--dark:hover {
  background: #111318;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 14px 22px;
  border-radius: 14px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.nav-toggle__bars {
  width: 22px;
  height: 16px;
  display: block;
  margin-inline: auto;
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after,
.nav-toggle__bars {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
}

.nav-toggle__bars {
  height: 2px;
}

.nav-toggle__bars::before {
  top: -7px;
}

.nav-toggle__bars::after {
  top: 7px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 128px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("hero.jpg"), url("assets/hero-placeholder.svg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: brightness(1.06) contrast(1.06) saturate(1.06);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1000px 420px at 20% 55%,
      rgba(15, 23, 42, 0.55) 0%,
      rgba(15, 23, 42, 0.42) 45%,
      rgba(15, 23, 42, 0.32) 100%
    ),
    linear-gradient(90deg, rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.10));
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 84px 0;
}

.hero__content {
  max-width: 720px;
}

.hero__kicker {
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 18px;
}

.hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.6px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.hero__subtitle {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  font-size: 15px;
  max-width: 520px;
}

.hero__cta {
  margin-top: 34px;
}

.hero__controls {
  display: grid;
  gap: 14px;
  justify-items: center;
}

/* About */
.about {
  position: relative;
  padding: 84px 0;
  background: #fff;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 85% 15%, rgba(58, 131, 169, 0.10), transparent 60%),
    radial-gradient(720px 360px at 10% 85%, rgba(173, 173, 173, 0.18), transparent 55%);
  pointer-events: none;
}

.about__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
}

.about__media {
  position: relative;
  padding: 18px 0 18px 18px;
}

.about__media::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 190px;
  height: 190px;
  background:
    radial-gradient(circle, rgba(58, 131, 169, 0.26) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.55;
  border-radius: 18px;
  pointer-events: none;
}

.about__photoWrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0b1220;
}

.about__photo {
  width: 100%;
  height: min(520px, 55vw);
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.about__stat {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 260px;
  padding: 22px 22px;
  background: var(--brand);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(58, 131, 169, 0.32);
}

.about__stat::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: -18px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--brand);
}

.about__statValue {
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.about__statLabel {
  margin-top: 8px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: 13px;
  color: var(--brand);
  text-transform: uppercase;
}

.about__eyebrow i {
  color: var(--brand);
}

.about__title {
  margin: 14px 0 0;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.6px;
  color: #0b1220;
}

.about__lead {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(15, 23, 42, 0.68);
  max-width: 58ch;
}

.about__features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.about__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
}

.about__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(58, 131, 169, 0.12);
  color: var(--brand);
  border: 1px solid rgba(58, 131, 169, 0.25);
}

.about__featureTitle {
  font-weight: 800;
  color: #0b1220;
}

.about__featureText {
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.62);
  line-height: 1.7;
  font-size: 14px;
}

.about__cta {
  margin-top: 30px;
}

/* Services */
.services {
  position: relative;
  padding: 90px 0 98px;
  background:
    radial-gradient(1000px 520px at 20% 0%, rgba(58, 131, 169, 0.18), transparent 55%),
    radial-gradient(1000px 520px at 80% 20%, rgba(173, 173, 173, 0.18), transparent 60%),
    linear-gradient(180deg, #101114 0%, #0b0c0f 55%, #ffffff 56%, #ffffff 100%);
}

.services__head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 28px;
  padding-bottom: 34px;
}

.services__eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: 13px;
}

.services__title {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.7px;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
}

.services__intro {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.9;
  font-size: 15px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.07);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(2, 6, 23, 0.18);
}

.service-card__media {
  position: relative;
  height: 220px;
  background: #0b1220;
}

.service-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.service-card__icon {
  position: absolute;
  right: 18px;
  bottom: -26px;
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(58, 131, 169, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-card__icon i {
  font-size: 24px;
}

.service-card__body {
  padding: 40px 22px 22px;
}

.service-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #0b1220;
}

.service-card__text {
  margin: 10px 0 0;
  color: rgba(15, 23, 42, 0.62);
  line-height: 1.8;
  font-size: 14.5px;
}

.service-card__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.72);
  transition: color 160ms ease, transform 160ms ease;
}

.service-card__link i {
  color: var(--brand);
}

.service-card__link:hover {
  color: var(--brand);
  transform: translateX(2px);
}

/* Why choose us */
.why {
  position: relative;
  padding: 92px 0;
  background: #f7f7f7;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 82% 18%, rgba(58, 131, 169, 0.14), transparent 60%),
    radial-gradient(720px 420px at 10% 70%, rgba(173, 173, 173, 0.22), transparent 55%),
    repeating-linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.03) 0px,
      rgba(15, 23, 42, 0.03) 1px,
      transparent 1px,
      transparent 14px
    );
  pointer-events: none;
}

.why__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: 13px;
  text-transform: uppercase;
}

.why__title {
  margin: 14px 0 0;
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.7px;
  color: #0b1220;
}

.why__lead {
  margin: 16px 0 0;
  color: rgba(15, 23, 42, 0.62);
  line-height: 1.9;
  font-size: 15px;
  max-width: 62ch;
}

.why__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 18px;
}

.why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.10);
}

.why-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(58, 131, 169, 0.12);
  border: 1px solid rgba(58, 131, 169, 0.24);
  color: var(--brand);
}

.why-card__icon i {
  font-size: 20px;
}

.why-card__title {
  font-weight: 800;
  color: #0b1220;
  line-height: 1.2;
}

.why-card__text {
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.60);
  font-size: 13.5px;
  line-height: 1.65;
}

.why__right {
  position: relative;
  min-height: 520px;
}

.why__photoFrame {
  position: absolute;
  right: 0;
  top: 0;
  width: min(460px, 100%);
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: var(--shadow);
}

.why__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.03) saturate(1.02);
}

.why__bubble {
  position: absolute;
  right: -44px;
  bottom: 86px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.12);
}

.why__accentCorner {
  position: absolute;
  right: -22px;
  top: -22px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  clip-path: polygon(45% 0, 100% 0, 100% 55%);
  opacity: 0.8;
}

/* Latest projects */
.projects {
  position: relative;
  padding: 96px 0 88px;
  background: #fff;
}

.projects__head {
  text-align: center;
  max-width: 920px;
}

.projects__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: 13px;
  text-transform: uppercase;
}

.projects__title {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.8px;
  color: #0b1220;
}

.projects__slider {
  margin-top: 46px;
}

.projects-swiper {
  padding-bottom: 42px;
}

.project-card {
  border-radius: 18px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.project-card__img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.swiper-slide:hover .project-card__img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.03);
}

.projects__pagination.swiper-pagination {
  bottom: 0;
}

.projects__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.35;
  background: rgba(15, 23, 42, 0.35);
}

.projects__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--brand);
}

/* Testimonials */
.testimonials {
  position: relative;
  padding: 96px 0;
  background: #f7f4ef;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 82% 10%, rgba(58, 131, 169, 0.10), transparent 62%),
    radial-gradient(720px 420px at 10% 70%, rgba(173, 173, 173, 0.18), transparent 55%),
    repeating-radial-gradient(
      circle at 50% 50%,
      rgba(15, 23, 42, 0.03) 0 1px,
      transparent 1px 16px
    );
  opacity: 0.55;
  pointer-events: none;
}

.testimonials__head {
  position: relative;
  text-align: center;
  max-width: 920px;
}

.testimonials__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: 13px;
  text-transform: uppercase;
}

.testimonials__title {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.8px;
  color: #0b1220;
}

.testimonials__grid {
  position: relative;
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.t-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.10);
  padding: 28px 28px;
  backdrop-filter: blur(7px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.t-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(2, 6, 23, 0.12);
}

.t-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.t-card__person {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.t-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #0b1220;
  background:
    radial-gradient(circle at 30% 30%, rgba(58, 131, 169, 0.22), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(173, 173, 173, 0.32), transparent 55%),
    #fff;
  border: 4px solid rgba(58, 131, 169, 0.24);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.12);
}

.t-card__name {
  font-weight: 800;
  font-size: 18px;
  color: #0b1220;
}

.t-card__role {
  margin-top: 2px;
  color: rgba(15, 23, 42, 0.58);
  font-size: 13.5px;
}

.t-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(58, 131, 169, 0.10);
  border: 1px solid rgba(58, 131, 169, 0.18);
  color: var(--brand);
  white-space: nowrap;
}

.t-card__quote {
  margin: 18px 0 0;
  color: rgba(15, 23, 42, 0.66);
  line-height: 1.95;
  font-size: 15px;
}

/* CTA */
.cta {
  padding: 52px 0;
  background: var(--brand);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta__eyebrow {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 1.4px;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.cta__title {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.7px;
}

/* Footer */
.footer {
  position: relative;
  background: #0b0c0f;
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 85% 10%, rgba(58, 131, 169, 0.12), transparent 60%),
    radial-gradient(900px 520px at 15% 80%, rgba(173, 173, 173, 0.16), transparent 60%),
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 2px, transparent 2px);
  background-size: auto, auto, 16px 16px;
  background-position: center, center, 85% 18%;
  opacity: 0.45;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr 0.95fr;
  gap: 34px;
  padding: 76px 0 34px;
}

.footer__brand {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.3px;
  font-size: 20px;
}

.footer__title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}

.footer__text {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.9;
  font-size: 14.5px;
}

.footer__social {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.footer__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.85);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer__icon:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
}

.footer__links {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 160ms ease, transform 160ms ease;
}

.footer__links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer__form {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.footer__form input {
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 16px;
  outline: none;
}

.footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer__form input:focus {
  border-color: rgba(58, 131, 169, 0.6);
  box-shadow: 0 0 0 4px rgba(58, 131, 169, 0.18);
}

.footer__contact {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.80);
}

.footer__contact i {
  color: var(--brand-2);
}

.footer__bottom {
  position: relative;
  padding: 0 0 28px;
}

.footer__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
}

.footer__copyright {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.round-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.16);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.round-btn:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.26);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 980px) {
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar__inner {
    grid-template-columns: auto 1fr auto;
  }

  .search-btn {
    display: none;
  }

  .navbar__actions > .btn {
    display: none;
  }

  .navbar__actions {
    grid-column: 2;
    justify-self: end;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    grid-column: 3;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    z-index: 60;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 24px;
    gap: 16px;
    flex-direction: column;
  }

  .nav.is-open {
    display: flex;
  }

  .navbar {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .hero {
    min-height: calc(100svh - 170px);
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__controls {
    justify-content: flex-start;
    grid-auto-flow: column;
    justify-items: start;
  }

  .about {
    padding: 64px 0;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__media {
    padding: 0;
  }

  .about__media::before {
    right: 12px;
    top: 12px;
  }

  .about__stat {
    left: 12px;
    bottom: 12px;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .services {
    padding: 70px 0 78px;
  }

  .services__head {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 26px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card__media {
    height: 240px;
  }

  .why {
    padding: 70px 0;
  }

  .why__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why__right {
    min-height: 420px;
  }

  .why__photoFrame {
    position: relative;
    width: 100%;
    height: 420px;
  }

  .why__bubble {
    right: -18px;
    bottom: 34px;
    width: 140px;
    height: 140px;
  }

  .why__accentCorner {
    right: -18px;
    top: -18px;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .projects {
    padding: 76px 0 70px;
  }

  .project-card__img {
    height: 320px;
  }

  .testimonials {
    padding: 76px 0;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .topbar__right {
    width: 100%;
    justify-content: space-between;
  }

  .navbar__actions {
    gap: 10px;
  }

  .btn {
    padding: 11px 14px;
  }

  .search-btn {
    width: 42px;
    height: 42px;
  }

  .hero__inner {
    padding: 62px 0;
  }

  .hero__kicker {
    font-size: 16px;
  }

  .about {
    padding: 54px 0;
  }

  .about__photo {
    height: 340px;
  }

  .about__stat {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .about__stat::after {
    display: none;
  }

  .services {
    padding: 62px 0 70px;
  }

  .why {
    padding: 62px 0;
  }

  .why__right {
    min-height: 360px;
  }

  .why__photoFrame {
    height: 360px;
    border-radius: 22px;
  }

  .projects {
    padding: 66px 0 62px;
  }

  .projects__slider {
    margin-top: 34px;
  }

  .project-card__img {
    height: 260px;
  }

  .testimonials {
    padding: 66px 0;
  }

  .t-card {
    padding: 22px 18px;
  }

  .t-card__top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    padding: 66px 0 28px;
  }
}

@media (max-width: 520px) {
  .cta {
    padding: 42px 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
