/* ----- RESET & VARIABLES ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand: #25b2ff;
  --brand2: #0b6cff;
  --ink: #0b2230;
  --muted: #60707b;
  --bg: #ffffff;
  --navy: #073c57;
  --border: #e7eef3;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
  --radius: 16px;
  --accent: #ffb200;
  --headerH: 96px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', 'Manrope', Arial, sans-serif;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ----- HEADER ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231, 238, 243, 0.9);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--headerH);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  flex: 0 0 auto;
  min-width: 200px;
}

.brand a {
  display: flex;
  align-items: center;
}

.brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(11, 108, 255, 0.1));
  transition: transform 0.22s ease, filter 0.22s ease;
}

.heroS__slide {
    width: 100%;
    height: 100vh; /* full screen slide */
    overflow: hidden;
}

.heroS__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* same effect as background cover */
    display: block;
}

.brand a:hover img {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 16px 28px rgba(11, 108, 255, 0.18));
}

.nav-wrap {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

.nav-link,
.nav-dd-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.95px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-link::after,
.nav-dd-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand2), var(--brand));
  border-radius: 2px;
  transition: width 0.22s ease;
}

.nav-link:hover,
.nav-dd-toggle:hover {
  color: var(--brand2);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-dd-toggle:hover::after {
  width: 100%;
}

.caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--brand);
  transition: transform 0.22s ease;
}

.actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  justify-content: flex-end;
}

.cta,
.btn-primary {
  border: none;
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, var(--brand2), var(--brand));
  box-shadow: 0 16px 34px rgba(11, 108, 255, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.cta::before,
.btn-primary::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -40%;
  width: 40%;
  height: 160%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(18deg);
  transition: left 0.6s ease;
  filter: blur(1px);
}

.cta:hover::before,
.btn-primary:hover::before {
  left: 120%;
}

.cta:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 45px rgba(11, 108, 255, 0.26);
  filter: saturate(1.05);
}

.nav-dd {
  position: relative;
}

.mega {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1040px;
  max-width: calc(100vw - 56px);
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(14px) scale(0.985);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.mega::after {
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 100%;
  height: 18px;
  background: transparent;
}

.mega::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  padding-left: 12px;
}

.mega a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.18s ease, transform 0.18s ease;
}

.mega a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex: 0 0 auto;
  opacity: 0.95;
}

.mega a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.mega a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(3px);
}

.mega a:hover::after {
  transform: translateX(120%);
}

.dd-open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(8px) scale(1);
}

.dd-open .caret {
  transform: translateY(1px) rotate(180deg);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1b2a33;
  margin: 4px auto;
  border-radius: 2px;
}

/* ----- HERO ----- */
.heroS {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--headerH));
  min-height: 560px;
  overflow: hidden;
  background: #0b2230;
}

@supports (height: 100svh) {
  .heroS {
    height: calc(100svh - var(--headerH));
  }
}

.heroS__slider {
  position: absolute;
  inset: 0;
}

.heroS__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transition: opacity 900ms ease;
}

.heroS__slide.is-active {
  opacity: 1;
}

.heroS__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(4, 50, 72, 0.96) 0%, rgba(4, 50, 72, 0.88) 34%, rgba(4, 50, 72, 0.55) 58%, rgba(4, 50, 72, 0.18) 74%, rgba(4, 50, 72, 0) 100%);
}

.heroS__content {
  position: relative;
  z-index: 3;
  padding: clamp(28px, 6vw, 72px) clamp(18px, 4vw, 64px);
  width: min(720px, 92%);
}

.heroS__content h1 {
  margin: 0 0 22px;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.02;
  font-size: clamp(34px, 4.6vw, 66px);
}

.heroS__content p {
  margin: 0;
  max-width: 640px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.heroS__btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
  color: #fff;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform 0.18s ease, 0.18s ease, border-color 0.18s ease;
}

.heroS__btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ----- CLIENT LOGOS (trustStrip) ----- */
.trustStrip {
  padding: 40px 0;
  text-align: center;
}
.trustStrip .wrap {
  max-width: 1100px;
  margin: auto;
}
.trustStrip__kicker {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
}
.trustStrip__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trustStrip__logos img {
  height: 90px;
  width: auto;
  filter: none;
  opacity: 1;
}

