/* Prarvi Consultancy — Home page (revamp) */

@import url("glass-system.css");
@import url("site-fab.css?v=4");
@import url("mobile-refinements.css?v=1");
@import url("service-card-illus.css?v=17");

:root {
  --navy: #0b0a88;
  --navy-dark: #070766;
  --teal: #55d1cb;
  --teal-dark: #3bb8b2;
  --gold: #e8b923;
  --text: #1a1a2e;
  --text-muted: #5c6370;
  --bg: #f6f8fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(11, 10, 136, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 10, 136, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 96px;
  --topbar-h: 0px;
  --section-y: 5rem;
  --section-y-tight: 3rem;
  --footer-bg-image: url("../img/pages/heroes/site-footer-bg.jpg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--teal-dark);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  left: 0;
}

/* Top bar */
.topbar {
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy) 55%, #1211a8 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(85, 209, 203, 0.2);
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  min-height: var(--topbar-h);
  padding: 0.4rem 0;
}

.topbar a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: var(--teal);
}

.topbar a i {
  font-size: 1rem;
  color: var(--teal);
  opacity: 0.95;
}

.topbar__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.topbar__group:first-child a {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar__group:first-child a:hover {
  background: rgba(85, 209, 203, 0.18);
  border-color: rgba(85, 209, 203, 0.35);
}

.topbar__social {
  display: flex;
  gap: 0.5rem;
}

.topbar__social a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.topbar__social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
}

.topbar__social a:hover i {
  color: var(--navy);
}

/* Sticky shell: header only */
.site-shell {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(11, 10, 136, 0.1);
}

/* Header */
.site-header {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    var(--teal) 35%,
    #9ef8f5 50%,
    var(--teal) 65%,
    var(--navy) 100%
  );
  pointer-events: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
  padding-block: 0.65rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  transition: transform 0.25s ease;
}

.site-header__logo:hover {
  transform: scale(1.02);
}

.site-header__logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(200px, 38vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(11, 10, 136, 0.12));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.site-header__logo:hover img {
  filter: drop-shadow(0 4px 14px rgba(85, 209, 203, 0.35));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(11, 10, 136, 0.12);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(85, 209, 203, 0.55);
  background: rgba(85, 209, 203, 0.1);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--navy);
  background: rgba(11, 10, 136, 0.06);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}

.main-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.05rem;
  list-style: none;
  margin: 0;
  padding: 0.3rem;
  background: rgba(246, 248, 252, 0.95);
  border: 1px solid rgba(11, 10, 136, 0.08);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.main-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.62rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  color: #3a4260;
  border-radius: 12px;
  text-decoration: none;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.main-nav__link:hover {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(11, 10, 136, 0.08);
  transform: translateY(-1px);
}

.main-nav__link.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #1a19b0 55%, #0d0c92 100%);
  box-shadow: 0 6px 18px rgba(11, 10, 136, 0.28);
}

.nav-item--dropdown {
  position: relative;
}

.nav-item--dropdown > .main-nav__link--services::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.2rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}

.nav-item--dropdown:hover > .main-nav__link--services::after,
.nav-item--dropdown:focus-within > .main-nav__link--services::after,
.nav-item--dropdown.is-open > .main-nav__link--services::after {
  transform: rotate(180deg);
}