/* ----- 3 CARDS (adasa-feature) ----- */
.adasa-feature {
  position: relative;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(37, 178, 255, 0.14), transparent 55%),
              radial-gradient(900px 500px at 85% 20%, rgba(11, 108, 255, 0.12), transparent 55%),
              linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  padding: clamp(40px, 5vw, 70px) 0;
  overflow: hidden;
}

.adasa-feature__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(14px, 2.2vw, 34px);
  position: relative;
  z-index: 1;
}

.adasa-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}

.adasa-card {
  position: relative;
  border-radius: 22px;
  padding: clamp(22px, 2.4vw, 38px);
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.adasa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: linear-gradient(140deg, rgba(37, 178, 255, 0.6), rgba(255, 255, 255, 0.22), rgba(11, 108, 255, 0.52));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.adasa-card__glow {
  position: absolute;
  inset: -2px;
  background: radial-gradient(600px 220px at 20% 10%, rgba(61, 214, 255, 0.22), transparent 55%),
              radial-gradient(500px 220px at 85% 18%, rgba(37, 178, 255, 0.16), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.adasa-card--deep {
  background: linear-gradient(180deg, #073c57 0%, #052f44 100%);
}

.adasa-card--slate {
  background: linear-gradient(180deg, #0e2632 0%, #071a22 100%);
}

.adasa-card--featured {
  background: linear-gradient(180deg, rgba(37, 178, 255, 0.36) 0%, rgba(11, 108, 255, 0.28) 35%, rgba(7, 43, 62, 0.92) 100%);
}

.adasa-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.12) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.adasa-card:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  filter: saturate(1.05);
}

.adasa-card:hover::after {
  transform: translateX(120%);
}

.adasa-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.adasa-card__badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.adasa-card__badge svg {
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.95);
}

.adasa-card__eyebrow {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.adasa-card__water {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 360px;
  height: 360px;
  color: rgba(255, 255, 255, 0.16);
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 1;
}

.adasa-card__title {
  margin: 18px 0 0;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.08;
  font-size: clamp(22px, 2.1vw, 34px);
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.adasa-card__text {
  margin: 16px 0 0;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.adasa-card__link {
  margin-top: auto;
  padding-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 850;
  font-size: clamp(14px, 1vw, 18px);
  color: #fff;
  position: relative;
  z-index: 2;
}

.adasa-card__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  opacity: 0.9;
}

.adasa-card__arrow {
  color: var(--accent);
  font-size: 22px;
  transition: transform 0.2s ease;
}

.adasa-card:hover .adasa-card__arrow {
  transform: translateX(6px);
}

.adasa-card:hover .adasa-card__link::before {
  transform: translateX(0%);
}

/* ----- SCROLL REVEAL ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ----- SCALABLE SOLUTIONS ----- */
.scalable {
  background: radial-gradient(900px 420px at 20% 0%, rgba(37, 178, 255, 0.1), transparent 55%),
              radial-gradient(800px 420px at 82% 10%, rgba(11, 108, 255, 0.08), transparent 55%),
              linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: clamp(56px, 6vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

.scalable__wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

.scalable__head {
  text-align: center;
  margin-bottom: clamp(26px, 3vw, 42px);
}

.scalable__head h2 {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  font-size: clamp(26px, 2.8vw, 42px);
}

.scalable__bar {
  width: 120px;
  height: 6px;
  border-radius: 999px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--accent), rgba(255, 178, 0, 0.25));
}

.scalable__content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: flex-start;
  margin-top: 28px;
}

.scalable__iconBox {
  position: relative;
  width: 240px;
  height: 200px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #e8f0f6;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.scalable__icon {
  width: 150px;
  height: 150px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 26px rgba(11, 108, 255, 0.12));
  transition: transform 0.35s ease;
}

.scalable__iconBox:hover .scalable__icon {
  transform: translateY(-2px) rotate(-1deg) scale(1.02);
}

.scalable__text p {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  color: #6a6f73;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.95;
}

.scalable__note {
  margin-top: clamp(44px, 5vw, 82px);
  text-align: center;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 800;
  color: #7b7f83;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.55;
}

/* ----- SERVICES SLIDER (svc) ----- */
.svc {
  padding: clamp(54px, 6vw, 96px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
}

.svc__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.svc__head {
  text-align: center;
  margin-bottom: 34px;
}

.svc__head h2 {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #063b56;
  font-size: clamp(24px, 2.6vw, 40px);
}

.svc__bar {
  width: 120px;
  height: 6px;
  border-radius: 999px;
  margin: 16px auto 14px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 178, 0, 0.25));
}

.svc__sub {
  margin: 0 auto;
  max-width: 720px;
  font-family: 'Inter', Arial, sans-serif;
  color: #6a6f73;
  font-size: 16px;
  line-height: 1.8;
}

.svc__viewport {
  overflow: hidden;
}

.svc__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 14px 6px 22px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.svc__track::-webkit-scrollbar {
  display: none;
}

.svcCard {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #edf2f6;
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.svcCard::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.4px;
  background: linear-gradient(140deg, rgba(37, 178, 255, 0.55), rgba(255, 255, 255, 0), rgba(11, 108, 255, 0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
}

.svcCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.1);
}

.svcCard__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid rgba(255, 178, 0, 0.95);
  display: grid;
  place-items: center;
  margin: 6px auto 18px;
  color: #063b56;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.22s ease;
}

.svcCard__icon svg {
  width: 26px;
  height: 26px;
}

.svcCard:hover .svcCard__icon {
  transform: translateY(-2px);
}

.svcCard__title {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #063b56;
  font-size: 22px;
  line-height: 1.1;
  text-align: center;
}

.svcCard__text {
  margin: 16px 0 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #6a6f73;
  font-size: 16px;
  line-height: 1.85;
  min-height: 150px;
}

.svcCard__btn {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 18px;
  border: 2px solid #063b56;
  border-radius: 12px;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #063b56;
  background: #fff;
  transition: background 0.18s ease, transform 0.18s ease;
}

.svcCard__btn:hover {
  background: rgba(37, 178, 255, 0.08);
  transform: translateY(-1px);
}

/* ----- TESTIMONIAL (tHero) ----- */
.tHero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #001e2f;
  padding: clamp(56px, 6vw, 92px) 0;
}

.tHero__bgWrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tHero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 3ms ease;
  filter: saturate(1.05) contrast(1.03);
}

.tHero__bg.is-on {
  opacity: 1;
}

.tHero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 74, 114, 0.78);
}

.tHero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, rgba(0, 0, 0, 0.06) 1px 2px),
              repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, rgba(0, 0, 0, 0.05) 1px 2px);
  filter: blur(0.35px);
  animation: tGrain 6s steps(6) infinite;
}

@keyframes tGrain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(1%, -1%); }
  50% { transform: translate(-1%, 1%); }
  75% { transform: translate(1%, 1%); }
  100% { transform: translate(0, 0); }
}

.tHero__wrap {
  position: relative;
  z-index: 3;
  width: min(1100px, 92vw);
  text-align: center;
  color: #fff;
}

.tHero__title {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 44px);
}

.tHero__line {
  width: 120px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 178, 0, 0.25));
  margin: 16px auto 32px;
}

.tHero__mark {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1;
  margin: 0 auto 18px;
  opacity: 0.95;
}

.tHero__slides {
  position: relative;
  min-height: 180px;
}

.tSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
  padding: 0 10px;
}

.tSlide.is-on {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.tHero__quote {
  margin: 0 auto;
  max-width: 980px;
  font-family: 'Inter', Arial, sans-serif;
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.9;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.tHero__role {
  margin-top: 18px;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.6vw, 26px);
  letter-spacing: 0.3px;
}

.tHero__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: width 0.15s ease, background 0.15s ease;
}

.dot.is-on {
  width: 28px;
  background: var(--accent);
  border-color: rgba(255, 178, 0, 0.85);
}

.tHero__btn {
  display: inline-flex;
  margin-top: 34px;
  padding: 14px 22px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.16s ease, background 0.16s ease;
}

.tHero__btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

/* ----- GREY BAND ----- */
.greyBand {
  background: #767676;
  padding: clamp(26px, 3vw, 48px) 0;
}

.greyBand__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: 1.05fr 1.7fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}

.greyBand__img {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  border: 8px solid rgba(255, 255, 255, 0.25);
  background: #fff;
}