.nav-item--dropdown:hover > .main-nav__link--services,
.nav-item--dropdown:focus-within > .main-nav__link--services,
.nav-item--dropdown.is-open > .main-nav__link--services {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(11, 10, 136, 0.1);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  min-width: 24.5rem;
  margin: 0;
  padding: 0.75rem;
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(11, 10, 136, 0.1);
  border-radius: 16px;
  box-shadow:
    0 20px 56px rgba(11, 10, 136, 0.16),
    0 0 0 1px rgba(85, 209, 203, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__title {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.5rem 0.65rem 0.35rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.6rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 10px;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown a:hover {
  color: var(--navy);
  background: linear-gradient(90deg, rgba(85, 209, 203, 0.16) 0%, rgba(85, 209, 203, 0.06) 100%);
  transform: translateX(3px);
}

.nav-dropdown__footer {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--border);
}

.nav-dropdown__footer a {
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #1a19b0 100%);
  box-shadow: 0 4px 14px rgba(11, 10, 136, 0.2);
}

.nav-dropdown__footer a:hover {
  color: var(--white);
  background: linear-gradient(135deg, #1a19b0 0%, var(--navy-dark) 100%);
  transform: translateY(-1px);
}

.nav-dropdown__footer a i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.nav-dropdown__footer a:hover i {
  transform: translateX(4px);
}

.nav-dropdown__wide {
  grid-column: 1 / -1;
}

.nav-dropdown__wide a {
  white-space: normal;
}

.nav-dropdown__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--navy);
  background: linear-gradient(145deg, rgba(11, 10, 136, 0.07) 0%, rgba(85, 209, 203, 0.2) 100%);
  border: 1px solid rgba(85, 209, 203, 0.3);
  border-radius: 10px;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown a:hover .nav-dropdown__icon {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy) 0%, #1a19b0 100%);
  border-color: var(--navy);
  transform: scale(1.05);
}

.site-header .header-cta {
  margin-left: 0.35rem;
  padding-inline: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow:
    0 4px 18px rgba(85, 209, 203, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.site-header .header-cta i {
  font-size: 1.15rem;
}

/* Buttons */
.btn {
  --btn-h: 2.75rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-h);
  padding: 0 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.2s ease;
}

.btn:focus {
  outline: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(85, 209, 203, 0.65);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn--sm {
  --btn-h: 2.25rem;
  padding: 0 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.btn--lg {
  --btn-h: 3.25rem;
  padding: 0 1.85rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* Primary — navy gradient + soft glow */
.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, #1211a8 0%, var(--navy) 45%, #090878 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 18px rgba(11, 10, 136, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn--primary::after {
  content: "→";
  font-size: 1.05em;
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.btn--primary:hover {
  color: var(--white);
  background: linear-gradient(135deg, #1c1bb8 0%, #0e0d9a 50%, var(--navy-dark) 100%);
  box-shadow:
    0 8px 28px rgba(11, 10, 136, 0.45),
    0 0 0 1px rgba(85, 209, 203, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn--primary:hover::after {
  transform: translateX(4px);
}

/* Header / topbar CTA — teal accent */
.btn--accent {
  color: var(--navy-dark);
  background: linear-gradient(135deg, #7ae8e2 0%, var(--teal) 55%, #3bc4bd 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 3px 14px rgba(85, 209, 203, 0.45);
}

.btn--accent::after {
  display: none;
}

.btn--accent:hover {
  color: var(--navy-dark);
  background: linear-gradient(135deg, #9ef0eb 0%, #6dddd6 100%);
  box-shadow: 0 6px 20px rgba(85, 209, 203, 0.55);
  transform: translateY(-2px);
}

/* Outline — glass on hero, solid elsewhere */
.btn--outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(11, 10, 136, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(11, 10, 136, 0.08);
}

.btn--outline::after {
  display: none;
}

.btn--outline:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 6px 22px rgba(11, 10, 136, 0.3);
  transform: translateY(-2px);
}

.btn--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn--outline-light::after {
  display: none;
}

.btn--outline-light:hover {
  color: var(--navy-dark);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Soft — top bar / low emphasis */
.btn--soft {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--soft::after {
  display: none;
}

.btn--soft:hover {
  color: var(--navy-dark);
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
}

/* Ghost — modal secondary */
.btn--ghost {
  color: var(--navy);
  background: var(--bg);
  border-color: var(--border);
}

.btn--ghost::after {
  display: none;
}

.btn--ghost:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--navy);
}

.btn--white {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(11, 10, 136, 0.1);
}

.btn--white::after {
  display: none;
}

.btn--white:hover {
  color: var(--navy);
  background: var(--bg);
  border-color: var(--navy);
}

/* No arrow variant (form submit, etc.) */
.btn--no-arrow::after {
  display: none !important;
}

.hero__actions .btn--outline {
  background: rgba(255, 255, 255, 0.92);
}

.form-actions .btn--primary {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

/* announcement actions — see split modal block below */

/* Professional hero — full-bleed imagery + corporate overlay */
.hero--professional {
  position: relative;
  min-height: min(62vh, 540px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  color: var(--white);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-color: #1a1f3c;
  background-image: linear-gradient(135deg, #0b0a88 0%, #1a3d6e 50%, #1a6b66 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide--1 {
  background-image:
    url("../img/hero-slider/slider-1.avif"),
    url("../img/hero-slider/slider-1.jpg"),
    linear-gradient(135deg, #0b0a88 0%, #1a3d6e 50%, #1a6b66 100%);
}

.hero__slide--2 {
  background-image:
    url("../img/hero-slider/slider-2.avif"),
    url("../img/hero-slider/slider-2.jpg"),
    linear-gradient(135deg, #0b0a88 0%, #1a3d6e 50%, #1a6b66 100%);
}

.hero__slide--3 {
  background-image:
    url("../img/hero-slider/slider-3.avif"),
    url("../img/hero-slider/slider-3.jpg"),
    linear-gradient(135deg, #0b0a88 0%, #1a3d6e 50%, #1a6b66 100%);
}

.hero__slide--4 {
  background-image:
    url("../img/hero-slider/slider-4.jpg"),
    linear-gradient(135deg, #0b0a88 0%, #1a3d6e 50%, #1a6b66 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 75% at 50% 42%, rgba(0, 0, 0, 0.5) 0%, transparent 72%),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.52) 100%
    );
}

.hero__container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: clamp(2rem, 4vh, 2.75rem) 0 clamp(1.25rem, 2.5vh, 1.75rem);
}

.hero__partners {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  padding: clamp(0.65rem, 1.2vw, 0.9rem) 0;
  background-color: #fff;
  background-image: linear-gradient(
    90deg,
    var(--navy-dark) 0%,
    rgba(7, 7, 102, 0.72) 8%,
    rgba(255, 255, 255, 0.35) 18%,
    #fff 28%,
    #fff 72%,
    rgba(255, 255, 255, 0.35) 82%,
    rgba(7, 7, 102, 0.72) 92%,
    var(--navy-dark) 100%
  );
}

.hero__partners .partners-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.hero__partners-types {
  margin: 0 auto 0.65rem;
  padding: 0 1rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--navy);
}

.hero__layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  gap: 0;
}

/* Text block — centered, hero-scale type */
.hero__copy-block {
  padding: 0;
  background: transparent;
  border: none;
  animation: heroEnter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero__copy-block.is-changing {
  opacity: 0;
  transform: translateY(16px);
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__slide.is-active {
  animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

.hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 0.85rem;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8faf7;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65), 0 1px 2px rgba(0, 0, 0, 0.45);
}

.hero__label::before,
.hero__label::after {
  content: "";
  width: 2.5rem;
  height: 3px;
  background: var(--teal);
  flex-shrink: 0;
  border-radius: 2px;
}

.hero--professional .hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-wrap: balance;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.55),
    0 4px 20px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(0, 0, 0, 0.25);
}

.hero--professional .hero__text {
  margin: 0 auto 1.25rem;
  max-width: 40rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55), 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  margin: 0;
  padding: 1.25rem 0 0;
  list-style: none;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__metrics li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  border-right: none;
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  font-weight: 500;
  color: #ffffff;
  opacity: 0;
  animation: heroMetricIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.8),
    0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero__metrics li:nth-child(1) {
  animation-delay: 0.55s;
}

.hero__metrics li:nth-child(2) {
  animation-delay: 0.72s;
}

.hero__metrics li:nth-child(3) {
  animation-delay: 0.89s;
}

@keyframes heroMetricIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__controls {
  opacity: 0;
  animation: heroEnter 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}

.hero__metrics strong {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: #b8faf7;
  letter-spacing: -0.02em;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 2px 12px rgba(0, 0, 0, 0.55);
}

/* Professional CTA buttons */
.btn--pro {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn--pro::after {
  display: none;
}

.btn--pro:hover {
  color: var(--navy);
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.btn--pro-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.btn--pro-ghost::after {
  display: none;
}

.btn--pro-ghost:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--white);
}

.hero__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  margin: 0 auto;
}

.hero__count {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}

#hero-current {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}

.hero__count-sep {
  margin: 0 0.2rem;
  opacity: 0.75;
}

.hero__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero__dot {
  width: 2rem;
  height: 2px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.hero__dot.is-active {
  width: 2.75rem;
  background: var(--teal);
}

.hero__arrow {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--teal);
}

.hero__arrow:active {
  transform: scale(0.96);
}

/* Trust bar — flat navy band, centered stats */
.trust-bar {
  padding: clamp(2rem, 4vw, 2.5rem) 0;
  background: var(--navy);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-bar__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-bar__cell:last-child {
  border-right: none;
}

.trust-bar__cell i {
  font-size: 1.65rem;
  line-height: 1;
  color: var(--teal);
}

.trust-bar__cell strong {
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.trust-bar__cell strong .las,
.hero__metrics strong .las {
  margin-right: 0.15rem;
  font-size: 0.85em;
  color: var(--teal);
  vertical-align: middle;
}

.trust-bar__cell span {
  max-width: 11rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

/* Sections */
.section {
  padding: var(--section-y) 0;
}

.trust-bar + .section.section--services,
.hero--professional + .section.section--services {
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.section--alt {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.section__header.reveal.is-visible .section__label::after {
  width: 2.75rem;
}

.section__label::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin: 0.4rem auto 0;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  border-radius: 2px;
  transition: width 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.section__title span {
  color: var(--teal-dark);
}

.section__desc {
  margin: 0;
  color: var(--text-muted);
}

/* Services — corporate section */
.section--services {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.section--services::before,
.section--services::after {
  display: none;
}

.section--services .container {
  position: relative;
  z-index: 1;
}

/* Services headline — large, centered */
.section__header--services {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  padding: 0;
  border: none;
}

.hero--professional + .section.section--services .section__header--services {
  margin-top: 0;
}

.services-head__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.services-head__label::before,
.services-head__label::after {
  content: "";
  width: 2.5rem;
  height: 3px;
  background: var(--teal);
  flex-shrink: 0;
  border-radius: 2px;
}

.services-head__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-wrap: balance;
}

.services-head__title span {
  color: var(--teal-dark);
}

.services-head__text {
  margin: 0 auto;
  max-width: 40rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
}

.services-panel {
  position: relative;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 56px rgba(11, 10, 136, 0.1);
  backdrop-filter: blur(10px);
}

.services-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 55%, var(--navy) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.section--services .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.section--services .service-card {
    min-height: 8.5rem;
    padding: 1rem 3.25rem 0.95rem 0.9rem;
  }

.section--services .service-card:nth-child(n + 9) {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  min-height: 7.25rem;
  padding: 1rem 2.75rem 1rem 1.15rem;
}

.section--services .service-card:nth-child(n + 9) .service-card__icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.section--services .service-card:nth-child(n + 9) .service-card__body {
  flex: 1;
  min-width: 0;
}

.section--services .service-card:nth-child(n + 9) .service-card__cta {
  margin-top: 0;
  margin-left: 0.5rem;
  flex-shrink: 0;
  align-self: center;
}

.section--services .service-card:nth-child(n + 9) .service-card__illus {
  top: 0.5rem;
  right: 0.5rem;
  width: clamp(3.5rem, 8vw, 5rem);
  height: clamp(3.5rem, 8vw, 5rem);
  transition: transform 0.25s ease;
}

.section--services .service-card:nth-child(n + 9):hover .service-card__illus {
  transform: translateX(-7rem);
}

.section--services .service-card h3 {
  max-width: 100%;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
}

.section--services .service-card__body {
  max-width: 100%;
}

.section--services .service-card__tagline {
  font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 9.25rem;
  padding: 1.15rem 4.25rem 1.1rem 1rem;
  overflow: hidden;
  background:
    linear-gradient(165deg, #ffffff 0%, #fafbff 52%, #f6f8fc 100%);
  border: 1px solid rgba(11, 10, 136, 0.09);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 18px rgba(11, 10, 136, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: left;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
}

/* Premium fintech card accents — unique blurred glass shapes per loan */
.service-card__accent {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.service-card__accent::before,
.service-card__accent::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

/* Home — peaked house-inspired glass bloom (top-right) */
.service-card--home .service-card__accent::before {
  top: -28%;
  right: -14%;
  width: 56%;
  height: 50%;
  border-radius: 42% 58% 52% 48% / 48% 42% 58% 52%;
  background: radial-gradient(ellipse at 65% 35%, rgba(85, 209, 203, 0.32), rgba(11, 10, 136, 0.1) 58%, transparent 76%);
  filter: blur(16px);
  opacity: 0.65;
  animation: svc-accent-drift-a 10s ease-in-out infinite;
}

.service-card--home .service-card__accent::after {
  top: 2%;
  right: 6%;
  width: 32%;
  height: 26%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(85, 209, 203, 0.12) 70%, transparent 100%);
  filter: blur(8px);
  opacity: 0.45;
  animation: svc-accent-drift-b 8s ease-in-out infinite;
}

/* Business — geometric mesh (top-right) */
.service-card--business .service-card__accent::before {
  top: -10%;
  right: -8%;
  width: 52%;
  height: 48%;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(11, 10, 136, 0.06) 25%, transparent 25%) 0 0 / 12px 12px,
    radial-gradient(ellipse at 80% 20%, rgba(85, 209, 203, 0.28), transparent 68%);
  filter: blur(14px);
  opacity: 0.6;
  animation: svc-accent-drift-a 11s ease-in-out infinite;
}

.service-card--business .service-card__accent::after {
  top: 8%;
  right: 10%;
  width: 22%;
  height: 22%;
  border-radius: 6px;
  border: 1px solid rgba(85, 209, 203, 0.2);
  background: rgba(255, 255, 255, 0.25);
  filter: blur(6px);
  opacity: 0.4;
  transform: rotate(12deg);
  animation: svc-accent-drift-b 9s ease-in-out infinite;
}

/* Personal — flowing blob (bottom-right) */
.service-card--personal .service-card__accent::before {
  bottom: -22%;
  right: -18%;
  width: 62%;
  height: 58%;
  border-radius: 58% 42% 62% 38% / 48% 58% 42% 52%;
  background: radial-gradient(ellipse at 40% 40%, rgba(85, 209, 203, 0.26), rgba(11, 10, 136, 0.08) 65%, transparent 82%);
  filter: blur(20px);
  opacity: 0.58;
  animation: svc-accent-drift-c 9.5s ease-in-out infinite;
}

.service-card--personal .service-card__accent::after {
  bottom: 8%;
  right: 4%;
  width: 36%;
  height: 30%;
  border-radius: 63% 37% 54% 46% / 42% 61% 39% 58%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(85, 209, 203, 0.14));
  filter: blur(12px);
  opacity: 0.38;
  animation: svc-accent-drift-b 7.5s ease-in-out infinite;
}

/* Education — academic arc (top-right) */
.service-card--education .service-card__accent::before {
  top: -18%;
  right: -6%;
  width: 50%;
  height: 44%;
  border-radius: 50% 50% 42% 42%;
  background: radial-gradient(ellipse at 50% 100%, rgba(85, 209, 203, 0.3), rgba(11, 10, 136, 0.09) 55%, transparent 78%);
  filter: blur(15px);
  opacity: 0.62;
  animation: svc-accent-drift-a 10.5s ease-in-out infinite;
}

.service-card--education .service-card__accent::after {
  top: 6%;
  right: 14%;
  width: 28%;
  height: 14%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
  filter: blur(6px);
  opacity: 0.42;
  animation: svc-accent-drift-b 8.5s ease-in-out infinite;
}

/* Car — dynamic motion lines (right edge) */
.service-card--car .service-card__accent::before {
  top: 12%;
  right: -4%;
  width: 46%;
  height: 72%;
  background: repeating-linear-gradient(
    -24deg,
    transparent 0,
    transparent 14px,
    rgba(85, 209, 203, 0.14) 14px,
    rgba(85, 209, 203, 0.14) 15px
  );
  mask-image: linear-gradient(90deg, transparent, #000 45%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%);
  filter: blur(4px);
  opacity: 0.5;
  animation: svc-accent-drift-d 7s ease-in-out infinite;
}

.service-card--car .service-card__accent::after {
  top: -12%;
  right: 0;
  width: 38%;
  height: 38%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 209, 203, 0.22), transparent 70%);
  filter: blur(18px);
  opacity: 0.55;
  animation: svc-accent-drift-a 9s ease-in-out infinite;
}

/* Term — structured grid (top-left) */
.service-card--term .service-card__accent::before {
  top: -6%;
  left: -6%;
  width: 48%;
  height: 46%;
  background:
    linear-gradient(rgba(11, 10, 136, 0.05) 1px, transparent 1px) 0 0 / 14px 14px,
    linear-gradient(90deg, rgba(11, 10, 136, 0.05) 1px, transparent 1px) 0 0 / 14px 14px,
    radial-gradient(ellipse at 30% 30%, rgba(85, 209, 203, 0.24), transparent 72%);
  filter: blur(10px);
  opacity: 0.55;
  animation: svc-accent-drift-c 10s ease-in-out infinite;
}

.service-card--term .service-card__accent::after {
  top: 10%;
  right: 8%;
  width: 24%;
  height: 24%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(85, 209, 203, 0.18);
  filter: blur(5px);
  opacity: 0.35;
  animation: svc-accent-drift-b 8s ease-in-out infinite;
}

/* Machinery — industrial gear glow (top-right) */
.service-card--machinery .service-card__accent::before {
  top: -12%;
  right: -10%;
  width: 52%;
  height: 50%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 70% 30%, rgba(85, 209, 203, 0.3), transparent 68%),
    repeating-conic-gradient(from 0deg, rgba(11, 10, 136, 0.04) 0deg 30deg, transparent 30deg 60deg);
  filter: blur(14px);
  opacity: 0.62;
  animation: svc-accent-drift-a 9.5s ease-in-out infinite;
}

.service-card--machinery .service-card__accent::after {
  top: 6%;
  right: 10%;
  width: 28%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(85, 209, 203, 0.15) 70%, transparent 100%);
  filter: blur(7px);
  opacity: 0.42;
  animation: svc-accent-drift-b 7.5s ease-in-out infinite;
}

/* LAP — architectural grid (full card, subtle) */
.service-card--lap .service-card__accent::before {
  inset: 0;
  background:
    linear-gradient(rgba(11, 10, 136, 0.035) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(11, 10, 136, 0.035) 1px, transparent 1px) 0 0 / 18px 18px;
  mask-image: radial-gradient(ellipse 85% 75% at 100% 0%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 100% 0%, #000 15%, transparent 72%);
  opacity: 0.7;
  animation: svc-accent-drift-a 12s ease-in-out infinite;
}

.service-card--lap .service-card__accent::after {
  bottom: -15%;
  right: -10%;
  width: 54%;
  height: 48%;
  border-radius: 12px;
  background: radial-gradient(ellipse at 60% 40%, rgba(85, 209, 203, 0.26), transparent 72%);
  filter: blur(18px);
  opacity: 0.5;
  animation: svc-accent-drift-b 9s ease-in-out infinite;
}

/* Mortgage — document layers (center-right) */
.service-card--mortgage .service-card__accent::before {
  top: 18%;
  right: 4%;
  width: 38%;
  height: 42%;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.45), rgba(85, 209, 203, 0.12));
  box-shadow: -8px 10px 24px rgba(11, 10, 136, 0.06);
  filter: blur(8px);
  opacity: 0.45;
  transform: rotate(-6deg);
  animation: svc-accent-drift-d 10s ease-in-out infinite;
}

.service-card--mortgage .service-card__accent::after {
  top: 8%;
  right: 14%;
  width: 34%;
  height: 38%;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(85, 209, 203, 0.2), rgba(11, 10, 136, 0.06));
  filter: blur(10px);
  opacity: 0.38;
  transform: rotate(4deg);
  animation: svc-accent-drift-b 8.5s ease-in-out infinite;
}

/* Balance transfer — directional flow (diagonal) */
.service-card--transfer .service-card__accent::before {
  top: -20%;
  right: -22%;
  width: 68%;
  height: 68%;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg at 50% 50%,
    transparent 0deg,
    rgba(85, 209, 203, 0.22) 40deg,
    rgba(11, 10, 136, 0.08) 90deg,
    transparent 140deg
  );
  filter: blur(20px);
  opacity: 0.55;
  animation: svc-accent-drift-a 9s ease-in-out infinite;
}

.service-card--transfer .service-card__accent::after {
  bottom: -8%;
  left: -12%;
  width: 52%;
  height: 40%;
  border-radius: 50% 50% 45% 55%;
  background: linear-gradient(118deg, transparent 20%, rgba(85, 209, 203, 0.18) 55%, transparent 85%);
  filter: blur(14px);
  opacity: 0.48;
  animation: svc-accent-drift-c 8s ease-in-out infinite;
}

.service-card:hover .service-card__accent::before,
.service-card:hover .service-card__accent::after {
  animation-play-state: paused;
}

.service-card:hover .service-card__accent::before {
  opacity: 0.78;
  transform: translate(-5px, 6px) scale(1.06);
}

.service-card:hover .service-card__accent::after {
  opacity: 0.55;
  transform: translate(4px, -4px) scale(1.05);
}

.service-card--business:hover .service-card__accent::after {
  transform: rotate(12deg) translate(4px, -4px) scale(1.05);
}

.service-card--mortgage:hover .service-card__accent::before {
  transform: rotate(-6deg) translate(-5px, 4px) scale(1.05);
}

.service-card--mortgage:hover .service-card__accent::after {
  transform: rotate(4deg) translate(3px, -3px) scale(1.04);
}

.service-card--car:hover .service-card__accent::before {
  transform: translate(-8px, 2px);
}

@keyframes svc-accent-drift-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-4px, 5px) scale(1.03);
  }
}

@keyframes svc-accent-drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(5px, -4px) scale(1.04);
  }
}

@keyframes svc-accent-drift-c {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-3px, -5px) scale(1.05);
  }
}

@keyframes svc-accent-drift-d {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-6px, 3px);
  }
}