.greyBand__content {
  color: #fff;
}

.greyBand__title {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(22px, 2.6vw, 40px);
  line-height: 1.15;
}

.greyBand__line {
  width: 120px;
  height: 6px;
  border-radius: 999px;
  margin: 16px 0 22px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 178, 0, 0.25));
}

.greyBand__text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

/* ----- OUR VALUES (v2) ----- */
.v2 {
  background: #fff;
  padding: clamp(44px, 6vw, 92px) 0;
}

.v2__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}

.v2__title {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: clamp(26px, 3.2vw, 46px);
  color: #063b56;
}

.v2__under {
  width: 118px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 178, 0, 0.25));
  margin: 18px 0 24px;
}

.v2__text {
  max-width: 560px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.95;
  color: #6a6f73;
}

.v2__btn {
  display: inline-flex;
  margin-top: 26px;
  padding: 14px 22px;
  border: 2px solid #063b56;
  border-radius: 12px;
  color: #063b56;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: #fff;
  transition: transform 0.18s ease, background 0.18s ease;
}

.v2__btn:hover {
  transform: translateY(-1px);
  background: rgba(37, 178, 255, 0.06);
}

.coins {
  position: relative;
  width: min(740px, 100%);
  height: clamp(330px, 34vw, 430px);
}

.coins__floor {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 78%;
  height: 22%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.22), transparent 72%);
  filter: blur(8px);
  opacity: 0.55;
  pointer-events: none;
}

.c {
  position: absolute;
  width: clamp(265px, 26vw, 370px);
  height: clamp(265px, 26vw, 370px);
  border-radius: 999px;
  border: 12px solid rgba(255, 255, 255, 0.88);
  cursor: pointer;
  display: grid;
  place-items: center;
  transform-origin: center;
  transition: transform 820ms cubic-bezier(0.18, 0.88, 0.18, 1), opacity 820ms cubic-bezier(0.18, 0.88, 0.18, 1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.c__rim {
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  border: 9px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 10px 16px rgba(255, 255, 255, 0.28), inset 0 -14px 22px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.c__inner {
  position: absolute;
  inset: 26px;
  border-radius: 999px;
  background: radial-gradient(240px 180px at 30% 25%, rgba(255, 255, 255, 0.22), transparent 60%),
              radial-gradient(240px 180px at 70% 80%, rgba(0, 0, 0, 0.12), transparent 60%),
              repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 12px, rgba(255, 255, 255, 0) 12px 24px);
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.c__shine {
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 46%, transparent 78%);
  transform: translateX(-120%) rotate(12deg);
  opacity: 0;
  pointer-events: none;
}

.c__glow {
  position: absolute;
  inset: -30px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(37, 178, 255, 0.22), transparent 70%);
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
}

.c__top {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.c__big {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(34px, 3.5vw, 58px);
  color: rgba(255, 255, 255, 0.96);
  z-index: 2;
  line-height: 1.02;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.c__big--sm {
  font-size: clamp(26px, 2.4vw, 40px);
  letter-spacing: 1.4px;
}

.c--teal {
  background: radial-gradient(260px 220px at 35% 25%, rgba(255, 255, 255, 0.18), transparent 60%),
              radial-gradient(260px 220px at 70% 75%, rgba(0, 0, 0, 0.16), transparent 62%),
              linear-gradient(180deg, #30c7b6 0%, #179b8c 100%);
}

.c--blue {
  background: radial-gradient(260px 220px at 35% 25%, rgba(255, 255, 255, 0.18), transparent 60%),
              radial-gradient(260px 220px at 70% 75%, rgba(0, 0, 0, 0.16), transparent 62%),
              linear-gradient(180deg, #6aa0bb 0%, #3b6f8b 100%);
}

.c--amber {
  background: radial-gradient(260px 220px at 35% 25%, rgba(255, 255, 255, 0.18), transparent 60%),
              radial-gradient(260px 220px at 70% 75%, rgba(0, 0, 0, 0.16), transparent 62%),
              linear-gradient(180deg, #e8ae42 0%, #c67f14 100%);
}

.c.is-active {
  left: 58%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  z-index: 3;
  filter: saturate(1.05);
  animation: float 3.1s ease-in-out infinite;
}

.c.is-next {
  left: 34%;
  top: 56%;
  transform: translate(-50%, -50%) scale(0.77) rotate(-6deg);
  z-index: 2;
  opacity: 0.86;
  filter: blur(0.15px) saturate(0.92);
}

.c.is-prev {
  left: 76%;
  top: 56%;
  transform: translate(-50%, -50%) scale(0.77) rotate(6deg);
  z-index: 1;
  opacity: 0.82;
  filter: blur(0.2px) saturate(0.92);
}

.c.is-active .c__glow {
  opacity: 1;
}

.c.is-active .c__shine {
  opacity: 1;
  animation: shine 1300ms ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg) translateY(0); }
  50% { transform: translate(-50%, -50%) scale(1) rotate(0deg) translateY(-7px); }
}

@keyframes shine {
  0% { transform: translateX(-120%) rotate(12deg); }
  55% { transform: translateX(120%) rotate(12deg); }
  100% { transform: translateX(120%) rotate(12deg); }
}

/* ----- WHY CHOOSE US (key-services) ----- */
.key-services {
  text-align: center;
  padding: 40px 20px;
  background-image: url('11.webp');
  background-size: cover;
  background-position: center;
  color: white;
  box-sizing: border-box;
}
.key-services h2 {
  font-size: 2em;
  color: #fff;
  margin-bottom: 20px;
}
.key-services .services-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.key-services .service {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 280px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.key-services .service i {
  font-size: 50px;
  margin-bottom: 15px;
  color: #333;
}
.key-services .service h3 {
  font-size: 1.25em;
  color: #333;
  margin-bottom: 10px;
}
.key-services .service p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

/* ----- VIP SUPPLIER (vipSup) ----- */
.vipSup {
  position: relative;
  min-height: clamp(520px, 62vh, 740px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.vipSup__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vipSup__bgImg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1000ms ease;
  filter: saturate(1.02) contrast(1.02);
}

.vipSup__bgImg.is-on {
  opacity: 1;
}

.vipSup__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(900px 520px at 22% 25%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42) 55%, rgba(255, 255, 255, 0.6) 100%),
              linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 46%, rgba(255, 255, 255, 0.52) 100%);
  pointer-events: none;
}

.vipSup__wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}

.vipSup__title {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 46px);
  color: #063b56;
}

.vipSup__line {
  width: 120px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 178, 0, 0.25));
  margin: 16px 0 24px;
}

.vipSup__copy p {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  color: rgba(70, 78, 85, 0.82);
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.9;
  max-width: 860px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.vipSup__btn {
  display: inline-flex;
  margin-top: 20px;
  padding: 14px 24px;
  border: 2px solid #063b56;
  border-radius: 12px;
  color: #063b56;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, background 0.18s ease;
}

.vipSup__btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.vipCard {
  width: min(520px, 100%);
  aspect-ratio: 16/9;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  animation: vipFloat 4.2s ease-in-out infinite;
}

.vipCard__slides {
  position: absolute;
  inset: 0;
}

.vipCard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1000ms ease;
  transform: scale(1.02);
}

.vipCard__img.is-on {
  opacity: 1;
}

.vipCard__frame {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 4;
}

.vipCard__shine {
  position: absolute;
  inset: -40px;
  background: linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.26) 45%, transparent 70%);
  transform: translateX(-120%) rotate(10deg);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.vipCard:hover .vipCard__shine {
  opacity: 0.95;
  animation: vipShine 900ms ease forwards;
}

@keyframes vipShine {
  from { transform: translateX(-120%) rotate(10deg); }
  to { transform: translateX(120%) rotate(10deg); }
}

@keyframes vipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ----- WHITEPAPER (wp) ----- */
.wp {
  padding: clamp(56px, 6vw, 100px) 0;
  background: radial-gradient(900px 420px at 15% 0%, rgba(37, 178, 255, 0.1), transparent 55%),
              radial-gradient(900px 520px at 85% 30%, rgba(11, 108, 255, 0.08), transparent 55%),
              linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
}

.wp__wrap {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
}

.wp__title {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.08;
  color: #063b56;
}

.wp__line {
  width: 120px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 178, 0, 0.25));
  margin: 18px 0 26px;
}

.wp__text {
  font-family: 'Inter', Arial, sans-serif;
  color: #6a6f73;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 1rem;
}