.service-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 100%);
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(85, 209, 203, 0.06) 0%, transparent 48%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 209, 203, 0.38);
  background:
    linear-gradient(165deg, #ffffff 0%, #f8faff 48%, #f2f6fb 100%);
  box-shadow:
    0 18px 40px rgba(11, 10, 136, 0.11),
    0 0 0 1px rgba(85, 209, 203, 0.2),
    0 0 32px rgba(85, 209, 203, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  color: inherit;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(145deg, var(--navy) 0%, #1a19a8 100%);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(11, 10, 136, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.service-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.65rem;
  background: linear-gradient(145deg, #f4f6fb 0%, rgba(85, 209, 203, 0.22) 100%);
  border: 1px solid rgba(11, 10, 136, 0.08);
  border-radius: 50%;
  box-shadow:
    0 4px 14px rgba(11, 10, 136, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card__icon i {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--navy);
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.service-card:hover .service-card__icon i {
  transform: scale(1.05);
  color: var(--white);
}

.service-card__title-join {
  white-space: nowrap;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 72%;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-align: left;
  color: var(--navy);
  transition: color 0.2s ease;
}

.service-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  width: 100%;
  max-width: 72%;
}

.service-card__tagline {
  margin: 0;
  max-width: 100%;
  font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.service-card__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-dark);
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    color 0.2s ease;
}

.service-card__cta .las {
  font-size: 0.85rem;
  transition: transform 0.22s ease;
}

.service-card:hover .service-card__cta,
.service-card.is-current .service-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card__cta .las,
.service-card.is-current .service-card__cta .las {
  transform: translateX(2px);
}

.service-card.is-current {
  border-color: rgba(11, 10, 136, 0.28);
  box-shadow: 0 14px 36px rgba(11, 10, 136, 0.14);
}

.service-card.is-current::before {
  opacity: 1;
}

.service-card.is-current .service-card__icon {
  transform: scale(1.05);
  background: linear-gradient(145deg, var(--navy) 0%, #1a19a8 100%);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(11, 10, 136, 0.2);
}

.service-card.is-current .service-card__icon i {
  color: var(--white);
}

.service-card:hover .service-card__tagline {
  color: #4a5568;
}

.service-card:hover h3 {
  color: var(--navy-dark);
}

/* Why us */
.section--why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(85, 209, 203, 0.1) 0%, transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(11, 10, 136, 0.06) 0%, transparent 38%),
    var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.why-grid--with-photo .why-grid__col--media {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.why-grid__visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(11, 10, 136, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.why-grid__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 10, 136, 0.35) 100%);
  pointer-events: none;
}

.why-grid__visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 16rem;
  object-fit: cover;
  vertical-align: middle;
  transition: transform 0.5s ease;
}

.why-grid__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(85, 209, 203, 0.35);
  box-shadow: 0 10px 28px rgba(11, 10, 136, 0.12);
}