.wp__text--strong {
  font-weight: 700;
  color: #6f6f6f;
}

.wp__formBox {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e8eef3;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.wpForm__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  display: block;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  color: #73787d;
  margin: 0 0 8px;
}

.field label span {
  color: var(--accent);
}

.field input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #cfd8df;
  padding: 0 12px;
  outline: none;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  background: #fff;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.field input:focus {
  border-color: rgba(37, 178, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(37, 178, 255, 0.18);
}

.wpForm__note {
  margin: 16px 0 10px;
  font-family: 'Inter', Arial, sans-serif;
  color: #7a8085;
  font-size: 15px;
  line-height: 1.6;
}

.wpForm__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #d9e2e8;
  background: #fff;
  font-family: 'Inter', Arial, sans-serif;
  color: #667984;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border-color: rgba(37, 178, 255, 0.4);
}

.chip input {
  accent-color: #0b6cff;
}

.wpForm__captcha {
  border: 1px solid #d7dee6;
  border-radius: 12px;
  background: #f3f6fa;
  padding: 14px;
  margin: 10px 0 16px;
}

.capBox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.capTick {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid #b8c3cd;
  background: #fff;
}

.capTxt strong {
  display: block;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  color: #4b5156;
}

.capTxt small {
  display: block;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  color: #7a8085;
}

.wpForm__btn {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 16px 18px;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #e29412 0%, #c97800 100%);
  box-shadow: 0 18px 40px rgba(201, 120, 0, 0.28);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.wpForm__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 55px rgba(201, 120, 0, 0.32);
}

.wp__mock {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.mockCard {
  width: min(520px, 100%);
  position: relative;
  transform: rotate(-12deg) translateY(26px);
  transform-origin: bottom right;
  transition: transform 0.35s ease;
}

.mockCard:hover {
  transform: rotate(-10deg) translateY(18px);
}

.mockImg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

/* ----- FACES (people) ----- */
.faces {
  background: #043f63;
  padding: clamp(48px, 6vw, 90px) 0;
  overflow: hidden;
}

.faces__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.2vw, 34px);
}

.faces__head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 22px;
}

.faces__title {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(22px, 3vw, 40px);
}

.faces__line {
  width: 76px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 178, 0, 0.25));
  margin: 14px auto 16px;
}

.faces__sub {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.7;
  font-size: clamp(14px, 1.1vw, 18px);
}

.reviewPanel {
  margin: 22px auto 26px;
  max-width: 1080px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-16px);
  transition: max-height 520ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 320ms ease, transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.reviewPanel.is-open {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}

.reviewPanel__inner {
  padding: 20px 22px 22px;
  position: relative;
}

.reviewClose {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #2b2b2b;
  transition: transform 0.15s ease;
}

.reviewClose:hover {
  transform: scale(1.04);
}

.reviewTop {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-right: 46px;
}

.reviewAvatar {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid rgba(4, 63, 99, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  flex: 0 0 auto;
}

.reviewAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewName {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  color: #063b56;
  letter-spacing: 0.4px;
  font-size: 18px;
  text-transform: uppercase;
}

.reviewRole {
  font-family: 'Inter', Arial, sans-serif;
  color: #6b7176;
  font-weight: 600;
  margin-top: 2px;
}

.reviewQuote {
  margin-top: 14px;
  font-family: 'Inter', Arial, sans-serif;
  color: #4b4f54;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
}

.reviewStars {
  margin-top: 12px;
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}

.facesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
}

.faceCard {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.faceCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.24);
}

.faceCard__img {
  background: #fff;
  padding: 26px 18px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
}

.faceCard__img img {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  object-fit: cover;
  border: 7px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}

.faceCard:hover .faceCard__img img {
  transform: scale(1.03);
}

.faceCard__bar {
  background: linear-gradient(180deg, #e29412 0%, #c97800 100%);
  padding: 18px 16px 16px;
  text-align: center;
}

.faceCard__name {
  color: #fff;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 18px;
}

.faceCard__role {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
}

.facesCta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.facesBtn {
  display: inline-flex;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.16s ease, background 0.16s ease;
}

.facesBtn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

/* ----- CONTACT SECTION ----- */
.contact-section {
  padding: 60px 20px;
  background: #0b1f2a;
  color: #fff;
}

.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.contact-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
}