.why-grid__badge strong {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}

.why-grid__badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.why-expertise {
  position: relative;
  padding: 1.35rem 1.25rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(11, 10, 136, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(11, 10, 136, 0.07);
}

.why-expertise::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 100%);
}

.why-expertise__head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}

.why-expertise__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(85, 209, 203, 0.22) 0%, rgba(11, 10, 136, 0.08) 100%);
  color: var(--navy);
  font-size: 1.35rem;
}

.why-expertise__title {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}

.why-expertise__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.progress-list h2 {
  display: none;
}

.progress-item {
  margin-bottom: 1rem;
}

.progress-item:last-child {
  margin-bottom: 0;
}

.progress-item__head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.progress-item__head span:last-child {
  color: var(--teal-dark);
  font-variant-numeric: tabular-nums;
}

.progress-item__bar {
  height: 10px;
  background: rgba(11, 10, 136, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.progress-item__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  border-radius: 99px;
  width: 0;
  transition: width 1.2s ease;
}

.progress-item.is-visible .progress-item__fill {
  width: var(--pct);
}

.why-grid__content {
  padding: clamp(0.25rem, 1vw, 0.75rem) 0;
}

.why-content__header {
  text-align: left;
  max-width: none;
  margin: 0 0 1.5rem;
}

.why-content__header .section__label {
  margin-bottom: 0.65rem;
}

.why-content__header.reveal.is-visible .section__label::after {
  margin-left: 0;
  margin-right: auto;
}

.why-content__title {
  margin: 0 0 0.85rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-wrap: balance;
}

.why-content__title span {
  color: var(--teal-dark);
}

.why-content__desc {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(0.9875rem, 1.8vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.why-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
}

.why-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(11, 10, 136, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(11, 10, 136, 0.04);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.why-benefit:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 209, 203, 0.45);
  box-shadow: 0 10px 24px rgba(11, 10, 136, 0.08);
}

.why-benefit i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1.125rem;
  color: var(--teal-dark);
}