.contact-header .line {
  width: 70px;
  height: 4px;
  background: #f4b000;
  margin: 12px auto 20px;
  border-radius: 3px;
}

.contact-header p {
  color: #cbd5e1;
  line-height: 1.6;
}

.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.badge {
  display: inline-block;
  background: rgba(244, 176, 0, 0.15);
  color: #f4b000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
}

.info-card p {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  margin-bottom: 14px;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(244, 176, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4b000;
  font-size: 18px;
}

.info-item span {
  color: #cbd5e1;
}

.form-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #fff;
  outline: none;
  font-family: 'Inter', Arial, sans-serif;
}

.form-card textarea {
  grid-column: 1/-1;
  resize: none;
  height: 120px;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #9ca3af;
}

.checkbox {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 16px auto;
  align-items: center;
  column-gap: 10px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.4;
}

.checkbox input {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  accent-color: #f4b000;
  cursor: pointer;
}

.form-card button {
  grid-column: 1/-1;
  margin-top: 10px;
  background: #f4b000;
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
}

.form-card button:hover {
  opacity: 0.9;
}

/* ----- JOBBER PORTAL SECTION ----- */
.jobber-portal-section {
  background: url('7.webp') no-repeat center center;
  background-size: cover;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  color: #ffffff;
}
.jobber-portal-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.jobber-portal-section .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.jobber-portal-section h2 {
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 600;
}
.jobber-portal-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #f1f1f1;
}
.jobber-btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #2b7cff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.jobber-btn:hover {
  background: #1a5ccc;
}

/* ----- FAQ SECTION ----- */
.faq-section {
  padding: 100px 0;
  background: #f8f9fa;
}
.faq-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}
.faq-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
}
.faq-header p {
  color: #6c757d;
  line-height: 1.7;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
  overflow: hidden;
}
.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
}
.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #6c757d;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  display: block;
}

/* ----- FOOTER (vipFooter) ----- */
.vipFooter {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #021f31;
  font-family: 'Inter', Arial, sans-serif;
}

.vipFooter__bg {
  position: absolute;
  inset: 0;
  background: url('footer.webp') center/cover no-repeat;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.05);
  z-index: 0;
}

.vipFooter__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 35%, rgba(0, 0, 0, 0.75) 65%, rgba(0, 0, 0, 0.92) 100%),
              linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.8) 100%);
}

.vipFooter__container {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.2vw, 34px);
}

.vipFooter__news {
  padding: 22px 0 18px;
  border-bottom: 1px solid rgba(37, 178, 255, 0.18);
}

.vipFooter__newsRow {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 20px;
  align-items: center;
}

.vipFooter__newsTitle {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 22px;
  margin: 0;
}

.vipFooter__form {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 12px;
  align-items: center;
}

.vipFooter__input {
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0 14px;
  outline: none;
}

.vipFooter__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.vipFooter__send {
  height: 44px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(180deg, #e29412 0%, #c97800 100%);
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.vipFooter__send svg {
  width: 18px;
  height: 18px;
}

.vipFooter__send:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(201, 120, 0, 0.28);
}

.vipFooter__checks {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.vipFooter__checksLabel {
  width: 100%;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.vipFooter__checksLabel span {
  color: var(--accent);
}

.vipFooter__checks label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.vipFooter__checks input {
  accent-color: #0b6cff;
}

.vipFooter__main {
  padding: 34px 0 28px;
}

.vipFooter__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.vipFooter__logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.35));
}

.vipFooter__about {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.vipFooter__social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.soc {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform 0.16s ease, background 0.16s ease;
}

.soc svg {
  width: 18px;
  height: 18px;
}

.soc:hover {
  transform: translateY(-2px);
  background: rgba(255, 178, 0, 0.16);
  border-color: rgba(255, 178, 0, 0.35);
}

.vipFooter__h {
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.vipFooter__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.vipFooter__list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.15s ease;
}

.vipFooter__list a:hover {
  color: #fff;
}

.vipFooter__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.vipFooter__contact li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.ico {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 178, 0, 0.14);
  border: 1px solid rgba(255, 178, 0, 0.22);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.ico svg {
  width: 18px;
  height: 18px;
}

.vipFooter__label {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2px;
}

.vipFooter__addr {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.vipFooter__contact a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.vipFooter__contact a:hover {
  color: #fff;
}

.vipFooter__bottom {
  background: rgba(4, 63, 99, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.vipFooter__bottomRow {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.vipFooter__miniLinks {
  display: flex;
  gap: 10px;
  align-items: center;
}

.vipFooter__miniLinks a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.vipFooter__miniLinks a:hover {
  opacity: 1;
}

/* ----- RESPONSIVE (unchanged) ----- */
@media (max-width: 1024px) {
  :root { --headerH: auto; }
  .header-inner { flex-wrap: wrap; padding: 12px 14px; }
  .brand img { height: 60px; }
  .actions { min-width: auto; }
  .mobile-toggle { display: inline-block; }
  .nav-wrap { width: 100%; order: 3; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.28s ease, opacity 0.28s ease; }
  .nav-wrap.open { max-height: 650px; opacity: 1; }
  .nav { width: 100%; flex-direction: column; align-items: flex-start; gap: 10px; padding: 10px 0 6px; }
  .nav-link, .nav-dd-toggle { width: 100%; padding: 10px 0; }
  .mega { position: static; width: 100%; max-width: 100%; transform: none; opacity: 1; visibility: visible; pointer-events: auto; display: none; margin-top: 10px; }
  .dd-open .mega { display: block; }
  .mega-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .v2__wrap { grid-template-columns: 1fr; }
  .c.is-active { left: 50%; }
  .c.is-next { left: 28%; }
  .c.is-prev { left: 72%; }
  .vipSup__wrap { grid-template-columns: 1fr; }
  .vipCard { max-width: 720px; width: 100%; }
  .vipSup { min-height: auto; padding: 60px 0; }
  .wp__wrap { grid-template-columns: 1fr 1fr; }
  .wp__mock { grid-column: 1 / -1; justify-content: center; }
  .mockCard { transform: rotate(-10deg) translateY(10px); }
  .facesGrid { grid-template-columns: repeat(2, 1fr); }
  .vipFooter__newsRow { grid-template-columns: 1fr; }
  .vipFooter__form { grid-template-columns: 1fr; }
  .vipFooter__send { width: 180px; }
  .vipFooter__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .adasa-feature__grid { grid-template-columns: 1fr; }
  .adasa-card { min-height: 400px; }
  .svc__track { grid-auto-columns: calc((100% - 20px) / 2); }
}
@media (max-width: 900px) {
  .scalable__content { grid-template-columns: 1fr; justify-items: center; }
  .scalable__iconBox { width: 100%; max-width: 340px; height: 210px; }
}
@media (max-width: 760px) {
  .wp__wrap { grid-template-columns: 1fr; }
  .wpForm__grid { grid-template-columns: 1fr; }
  .mockCard { transform: rotate(-8deg) translateY(0); }
}
@media (max-width: 720px) {
  .heroS__overlay { background: linear-gradient(90deg, rgba(4, 50, 72, 0.97) 0%, rgba(4, 50, 72, 0.92) 55%, rgba(4, 50, 72, 0.55) 80%, rgba(4, 50, 72, 0) 100%); }
  .heroS__content { width: 94%; }
  .tHero__slides { min-height: 240px; }
  .brand img { height: 50px; }
  .cta { padding: 12px 16px; font-size: 12px; }
}
@media (max-width: 640px) {
  .facesGrid { grid-template-columns: 1fr; }
  .faceCard__img img { width: 160px; height: 160px; }
  .vipFooter__grid { grid-template-columns: 1fr; }
  .vipFooter__bottomRow { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .svc__track { grid-auto-columns: 100%; }
  .svcCard { min-height: 380px; }
}
@media (max-width: 560px) {
  .c { width: 230px; height: 230px; }
  .c.is-active { left: 50%; width: 270px; height: 270px; }
  .c.is-next, .c.is-prev { transform: translate(-50%, -50%) scale(0.7) rotate(0deg); opacity: 0.78; width: 200px; height: 200px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .tHero__grain { animation: none; }
  .vipCard { animation: none; }
  .c.is-active { animation: none; }
  .c.is-active .c__shine { animation: none; }
}