.why-content__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.why-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.85rem 0.5rem;
  text-align: center;
  background: linear-gradient(145deg, var(--navy) 0%, #1a19a8 100%);
  border-radius: 12px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(11, 10, 136, 0.18);
}

.why-highlight i {
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 0.15rem;
}

.why-highlight strong {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.why-highlight span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.why-content__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.check-list li.reveal.is-visible i,
.why-benefit.reveal.is-visible i {
  animation: checkPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes checkPop {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.check-list i {
  color: var(--teal-dark);
  margin-top: 0.15rem;
}

/* Stats */
.stats-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1514a8 100%);
  background-size: 200% 200%;
  animation: statsGradient 12s ease infinite;
  color: var(--white);
  padding: 4rem 0;
}

@keyframes statsGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.stat.is-visible i {
  animation: iconFloat 3s ease-in-out infinite;
}

.stat.is-visible .stat__value {
  animation: statPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes statPop {
  from {
    transform: scale(0.85);
    opacity: 0.5;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
}

.stat__label {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.stat i {
  font-size: 1.75rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

/* Partners */
.partners-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partners-track img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.partners-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Contact */
.section--contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(85, 209, 203, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 8% 88%, rgba(11, 10, 136, 0.05) 0%, transparent 38%),
    var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
}

.contact-info {
  grid-column: 1;
  min-width: 0;
}

.contact-form-panel,
.contact-grid > .contact-form {
  grid-column: 2;
  min-width: 0;
}

@media (min-width: 769px) {
  .contact-form-panel,
  .contact-grid > .contact-form {
    position: sticky;
    top: calc(var(--shell-h, 76px) + 1.25rem);
    align-self: start;
  }
}

.contact-content__header {
  text-align: left;
  max-width: none;
  margin: 0 0 1.5rem;
}

.contact-content__header .section__label {
  margin-bottom: 0.65rem;
}

.contact-content__header.reveal.is-visible .section__label::after {
  margin-left: 0;
  margin-right: auto;
}

.contact-content__title {
  margin: 0 0 0.85rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-wrap: balance;
}

.contact-content__title span {
  color: var(--teal-dark);
}

.contact-content__desc {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(0.9875rem, 1.8vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-channels {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.contact-channel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(11, 10, 136, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(11, 10, 136, 0.06);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-channel:hover {
  transform: translateY(-3px);
  border-color: rgba(85, 209, 203, 0.45);
  box-shadow: 0 14px 32px rgba(11, 10, 136, 0.1);
}

.contact-channel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(85, 209, 203, 0.25) 0%, rgba(11, 10, 136, 0.08) 100%);
  color: var(--navy);
  font-size: 1.35rem;
}

.contact-channel__label {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-channel a {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--navy);
  text-decoration: none;
}

.contact-channel a:hover {
  color: var(--teal-dark);
}

.contact-channel__text {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.contact-channel__text strong {
  color: var(--navy);
  font-weight: 700;
}

.contact-channel__link {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  color: var(--teal-dark) !important;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-trust i {
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.contact-info__cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-card {
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 209, 203, 0.35);
  box-shadow: 0 12px 28px rgba(11, 10, 136, 0.1);
}

.info-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.info-card a {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.contact-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-social a:hover {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Form */
.contact-form-panel,
.contact-form {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(11, 10, 136, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 20px 48px rgba(11, 10, 136, 0.1);
}

.contact-form-panel::before,
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 100%);
}

.contact-form__header {
  margin: 0 0 1.35rem;
  text-align: left;
}

.contact-form__header .section__label {
  margin-bottom: 0.5rem;
}

.contact-form__title {
  margin: 0 0 0.45rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.contact-form__sub {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.form-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  position: relative;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 10, 136, 0.12);
  background: var(--white);
}

.form-group > i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
  padding-left: 1rem;
}

.form-group:has(textarea) > i {
  display: none;
}

.form-actions {
  margin-top: 1rem;
}

.form-actions .btn {
  width: 100%;
}

.site-header .header-cta {
  flex-shrink: 0;
  white-space: nowrap;
  padding-inline: 0.85rem;
  font-size: 0.8125rem;
}

@media (min-width: 993px) and (max-width: 1280px) {
  .site-header__inner {
    gap: 0.65rem;
  }

  .main-nav__link {
    padding: 0.45rem 0.5rem;
    font-size: 0.78125rem;
  }

  .site-header .header-cta {
    padding-inline: 0.7rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 1100px) {
  .main-nav__list {
    padding: 0.25rem;
  }

  .main-nav__link {
    padding: 0.45rem 0.5rem;
    font-size: 0.78125rem;
  }

  .site-header .header-cta {
    padding-inline: 0.75rem;
    font-size: 0.75rem;
    gap: 0.35rem;
  }
}

#g-recaptcha-error {
  color: #c0392b;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

.input-error {
  border-color: #c0392b !important;
}

/* Reviews */
.reviews-section .section__header a {
  font-weight: 700;
}

.reviews-carousel {
  width: 100%;
  max-width: min(1140px, 92vw);
  margin-inline: auto;
  position: relative;
}

#google-reviews:not(.reviews-carousel--rotating) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

#google-reviews.reviews-carousel--rotating {
  display: block;
  position: relative;
  min-height: 16rem;
  opacity: 1;
  transform: none;
}

#google-reviews.reviews-carousel--rotating .reviews-slide {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

#google-reviews.reviews-carousel--rotating .reviews-slide.is-active {
  display: grid;
}

#google-reviews.reviews-carousel--rotating .review-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
}

.review-item {
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 16px);
  box-shadow: var(--shadow);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-google-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.review-google-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #5f6368;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-item:hover {
  transform: translateY(-5px);
  border-color: rgba(85, 209, 203, 0.4);
  box-shadow: 0 16px 40px rgba(11, 10, 136, 0.12);
}

.reviews-slide.is-active .review-item {
  animation: reviewIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reviews-slide.is-active .review-item:nth-child(2) {
  animation-delay: 0.1s;
}

.reviews-slide.is-active .review-item:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes reviewIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-text {
  text-align: left;
  max-height: 12rem;
  overflow: auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #111827;
  margin: 0 0 0.75rem 0;
  font-weight: 500;
}

.review-author {
  font-weight: 800;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-size: 0.95rem;
}

.review-sep {
  display: none;
}

.review-date {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: auto;
}

span.review-profile-image img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-stars ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0.75rem;
}

.review-stars li {
  line-height: 1;
}

.review-stars li .star {
  display: inline-block;
  font-style: normal;
  font-size: 1.125rem;
  color: #f4b400;
}

.review-stars li .star::before {
  content: "★";
}

.review-stars li .star.inactive {
  color: #d1d5db;
}

.reviews-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.reviews-carousel__dot {
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(11, 10, 136, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.reviews-carousel__dot:hover,
.reviews-carousel__dot:focus-visible {
  background: var(--teal);
  outline: none;
  transform: scale(1.15);
}

.reviews-carousel__dot.is-active {
  background: var(--navy);
  transform: scale(1.2);
}

.reviews-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.reviews-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(11, 10, 136, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(11, 10, 136, 0.08);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.reviews-carousel__arrow:hover,
.reviews-carousel__arrow:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  outline: none;
  transform: scale(1.05);
}

.reviews-carousel__counter {
  min-width: 4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

.reviews-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 2rem 1rem;
  margin: 0;
}

a.review-author {
  font-weight: 700;
  color: var(--navy);
  text-transform: capitalize;
  text-decoration: none;
}

a.review-author:hover {
  color: var(--teal);
  text-decoration: underline;
}

.reviews-empty {
  text-align: center;
  color: var(--text-muted);
  margin: 2rem 0;
}

/* Footer */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 0;
  background-color: var(--navy-dark);
  background-image:
    linear-gradient(
      165deg,
      rgba(7, 7, 102, 0.93) 0%,
      rgba(11, 10, 136, 0.86) 45%,
      rgba(20, 92, 108, 0.88) 100%
    ),
    var(--footer-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 50%, var(--navy) 100%);
  opacity: 0.95;
  z-index: 0;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(85, 209, 203, 0.14), transparent 42%),
    radial-gradient(circle at 10% 90%, rgba(85, 209, 203, 0.08), transparent 38%);
  pointer-events: none;
  z-index: 0;
}

.site-footer > .container,
.site-footer > .footer-bottom {
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.92);
}

.footer-brand__logo {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.55rem 0.85rem;
  background: #fff;
  border-radius: 12px;
  line-height: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.footer-brand__logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(100%, 220px);
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(85, 209, 203, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(85, 209, 203, 0.35);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-contact li {
  margin-bottom: 0.85rem;
  font-size: 0.9375rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.footer-contact i {
  margin-top: 0.2rem;
  color: var(--teal);
}

.footer-bottom {
  background: rgba(4, 4, 58, 0.55);
  border-top: 1px solid rgba(85, 209, 203, 0.2);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.875rem;
  backdrop-filter: blur(4px);
}

.site-footer .footer-bottom p {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer .footer-bottom a {
  font-weight: 600;
  color: var(--teal);
}

.site-footer .footer-bottom a:hover {
  color: var(--white);
}

.site-footer .footer-contact i {
  flex-shrink: 0;
}

/* Go top */
.go-top {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a18b5 100%);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 6px 24px rgba(11, 10, 136, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1),
    visibility 0.25s,
    box-shadow 0.2s ease;
  z-index: 900;
}

.go-top.is-visible:hover {
  box-shadow: 0 8px 28px rgba(11, 10, 136, 0.5);
  transform: translateY(-2px) scale(1.05);
}

.go-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.go-top:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-32px);
}

.reveal--right {
  transform: translateX(32px);
}

.reveal--left.is-visible,
.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

.reveal--delay-4 {
  transition-delay: 0.4s;
}

.reveal--delay-5 {
  transition-delay: 0.5s;
}

.reveal--scale {
  transform: translateY(24px) scale(0.94);
}

.reveal--scale.is-visible {
  transform: translateY(0) scale(1);
}

.trust-bar__cell.is-visible i {
  animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s both;
}

@keyframes iconPop {
  from {
    transform: scale(0.4) rotate(-12deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.services-panel.reveal.is-visible {
  animation: panelPulse 0.7s ease;
}

@keyframes panelPulse {
  0% {
    box-shadow: 0 28px 56px rgba(11, 10, 136, 0.1);
  }

  50% {
    box-shadow: 0 32px 64px rgba(11, 10, 136, 0.14);
  }

  100% {
    box-shadow: 0 28px 56px rgba(11, 10, 136, 0.1);
  }
}

.progress-item.reveal.is-visible .progress-item__fill {
  width: var(--pct);
}

.why-grid__visual.reveal.is-visible img {
  animation: imageReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.why-grid__visual:hover img {
  transform: scale(1.03);
}

.why-expertise.reveal.is-visible {
  animation: panelPulse 0.7s ease;
}

@keyframes imageReveal {
  from {
    transform: scale(1.06);
    opacity: 0.7;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.contact-form-panel.reveal.is-visible {
  animation: formGlow 0.8s ease;
}

@keyframes formGlow {
  from {
    box-shadow: 0 4px 20px rgba(11, 10, 136, 0.06);
  }

  to {
    box-shadow: 0 20px 48px rgba(11, 10, 136, 0.12);
  }
}

/* Announcement — split modal (reference-style layout) */
body.announcement-open {
  overflow: hidden;
}

.announcement[hidden] {
  display: none;
}

.announcement {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 1.5rem);
}

.announcement__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(7, 7, 102, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.announcement__panel--credila {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  width: min(1020px, 100%);
  max-height: min(94vh, 720px);
  overflow: hidden;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(11, 10, 136, 0.28);
}

.announcement__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(11, 10, 136, 0.12);
  transition: background 0.2s ease, color 0.2s ease;
}

.announcement__close:hover {
  background: var(--navy);
  color: var(--white);
}

.announcement__visual {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, #eef6fc 0%, #e8f2fa 42%, #e2eef8 100%);
  border-right: 1px solid rgba(11, 10, 136, 0.06);
  overflow: hidden;
}

.announcement__visual-top {
  flex-shrink: 0;
  padding: clamp(1.15rem, 2.5vw, 1.5rem) clamp(1rem, 2vw, 1.35rem) 0.65rem;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(85, 209, 203, 0.22) 0%, transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, transparent 100%);
}

.announcement__visual-head {
  text-align: center;
  margin-bottom: 0.75rem;
}

.announcement__badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.75rem;
  background: linear-gradient(135deg, #d32f2f 0%, #b8334a 100%);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(184, 51, 74, 0.28);
}

.announcement__hero-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.9vw, 2.05rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #b8334a;
}

.announcement__hero-title span {
  color: var(--navy);
}

.announcement__hero-sub {
  margin: 0.4rem 0 0;
  font-size: clamp(1rem, 1.85vw, 1.125rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}

.announcement__stats-card {
  padding: 0.85rem 0.65rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 10, 136, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(11, 10, 136, 0.1);
}

.announcement__stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.announcement__stat-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.2rem;
  text-align: center;
}

.announcement__stat-row li + li {
  border-left: 1px solid rgba(11, 10, 136, 0.08);
}

.announcement__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(85, 209, 203, 0.38) 0%, rgba(11, 10, 136, 0.1) 100%);
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1;
}

.announcement__stat-num {
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.announcement__stat-desc {
  font-size: clamp(0.625rem, 1.1vw, 0.6875rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-muted);
}

.announcement__hero-img {
  position: relative;
  flex: 1 1 auto;
  min-height: 240px;
  margin-top: auto;
  overflow: hidden;
}

.announcement__hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center 35%;
}

.announcement__hero-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1.1rem 1rem;
  background: linear-gradient(180deg, rgba(11, 10, 136, 0) 0%, rgba(11, 10, 136, 0.72) 52%, rgba(11, 10, 136, 0.88) 100%);
  color: var(--white);
}

.announcement__hero-caption-title {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
}

.announcement__hero-caption-title i {
  font-size: 1.05rem;
  color: var(--teal);
}

.announcement__hero-caption-text {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.announcement__hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.announcement__hero-tags li {
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.announcement__form-wrap {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3.2vw, 2.15rem) clamp(1.5rem, 3.2vw, 2.25rem) 1rem;
  overflow-y: auto;
}

.announcement__form-wrap h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  color: var(--navy);
}

.announcement__form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.announcement__field {
  position: relative;
  padding-bottom: 0.45rem;
}

.announcement__input {
  width: 100%;
  padding: 0.75rem 0 0.55rem;
  border: 0;
  border-bottom: 1.5px solid rgba(11, 10, 136, 0.25);
  border-radius: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

.announcement__input::placeholder {
  color: #9aa3b0;
}

.announcement__input:focus {
  border-bottom-color: var(--navy);
}

.announcement__input:invalid:not(:placeholder-shown),
.announcement__input.announcement__input--error {
  border-bottom-color: #d32f2f;
}

.announcement__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230B0A88' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15rem center;
  color: #9aa3b0;
}

.announcement__select:valid,
.announcement__select:focus {
  color: var(--text);
}

.announcement__required {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #d32f2f;
}

.announcement__captcha {
  margin: 0.75rem 0 0.55rem;
  transform: scale(0.95);
  transform-origin: left top;
}

.announcement__recaptcha-error {
  margin: 0.3rem 0 0;
  font-size: 0.875rem;
  font-style: italic;
  color: #d32f2f;
}

.announcement__apply {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.95rem 1rem;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 22px rgba(211, 47, 47, 0.32);
}

.announcement__apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(211, 47, 47, 0.4);
}

.announcement__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-muted);
  cursor: pointer;
}

.announcement__consent input {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--navy);
}

.announcement__consent a {
  color: var(--navy);
  text-decoration: underline;
}

.announcement__footer-note {
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(11, 10, 136, 0.08);
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  color: var(--navy);
}

.announcement__footer-note a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* ========== Responsive ========== */

/* Tablet landscape / small laptop */
@media (max-width: 1100px) {
  .container {
    width: min(1140px, 94vw);
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
  }

  .trust-bar__cell:nth-child(2),
  .trust-bar__cell:nth-child(4) {
    border-right: none;
  }

  .trust-bar__cell:nth-child(1),
  .trust-bar__cell:nth-child(2) {
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section--services .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section--services .service-card:nth-child(n + 9) {
    grid-column: span 2;
  }
}

/* Tablet */
@media (max-width: 992px) {
  :root {
    --header-h: 80px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--shell-h, 4.75rem);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
    padding: 1rem 1.25rem 2rem;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-shell {
    z-index: 10001;
  }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .main-nav__link.is-active {
    color: var(--navy);
    background: rgba(85, 209, 203, 0.14);
    box-shadow: inset 0 -2px 0 var(--teal);
  }

  .main-nav__link {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    border: 1px solid transparent;
  }

  .main-nav__link.is-active {
    border-color: rgba(85, 209, 203, 0.45);
  }

  .nav-toggle {
    position: relative;
    z-index: 1001;
  }

  .nav-dropdown {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    margin: 0.25rem 0 0.5rem;
    padding: 0.5rem;
    border-radius: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .nav-item--dropdown.is-open .nav-dropdown {
    display: grid;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown__title {
    padding-top: 0.25rem;
  }

  .nav-dropdown a {
    padding: 0.65rem 0.75rem;
    font-size: 0.9375rem;
  }

  .nav-dropdown a:hover {
    transform: none;
  }

  .nav-dropdown__footer a:hover {
    transform: none;
  }

  .nav-dropdown__wide {
    grid-column: auto;
  }

  .site-header .header-cta {
    width: 100%;
    margin: 1rem 0 0;
    min-height: 3rem;
    font-size: 1rem;
  }

  .hero--professional {
    min-height: min(58vh, 500px);
  }

  .hero__content {
    max-width: none;
  }

  .hero__text {
    max-width: none;
  }

  .hero__metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    padding-top: 1rem;
  }

  .hero__metrics li {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-content__highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--services .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .section--services .service-card:nth-child(n + 9) {
    grid-column: span 2;
  }

  .section--services .service-card {
    min-height: 8rem;
    padding: 0.9rem 2rem 0.85rem 0.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  :root {
    --section-y: 4rem;
    --section-y-tight: 2.5rem;
  }

  .section {
    padding: var(--section-y) 0;
  }

  .hero--professional + .section.section--services {
    padding-top: clamp(2.25rem, 5vw, 3.25rem);
  }

  #google-reviews.reviews-layout-tablet.reviews-carousel--rotating .reviews-slide.is-active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .reviews-section .section__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.35;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --topbar-h: auto;
    --header-h: 72px;
  }

  .container {
    width: min(100%, 100%);
    padding-inline: clamp(1rem, 4vw, 1.25rem);
  }

  .topbar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.65rem clamp(1rem, 4vw, 1.25rem);
  }

  .topbar__group {
    justify-content: center;
    gap: 0.5rem 0.85rem;
  }

  .topbar__group:first-child {
    flex-wrap: wrap;
  }

  .topbar .btn--soft {
    display: none;
  }

  .site-header__logo img {
    height: 48px;
  }

  .hero--professional {
    min-height: auto;
  }

  .hero__container {
    padding: clamp(2.75rem, 12vw, 4rem) 0 clamp(2rem, 8vw, 3rem);
  }

  .hero__title {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
    letter-spacing: -0.025em;
  }

  .hero__text {
    font-size: 1.0625rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }

  .hero__label::before,
  .hero__label::after {
    width: 1.75rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: min(100%, 20rem);
    min-height: 3rem;
  }

  .hero__actions {
    margin-bottom: 1.5rem;
  }

  .hero__metrics {
    gap: 0.65rem 1.25rem;
    padding-top: 1.75rem;
  }

  .hero__metrics li {
    justify-content: center;
  }

  .hero__metrics strong {
    font-size: 1.25rem;
  }

  .hero__controls {
    justify-content: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero__arrow {
    width: 3rem;
    height: 3rem;
  }

  .hero__dot {
    width: 1.75rem;
    height: 3px;
  }

  .hero__dot.is-active {
    width: 2.25rem;
  }

  .services-panel {
    padding: 1.15rem;
  }

  .services-panel::before {
    left: 1rem;
    right: 1rem;
  }

  .services-head__title {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }

  .services-head__label::before,
  .services-head__label::after {
    width: 1.75rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .section--services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .section--services .service-card:nth-child(n + 9) {
    grid-column: span 2;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: 0.75rem 2rem 0.7rem 0.65rem;
  }

  .section--services .service-card:nth-child(n + 9) .service-card__icon {
    margin-bottom: 0.4rem;
  }

  .section--services .service-card:nth-child(n + 9) .service-card__cta {
    margin-left: 0;
    margin-top: auto;
  }

  .service-card {
    min-height: 8.5rem;
    padding: 1rem 3.5rem 0.95rem 0.85rem;
    border-radius: var(--radius);
  }

  .section--services .service-card {
    min-height: 0;
    padding: 0.75rem 2.5rem 0.7rem 0.65rem;
  }

  .section--services .service-card h3 {
    font-size: 0.8125rem;
    max-width: 100%;
    line-height: 1.3;
  }

  .section--services .service-card__body {
    max-width: 100%;
  }

  .section--services .service-card__tagline {
    font-size: 0.6875rem;
    line-height: 1.35;
  }

  .section--services .service-card__icon {
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 0.4rem;
  }

  .section--services .service-card__icon i {
    font-size: 1.05rem;
  }

  .section--services .service-card__cta {
    display: none;
  }

  .service-card__body {
    max-width: 78%;
  }

  .service-card h3 {
    font-size: 0.9375rem;
    max-width: 78%;
  }

  .service-card__icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.55rem;
  }

  .service-card__icon i {
    font-size: 1.3rem;
  }

  .service-card__tagline {
    font-size: 0.8125rem;
    max-width: none;
  }

  .service-card__cta {
    opacity: 1;
    transform: none;
    font-size: 0.6875rem;
  }

  :root {
    --section-y: 3rem;
    --section-y-tight: 1.75rem;
  }

  .section {
    padding: var(--section-y) 0;
  }

  .section__header {
    margin-bottom: 2rem;
    text-align: left;
  }

  .section__header[style*="text-align: left"] {
    margin-left: 0 !important;
  }

  .partners-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .partners-track {
    animation-duration: 28s;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info,
  .contact-form-panel,
  .contact-grid > .contact-form {
    grid-column: 1;
  }

  .contact-form-panel,
  .contact-form {
    padding: 1.35rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .check-list,
  .why-benefits {
    grid-template-columns: 1fr;
  }

  .why-content__highlights {
    grid-template-columns: 1fr;
  }

  .why-content__title {
    font-size: clamp(1.65rem, 6vw, 2.1rem);
  }

  #google-reviews:not(.reviews-carousel--rotating) {
    grid-template-columns: 1fr;
  }

  #google-reviews.reviews-carousel--rotating {
    min-height: auto;
  }

  #google-reviews.reviews-layout-mobile.reviews-carousel--rotating .reviews-slide.is-active {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .reviews-section {
    padding-block: clamp(2.5rem, 8vw, 3.5rem);
  }

  .reviews-section .section__header {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .reviews-section .section__title {
    font-size: clamp(1.35rem, 5.2vw, 1.75rem);
    line-height: 1.35;
    max-width: 22rem;
    margin-inline: auto;
  }

  .reviews-section .section__label::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .reviews-carousel {
    max-width: 100%;
  }

  .review-item {
    padding: 1.15rem 1.2rem 1.25rem;
    border-radius: 14px;
    border-color: rgba(11, 10, 136, 0.08);
    box-shadow: 0 8px 24px rgba(11, 10, 136, 0.07);
  }

  .review-item:hover {
    transform: none;
  }

  .review-meta {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 0.75rem;
    row-gap: 0.1rem;
    align-items: center;
    margin-bottom: 0.65rem;
  }

  span.review-profile-image {
    grid-row: 1 / span 2;
    align-self: center;
  }

  span.review-profile-image img {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(85, 209, 203, 0.35);
    box-shadow: 0 2px 8px rgba(11, 10, 136, 0.08);
  }

  .review-author,
  a.review-author {
    grid-column: 2;
    font-size: 0.9375rem;
    line-height: 1.3;
  }

  .review-sep {
    display: none;
  }

  .review-date {
    grid-column: 2;
    font-size: 0.75rem;
  }

  .review-stars ul {
    margin: 0 0 0.75rem;
  }

  .review-text {
    max-height: none;
    overflow: visible;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  #google-reviews.reviews-layout-mobile .review-item {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  }

  #google-reviews.reviews-layout-mobile .review-item::before {
    content: "\201C";
    position: absolute;
    top: 0.5rem;
    right: 0.85rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.75rem;
    line-height: 1;
    color: rgba(85, 209, 203, 0.22);
    pointer-events: none;
  }

  .reviews-carousel__nav {
    margin-top: 1rem;
    padding-inline: 0.25rem;
  }

  .reviews-carousel__arrow {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .go-top {
    right: auto;
    left: 1rem;
    bottom: 1rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  .announcement__panel--credila {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 1.5rem);
    overflow-y: auto;
  }

  .announcement__visual {
    border-right: 0;
    border-bottom: 1px solid rgba(11, 10, 136, 0.06);
  }

  .announcement__stat-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .announcement__visual-top {
    padding-bottom: 0.75rem;
  }

  .announcement__hero-img {
    min-height: 200px;
  }

  .announcement__hero-img img {
    min-height: 200px;
    object-position: center 40%;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .topbar__group:first-child a:nth-child(2) {
    display: none;
  }

  .topbar a .las.la-phone + span,
  .topbar a[href^="tel"]:last-of-type {
    font-size: 0.7rem;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-bar__cell {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    text-align: left;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-bar__cell:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .trust-bar__cell i {
    width: 2.25rem;
    text-align: center;
    flex-shrink: 0;
  }

  .trust-bar__cell strong {
    margin-right: auto;
    min-width: 3.5rem;
  }

  .trust-bar__cell span {
    max-width: none;
    text-align: right;
    margin-left: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat {
    padding: 0.5rem 0;
  }

  .hero__label::before {
    width: 1.75rem;
  }

  .hero__label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .hero__title {
    font-size: clamp(1.7rem, 10vw, 2.35rem);
  }

  .btn--lg {
    --btn-h: 3rem;
    font-size: 0.9375rem;
  }

  .announcement__stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.35rem;
  }

  .announcement__stat-row li + li {
    border-left: 0;
  }

  .announcement__stat-row li:nth-child(odd) {
    border-right: 1px solid rgba(11, 10, 136, 0.08);
  }

  .announcement__stat-row li:nth-child(-n + 2) {
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(11, 10, 136, 0.08);
  }

  .announcement__stat-icon {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.05rem;
  }

  .announcement__captcha {
    transform: scale(0.85);
  }

  .reviews-section .section__title {
    font-size: 1.25rem;
    max-width: 18rem;
  }

  .review-item {
    padding: 1rem 1rem 1.1rem;
  }

  #google-reviews.reviews-layout-mobile .review-item::before {
    font-size: 2.25rem;
    top: 0.35rem;
    right: 0.65rem;
  }

  .review-text {
    -webkit-line-clamp: 5;
    font-size: 0.9rem;
  }

  .reviews-carousel__arrow {
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__copy-block,
  .hero__metrics li,
  .hero__controls,
  .hero__slide.is-active,
  .stats-band,
  .stat.is-visible i,
  .review-item,
  .reviews-slide.is-active .review-item {
    animation: none !important;
  }

  .hero__copy-block.is-changing {
    opacity: 0;
    transform: none;
  }

  .hero__slide,
  .hero__content,
  .service-card,
  .service-card__icon,
  .partners-track,
  .btn,
  .main-nav,
  .go-top,
  .reveal {
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .service-card:hover,
  .service-card:hover .service-card__icon,
  .service-card:hover .service-card__icon i {
    transform: none;
  }

  .service-card__accent::before,
  .service-card__accent::after {
    animation: none !important;
  }

  .partners-track {
    animation: none;
  }

  .hero__slide.is-active {
    animation: none;
  }

  .hero__copy-block {
    animation: none;
  }
}

@import url("page-hero.css?v=2");
