/* =============================================
   SKY EYE SECURITY – HIGH-CONTRAST REDESIGN
   ============================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #060606;
  --bg-2:     #0c0c0c;
  --bg-3:     #141414;
  --bg-4:     #1e1e1e;
  --glass:    rgba(255,255,255,0.04);
  --glass-b:  rgba(255,255,255,0.08);
  --orange:   #FBBD03;
  --orange-d: #E2A900;
  --amber:    #FBBD03;
  --white:    #ffffff;
  --surface:  #F6F6F5;
  --off:      #eaeaea;
  --muted:    #6e6e6e;
  --border:   rgba(251,189,3,0.18);
  --glow-sm:  0 0 20px rgba(251,189,3,.30);
  --glow-md:  0 0 40px rgba(251,189,3,.40);
  --glow-lg:  0 0 80px rgba(251,189,3,.25);
  --radius:   14px;
  --trans:    0.3s ease;
  --section-title-size: clamp(2.2rem, 4.6vw, 3.6rem);
  --font-primary: 'Source Sans 3', Arial, sans-serif;
  --font-secondary: 'Chakra Petch', 'Source Sans 3', Arial, sans-serif;
  --font-tertiary: 'Oswald', 'Source Sans 3', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--off);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 100px 0; }

/* ---------- GRADIENT TEXT ---------- */
.grad-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent { color: var(--orange); }

/* ---------- DIVIDER LINE ---------- */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 2px;
  margin: 16px 0 28px;
}
.divider.center { margin: 16px auto 28px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 34px;
  border-radius: 8px;
  font-family: var(--font-tertiary);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn i {
  transition: transform .28s var(--ease-quint);
}
.btn:hover i {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--glow-sm);
}
.btn-primary:hover {
  background: var(--orange-d);
  border-color: var(--orange-d);
  box-shadow: var(--glow-md);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: var(--glow-sm);
}
.btn-full { width: 100%; justify-content: center; }

/* ---------- SECTION HEADER ---------- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: var(--section-title-size);
  margin-bottom: 6px;
}
.section-sub {
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
  font-size: .95rem;
}

/* ---------- SECTION TAG ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-tertiary);
  background: rgba(251,189,3,0.1);
  border: 1px solid rgba(251,189,3,0.25);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: #000;
  border-bottom: 1px solid rgba(251,189,3,0.15);
  color: var(--muted);
  font-size: .78rem;
  padding: 9px 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-left { display: flex; gap: 28px; }
.topbar-left i { margin-right: 7px; color: var(--orange); }
.topbar-right { display: flex; gap: 10px; }
.topbar-right a {
  color: var(--muted);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  font-size: .78rem;
  transition: var(--trans);
}
.topbar-right a:hover {
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: var(--glow-sm);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000;
  border-top: 4px solid #FBBD03;
  border-bottom: 0;
  padding: 18px 0;
  transition: var(--trans);
}
.navbar.scrolled {
  padding: 18px 0;
  background: #000;
}
.navbar.nav-hidden {
  transform: translateY(-100%) !important;
}
.navbar.nav-loaded {
  animation: none;
}
.nav-inner { display: flex; align-items: center; gap: 0; }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-tertiary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform .45s var(--ease-spring);
}
.logo:hover .logo-icon {
  transform: scale(1.12) rotate(-8deg);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-main { white-space: nowrap; }
.logo-text small {
  font-family: var(--font-tertiary);
  font-size: .43rem;
  font-weight: 600;
  letter-spacing: .48em;
  color: #fff;
  margin-top: 2px;
}
.logo-light { color: var(--white); }

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
  align-items: center;
  list-style: none;
}
.nav-links > li { position: relative; }
.mobile-booking { display: none; }
.nav-links a {
  font-family: var(--font-tertiary);
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 8px;
  transition: var(--trans);
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-links a i {
  font-size: .62rem;
  color: var(--orange);
  transition: transform .35s var(--ease-expo);
}
.has-menu:hover > a i,
.has-menu:focus-within > a i { transform: rotate(180deg); }

.nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(580px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(251,189,3,.14), transparent 34%),
    linear-gradient(180deg, rgba(18,18,18,.98), rgba(0,0,0,.98));
  border-top: 3px solid var(--orange);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 22px 40px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px) scale(.98);
  transform-origin: top center;
  transition:
    opacity .28s var(--ease-expo),
    transform .34s var(--ease-expo);
  z-index: 1002;
}
.nav-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
.nav-menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  line-height: 1.2;
  background: rgba(255,255,255,.035);
  transition:
    color .24s ease,
    background .24s ease,
    transform .28s var(--ease-expo);
}
.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #000;
  background: var(--orange);
  transform: translateX(3px);
}
.nav-menu a::after { display: none; }

.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav-right .btn {
  padding: 10px 18px;
  border-radius: 4px;
  color: #000;
  font-size: .72rem;
  letter-spacing: 0;
  box-shadow: none;
  white-space: nowrap;
}
.nav-right .btn:hover {
  color: #000;
  box-shadow: none;
}
.nav-phone {
  display: flex;
  font-size: .85rem;
  font-weight: 600;
  color: var(--off);
  align-items: center;
  gap: 7px;
}
.nav-phone i { color: var(--orange); }
.nav-phone:hover { color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

/* =============================================
   HERO – IMAGE LED BANNER
   ============================================= */
.hero {
  --hero-nav: 85px;
  --hero-band: clamp(40px, 6vw, 70px);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--bg);
  overflow: hidden;
}

/* ---- Full-bleed photo background ---- */
.hero-media {
  position: absolute;
  top: var(--hero-nav);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.hero-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.05) saturate(.95);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,6,6,.98) 0%, rgba(6,6,6,.9) 26%, rgba(6,6,6,.34) 50%, transparent 72%),
    linear-gradient(to right, rgba(0,0,0,.58), rgba(0,0,0,.28) 42%, transparent 72%, rgba(0,0,0,.18));
}

/* ---- Content overlay ---- */
.hero-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--hero-band) - clamp(18px, 3vw, 44px));
  z-index: 4;
  width: 100%;
  padding: 0 28px;
  text-align: center;
}

.hero-title {
  position: relative;
  z-index: 5;
  font-family: var(--font-secondary);
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: .96;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0,0,0,.46);
  text-wrap: balance;
  will-change: opacity, transform, clip-path;
}
.hero-subtitle {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(1.02rem, 1.55vw, 1.32rem);
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0,0,0,.42);
  will-change: opacity, transform, clip-path;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(22px, 3vw, 32px);
  will-change: opacity, transform, clip-path;
}
.hero-actions .btn {
  min-width: min(230px, 100%);
  min-height: 58px;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: .98rem;
  font-weight: 800;
}
.hero-actions .btn-primary {
  color: #050505;
  box-shadow: 0 8px 18px rgba(251,189,3,.26);
}
.btn-hero-outline {
  background: rgba(0,0,0,.36);
  color: #fff;
  border-color: rgba(251,189,3,.7);
}
.btn-hero-outline:hover {
  color: #050505;
  background: #FBBD03;
  border-color: #FBBD03;
  transform: translateY(-3px);
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(112deg, transparent 0%, rgba(251,189,3,.18) 44%, rgba(255,255,255,.16) 50%, transparent 58%);
  transform: translateX(-120%) skewX(-14deg);
}
.hero-entered .hero-media::before {
  animation: hero-sweep 1.15s var(--ease-quint) .28s both;
}
.hero-entered .hero-bg-img {
  animation: hero-drift 16s var(--ease-quint) both;
}
.motion-title .motion-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.75em) rotateX(68deg) scale(.96);
  transform-origin: 50% 100%;
  filter: blur(8px);
}
.hero-title.motion-title .motion-word {
  opacity: 1;
  transform: none;
  filter: none;
}
.hero-entered .motion-title .motion-word {
  animation: word-rise .72s var(--ease-expo) both;
  animation-delay: calc(.18s + var(--word-delay, 0ms));
}
.hero-entered .hero-title.motion-title .motion-word {
  animation: none;
}
.sr-shown .motion-title .motion-word,
.sr-shown.motion-title .motion-word {
  animation: word-rise .68s var(--ease-expo) both;
  animation-delay: calc(var(--sr-delay, 0s) + var(--word-delay, 0ms));
}

/* ---- Hero text — staggered rise-in ---- */
.hero-entered .hero-title {
  animation: hero-text-in .85s var(--ease-expo) .15s both;
}
.hero-entered .hero-subtitle {
  animation: hero-text-in .85s var(--ease-expo) .38s both;
}
.hero-entered .hero-actions {
  animation: hero-text-in .85s var(--ease-expo) .58s both;
}

/* ---- Electric-yellow base ---- */
.hero-bottom-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: var(--hero-band);
  background: #FBBD03;
  z-index: 3;
  box-shadow: 0 -28px 42px rgba(251,189,3,.78);
  overflow: hidden;
}
.hero-bottom-bar::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: clamp(34px, 6vw, 82px);
  background: linear-gradient(to top, rgba(251,189,3,.82), rgba(251,189,3,0));
  pointer-events: none;
}
.hero-bottom-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.2) 45%, rgba(255,255,255,.38) 50%, transparent 58%);
  transform: translateX(-110%);
  animation: base-scan 3.6s var(--ease-quint) infinite;
}

/* =============================================
   OUR FOCUS
   ============================================= */
.focus {
  position: relative;
  background:
    radial-gradient(circle at 6% 92%, rgba(251,189,3,.16) 0 1px, transparent 1.7px) 0 0 / 18px 18px,
    linear-gradient(180deg, #f7f7f5 0%, #fbfbfa 100%);
  padding: clamp(64px, 6vw, 96px) 0;
  color: #050505;
  overflow: hidden;
}
.focus::before {
  content: '';
  position: absolute;
  width: min(420px, 44vw);
  aspect-ratio: 1;
  right: -6%;
  top: 4%;
  background: url('img/logo-icon.webp') center / contain no-repeat;
  opacity: .045;
  filter: grayscale(1) sepia(.7) saturate(1.6);
  transform: rotate(8deg);
  pointer-events: none;
}
.focus-header {
  position: relative;
  text-align: center;
  margin-bottom: clamp(34px, 4vw, 52px);
  z-index: 1;
}
.focus-kicker {
  margin: 0 0 10px;
  font-family: var(--font-secondary);
  font-size: clamp(.9rem, 1.1vw, 1.08rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e6b900;
}
.focus-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #050505;
  line-height: 1;
}
.focus-dot { color: #FBBD03; }
.focus-underline {
  width: 76px;
  height: 5px;
  background: #FBBD03;
  border-radius: 999px;
  margin: 18px auto 18px;
}
.focus-sub {
  max-width: 680px;
  margin: 0 auto;
  color: #202020;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.45;
  text-wrap: pretty;
}
.focus-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2vw, 28px);
  margin-bottom: 36px;
  z-index: 1;
}
.focus-item {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(230px, .92fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 16px 28px rgba(0,0,0,.13);
  isolation: isolate;
  transition:
    transform .42s var(--ease-expo),
    box-shadow .42s var(--ease-smooth);
}
.focus-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 38px rgba(0,0,0,.18);
}
.focus-img-wrap {
  position: relative;
  height: 100%;
  min-height: 360px;
  border-radius: 0;
  overflow: hidden;
  background: #d9d9d9;
  margin: 0;
}
.focus-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-quint);
}
.focus-item:hover .focus-img-wrap img {
  transform: scale(1.08);
}
.focus-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(0,0,0,.18));
  pointer-events: none;
}
.focus-copy {
  position: relative;
  padding: clamp(28px, 3.2vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 1;
}
.focus-copy::before {
  content: '';
  position: absolute;
  width: 210px;
  aspect-ratio: 1;
  right: -48px;
  bottom: -54px;
  background: url('img/logo-icon.webp') center / contain no-repeat;
  opacity: .06;
  filter: grayscale(1);
  z-index: -1;
}
.focus-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  font-size: 1.35rem;
}
.focus-caption {
  margin: 0 0 16px;
  font-family: var(--font-secondary);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.05;
  color: inherit;
  transition: color .3s var(--ease-smooth);
}
.focus-copy p {
  margin: 0 0 24px;
  max-width: 34ch;
  font-size: clamp(.98rem, 1.08vw, 1.08rem);
  line-height: 1.45;
  text-wrap: pretty;
}
.focus-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-tertiary);
  font-size: .92rem;
  font-weight: 800;
  transition: transform .3s var(--ease-expo), color .3s ease;
}
.focus-link i {
  transition: transform .28s var(--ease-quint);
}
.focus-link:hover {
  transform: translateY(-2px);
}
.focus-link:hover i {
  transform: translateX(4px);
}
.focus-item-dark {
  background: #050505;
  color: #fff;
}
.focus-item-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 50%, rgba(251,189,3,.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 38%);
  pointer-events: none;
}
.focus-item-dark .focus-icon {
  color: #050505;
  background: #FBBD03;
}
.focus-item-dark .focus-copy p {
  color: rgba(255,255,255,.88);
}
.focus-item-dark .focus-link {
  color: #FBBD03;
}
.focus-item-yellow {
  background: #FBBD03;
  color: #050505;
}
.focus-item-yellow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.42), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.24), transparent 44%);
  pointer-events: none;
}
.focus-item-yellow .focus-icon {
  color: #FBBD03;
  background: #050505;
}
.focus-item-yellow .focus-copy p,
.focus-item-yellow .focus-link {
  color: #050505;
}
.focus-cta { text-align: center; }
.btn-focus {
  background: #FBBD03;
  color: var(--bg);
  border-color: #FBBD03;
}
.btn-focus:hover {
  background: var(--bg);
  color: #FBBD03;
  border-color: var(--bg);
  transform: translateY(-3px);
}

/* ---------- ABOUT / WHO WE ARE ---------- */
.about {
  background: #050505;
  height: auto;
  padding: clamp(72px, 7vw, 110px) 0;
}
.about .container {
  max-width: 1540px;
}
.about-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(470px, .98fr);
  background:
    radial-gradient(circle at 78% 16%, rgba(251,189,3,.11), transparent 32%),
    linear-gradient(135deg, #111 0%, #050505 46%, #020202 100%);
  border: 1px solid rgba(251,189,3,.58);
  border-radius: 26px;
  overflow: hidden;
  min-height: clamp(540px, 47vw, 690px);
  max-width: 100%;
  margin: 0 auto;
  isolation: isolate;
}
.about-img-wrap {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  min-width: 0;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 58%, rgba(0,0,0,.22)),
    linear-gradient(0deg, rgba(0,0,0,.08), transparent 38%);
  pointer-events: none;
}
.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  transition: transform .8s var(--ease-quint);
}
.about-card:hover .about-img {
  transform: scale(1.045);
}
.about-content {
  position: relative;
  padding: clamp(46px, 5vw, 78px) clamp(42px, 5.4vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  z-index: 1;
  min-width: 0;
}
.about-content::before {
  content: '';
  position: absolute;
  width: min(420px, 70%);
  aspect-ratio: 1;
  right: 6%;
  top: 9%;
  background: url('img/logo-icon.webp') center / contain no-repeat;
  opacity: .045;
  filter: grayscale(1);
  transform: rotate(-6deg);
  z-index: -1;
}
.about-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 82%, rgba(251,189,3,.2) 82.2%, transparent 83.2%),
    linear-gradient(315deg, transparent 0 87%, rgba(251,189,3,.16) 87.2%, transparent 88.4%);
  opacity: .55;
  pointer-events: none;
  z-index: -1;
}
.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-family: var(--font-secondary);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #f5f5f5;
}
.about-kicker img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(251,189,3,.3));
}
.about-content h2 {
  font-family: var(--font-secondary);
  font-size: clamp(2.8rem, 4.7vw, 4.85rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}
.about-underline {
  width: 86px;
  height: 6px;
  background: #FBBD03;
  border-radius: 999px;
  margin: 24px 0 28px;
  box-shadow: 0 0 10px rgba(251,189,3,.5);
}
.about-content p {
  max-width: 660px;
  color: rgba(255,255,255,.9);
  margin-bottom: 34px;
  font-size: clamp(1.03rem, 1.3vw, 1.25rem);
  line-height: 1.45;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}
.about-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 34px;
}
.about-stat {
  min-height: 150px;
  padding: 22px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  min-width: 0;
  transition:
    transform .38s var(--ease-expo),
    border-color .28s ease,
    background .28s ease;
}
.about-stat:hover {
  transform: translateY(-6px);
  border-color: rgba(251,189,3,.55);
  background: rgba(251,189,3,.07);
}
.about-stat-featured {
  border-color: rgba(251,189,3,.95);
  background: linear-gradient(180deg, rgba(251,189,3,.1), rgba(255,255,255,.035));
  box-shadow: 0 0 12px rgba(251,189,3,.35);
}
.about-stat i {
  color: #FBBD03;
  font-size: clamp(1.9rem, 2.4vw, 2.55rem);
  margin-bottom: 18px;
}
.about-stat strong {
  font-family: var(--font-secondary);
  color: #fff;
  font-size: clamp(1.9rem, 2.7vw, 2.65rem);
  line-height: 1;
  letter-spacing: 0;
}
.about-stat span {
  color: rgba(255,255,255,.88);
  font-size: clamp(.86rem, 1vw, 1rem);
  line-height: 1.2;
  margin-top: 10px;
}
.about-content .btn-focus {
  min-width: 218px;
  min-height: 64px;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-tertiary);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #000;
  border-color: #FBBD03;
}
.about-content .btn-focus:hover {
  color: #FBBD03;
  border-color: #FBBD03;
}

/* ---------- SERVICES ---------- */
.dark-section { background: var(--bg-3); }
.section-header.light .section-sub { color: var(--muted); }

.services {
  background: var(--surface);
  color: #000;
  padding: 72px 0 96px;
  overflow: hidden;
}
.services .container {
  max-width: 1480px;
}
.services-header {
  text-align: center;
  margin-bottom: 34px;
}
.services-header h2 {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.1;
  color: #000;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.services-header p {
  max-width: 720px;
  margin: 14px auto 0;
  color: #51545a;
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 700;
  line-height: 1.45;
  text-wrap: balance;
}
.services-mark {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr);
  align-items: center;
  gap: 14px;
  width: min(320px, 80vw);
  margin: 0 auto 12px;
}
.services-mark span {
  height: 3px;
  background: #FBBD03;
}
.services-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.18));
}
.services-underline {
  width: 82px;
  height: 5px;
  margin: 9px auto 0;
  border-radius: 999px;
  background: #FBBD03;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  justify-content: center;
  gap: clamp(20px, 2vw, 26px);
}
.service-card {
  position: relative;
  width: 100%;
  background: #0b0b0b;
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 18px 28px rgba(0,0,0,.24);
}
.services-grid > .service-card:last-child {
  grid-column: 2 / 4;
  justify-self: center;
  width: min(100%, 340px);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--px, 50%) var(--py, 50%), rgba(251,189,3,.34), transparent 35%);
  mix-blend-mode: screen;
  transition: opacity .28s var(--ease-smooth);
}
.service-card:hover::after {
  opacity: 1;
}

/* ---- service card image banner ---- */
.service-img-wrap {
  position: relative;
  height: clamp(210px, 17vw, 260px);
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #d7d7d7;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: none;
  transition: transform .7s var(--ease-quint), filter .7s var(--ease-smooth);
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.1) rotate(.6deg);
  filter: contrast(1.08) saturate(1.08);
}

/* ---- service card body ---- */
.service-body {
  position: relative;
  min-height: 218px;
  padding: 22px 22px 20px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  column-gap: 12px;
  row-gap: 16px;
  background:
    linear-gradient(135deg, #171717 0%, #090909 62%, #050505 100%);
}
.service-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #FBBD03;
}
.service-body::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -34px;
  width: 180px;
  height: 130px;
  opacity: .14;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,.22) 48%, transparent 76%);
  pointer-events: none;
}
.service-icon {
  position: relative;
  z-index: 1;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(251,189,3,.32);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  color: #FBBD03;
  font-size: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.service-copy {
  display: contents;
  min-width: 0;
}
.service-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-secondary);
  font-size: clamp(.96rem, 1.05vw, 1.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: 0;
  margin: 0 0 7px;
  text-wrap: balance;
}
.service-card p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  max-width: 32ch;
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  font-size: clamp(.88rem, .94vw, .98rem);
  line-height: 1.42;
  text-wrap: pretty;
}
.service-link {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 172px;
  height: 44px;
  padding: 0 18px 0 22px;
  border-radius: 7px;
  background: #FBBD03;
  color: #000;
  font-family: var(--font-tertiary);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 10px 18px rgba(251,189,3,.18);
  transition: transform .28s var(--ease-quint), box-shadow .28s var(--ease-smooth), filter .28s var(--ease-smooth);
}
.service-link i {
  font-size: .85rem;
  transition: transform .28s var(--ease-quint);
}
.service-link:hover {
  color: #000;
  filter: brightness(1.02);
  box-shadow: 0 14px 24px rgba(251,189,3,.28);
}
.service-link:hover i {
  transform: translateX(5px);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--orange-d) 0%, var(--orange) 45%, #FBBD03 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 90px 28px;
}
.cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.cta-text p {
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  font-size: .98rem;
}
.cta-banner .btn-outline {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  box-shadow: none;
}
.cta-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.cta-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
}
.cta-img-wrap img { width: 100%; height: 400px; object-fit: cover; }

/* ---------- INDUSTRIES ---------- */
.industries {
  background:
    radial-gradient(circle at 50% 0%, rgba(0,0,0,.06), transparent 34%),
    linear-gradient(180deg, #fbfbfa 0%, #f6f6f5 100%);
  color: #111;
  padding: clamp(62px, 6vw, 86px) 0 clamp(80px, 8vw, 116px);
}
.industries .container {
  max-width: 1500px;
}
.industries .section-header {
  margin-bottom: clamp(36px, 4vw, 54px);
}
.industries .section-tag {
  background: rgba(255,255,255,.58);
  border-color: rgba(17,17,17,.32);
  color: var(--orange);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  padding: 8px 36px;
}
.industries .section-tag::before {
  display: none;
}
.industries .section-header h2 {
  color: #050505;
  font-family: var(--font-secondary);
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: .94;
  letter-spacing: -.025em;
  margin-bottom: 22px;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}
.industries .section-sub {
  max-width: 760px;
  color: #4f5358;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.45;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
}
.industry-card {
  min-height: clamp(430px, 35vw, 520px);
  background: #071015;
  border: 0;
  border-radius: 8px;
  padding: 0;
  text-align: left;
  transition: var(--trans);
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}
.industry-card::before,
.industry-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  pointer-events: none;
  z-index: 1;
}
.industry-card::before {
  top: 0;
  height: 5px;
  background: var(--orange);
}
.industry-card::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,7,10,.2) 0%, rgba(3,7,10,.42) 42%, rgba(2,8,11,.96) 100%),
    linear-gradient(90deg, rgba(0,0,0,.28), transparent 52%);
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 44px rgba(0,0,0,.24);
}
.industry-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 2.2vw, 34px) clamp(18px, 1.7vw, 24px) 24px;
}
.industry-content::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--px, 50%) var(--py, 50%), rgba(251,189,3,.2), transparent 38%);
  transition: opacity .32s var(--ease-smooth);
}
.industry-card:hover .industry-content::before {
  opacity: 1;
}
.industry-icon {
  width: clamp(68px, 5.2vw, 82px);
  height: clamp(68px, 5.2vw, 82px);
  display: grid;
  place-items: center;
  border: 3px solid var(--orange);
  border-radius: 50%;
  font-size: clamp(1.85rem, 2vw, 2.25rem);
  color: var(--orange);
  margin-bottom: 18px;
  transition: var(--trans);
}
.industry-card:hover .industry-icon {
  background: rgba(251,189,3,.1);
  box-shadow: 0 0 20px rgba(251,189,3,.22);
}
.industry-card h4 {
  max-width: 11ch;
  font-family: var(--font-tertiary);
  font-size: clamp(1.45rem, 1.75vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}
.industry-card h4::after {
  content: '';
  display: block;
  width: 36px;
  height: 4px;
  background: var(--orange);
  border-radius: 99px;
  margin-top: 16px;
}
.industry-card p {
  max-width: 20ch;
  color: rgba(255,255,255,.86);
  font-size: clamp(.95rem, 1.05vw, 1.06rem);
  line-height: 1.42;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.industry-link {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 1.05rem;
  transition: transform .3s var(--ease-expo), background .3s var(--ease-smooth), color .3s var(--ease-smooth);
}
.industry-link:hover,
.industry-link:focus-visible {
  background: var(--orange);
  color: #050505;
  transform: translateX(4px);
}

/* ---------- PROCESS ---------- */
.process {
  background:
    linear-gradient(180deg, #F6F6F5 0%, #F6F6F5 72%, #f0f0ee 100%);
  color: #000;
  padding: 72px 0 92px;
  overflow: hidden;
}
.process-header {
  text-align: center;
  margin-bottom: 46px;
}
.process-header h2 {
  font-family: var(--font-secondary);
  font-size: clamp(2.1rem, 3.8vw, 2.55rem);
  font-weight: 800;
  line-height: 1.1;
  color: #000;
  letter-spacing: 0;
}
.process-underline {
  width: 92px;
  height: 6px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #FBBD03;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 260px));
  justify-content: center;
  align-items: start;
  gap: 22px;
}
.process-card {
  position: relative;
  padding: 10px 10px 22px;
  text-align: center;
  color: #000;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  box-shadow: 0 8px 10px rgba(0,0,0,.08);
  transition: transform .35s var(--ease-expo), box-shadow .35s var(--ease-smooth);
  overflow: hidden;
  isolation: isolate;
}
.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--px, 50%) var(--py, 50%), rgba(251,189,3,.26), transparent 42%);
  transition: opacity .3s var(--ease-smooth);
}
.process-card::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  z-index: 2;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: #FBBD03;
}
.process-card:hover::before {
  opacity: 1;
}
.process-image,
.process-card h3 {
  position: relative;
  z-index: 1;
}
.process-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 26px rgba(0,0,0,.16);
}
.process-image {
  position: relative;
  width: 100%;
  aspect-ratio: 250 / 395;
  overflow: hidden;
  border-radius: 4px;
  background: #060606;
  margin-bottom: 20px;
}
.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease-smooth), filter .45s var(--ease-smooth);
}
.process-card:hover .process-image img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}
.process-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.16;
  color: #000;
  letter-spacing: 0;
  margin: 0;
}
.process-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}
.process-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 150px;
  height: 40px;
  padding: 0 24px;
  border-radius: 4px;
  background: #FBBD03;
  color: #000;
  border: 1px solid var(--orange);
  font-family: var(--font-tertiary);
  font-size: .84rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .3s var(--ease-expo), background .3s var(--ease-smooth);
}
.process-btn i {
  transition: transform .28s var(--ease-quint);
}
.process-btn:hover {
  background: #fff700;
  color: #000;
  transform: translateY(-2px);
}
.process-btn:hover i {
  transform: translateX(4px);
}

.testimonials {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.testimonials::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(5,7,12,.92);
  pointer-events: none;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
/* Giant quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 9rem;
  color: rgba(251,189,3,.08);
  font-family: var(--font-secondary);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: var(--border);
  background: rgba(251,189,3,.04);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), var(--glow-sm);
}
.stars { color: var(--orange); margin-bottom: 20px; font-size: .9rem; letter-spacing: 2px; }
.testimonial-card > p {
  color: var(--off);
  font-size: .9rem;
  margin-bottom: 28px;
  line-height: 1.75;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
  box-shadow: var(--glow-sm);
}
.testimonial-author strong { display: block; color: var(--white); font-size: .9rem; }
.testimonial-author span { color: var(--muted); font-size: .76rem; }

@media (max-width: 760px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(210px, 250px));
    gap: 28px 20px;
  }
}

@media (max-width: 580px) {
  .process-grid {
    grid-template-columns: minmax(240px, 320px);
  }
}

/* ---------- PARTNERS ---------- */
.partners {
  background: #050505;
  color: #fff;
  padding: 72px 0 84px;
}
.partners-header {
  text-align: center;
  margin-bottom: 38px;
}
.partners-header h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0;
}
.partners-underline {
  width: 82px;
  height: 5px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #FBBD03;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
}
.partners-grid-verified {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  justify-content: center;
}
.partner-card {
  position: relative;
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: #101010;
  border: 1px solid rgba(251,189,3,.18);
  border-radius: 8px;
  transition: transform .35s var(--ease-expo), border-color .35s var(--ease-smooth), background .35s var(--ease-smooth);
  overflow: hidden;
  isolation: isolate;
}
.partner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--px, 50%) var(--py, 50%), rgba(251,189,3,.22), transparent 44%);
  transition: opacity .28s var(--ease-smooth);
}
.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(251,189,3,.62);
  background: #151515;
}
.partner-card:hover::after {
  opacity: 1;
}
.partner-card > * {
  position: relative;
  z-index: 1;
}
.partner-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #FBBD03;
  color: #000;
  font-family: var(--font-tertiary);
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .4s var(--ease-spring);
}
.partner-card:hover .partner-mark {
  transform: rotate(-10deg) scale(1.08);
}
.partner-card strong {
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}
.partner-card-logo {
  min-height: 150px;
  padding: 26px 30px;
}
.partner-logo-wrap {
  width: 128px;
  min-height: 86px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 8px rgba(0,0,0,.22);
  transition: transform .4s var(--ease-spring);
}
.partner-logo-wrap img {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
}
.partner-card-logo:hover .partner-logo-wrap {
  transform: rotate(-3deg) scale(1.04);
}
.partner-copy {
  display: grid;
  gap: 8px;
}
.partner-copy strong {
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
}
.partner-copy small {
  color: rgba(255,255,255,.7);
  font-family: var(--font-primary);
  font-size: .95rem;
  font-weight: 700;
}

@media (max-width: 820px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
  .partners-grid-verified {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 540px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid-verified {
    grid-template-columns: 1fr;
  }
  .partner-card-logo {
    align-items: flex-start;
    flex-direction: column;
  }
  .partner-logo-wrap {
    width: 118px;
  }
}

/* ---------- CONTACT ---------- */
.contact {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(110deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.74) 46%, rgba(0,0,0,.86) 100%),
    url('img/image-3.webp') center / cover fixed;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(251,189,3,.16), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.48));
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: #fff;
  margin-bottom: 16px;
}
.contact-info > p { color: #d9d9d9; margin-bottom: 36px; font-size: .95rem; }
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  color: var(--off);
}
.contact-list li i {
  width: 40px; height: 40px;
  background: rgba(251,189,3,.1);
  border: 1px solid rgba(251,189,3,.2);
  color: var(--orange);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform .35s var(--ease-spring), background .3s var(--ease-smooth), box-shadow .3s var(--ease-smooth);
}
.contact-list li:hover i {
  background: rgba(251,189,3,.2);
  box-shadow: var(--glow-sm);
  transform: scale(1.1) rotate(-6deg);
}
.contact-list a { color: var(--off); transition: var(--trans); }
.contact-list a:hover { color: var(--orange); }

.contact-form {
  background: rgba(3,3,3,.76);
  border: 1px solid rgba(251,189,3,.18);
  border-radius: 20px;
  padding: 52px 44px;
  backdrop-filter: blur(20px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group:not(.form-row .form-group) { margin-bottom: 20px; }

label {
  font-family: var(--font-tertiary);
  font-size: .75rem;
  font-weight: 700;
  color: var(--off);
  text-transform: uppercase;
  letter-spacing: .1em;
}
input, select, textarea {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .9rem;
  font-family: var(--font-primary);
  color: var(--white);
  background: rgba(255,255,255,.05);
  width: 100%;
  outline: none;
  transition: var(--trans);
}
input::placeholder, textarea::placeholder { color: var(--muted); }
select option { background: var(--bg-3); color: var(--white); }
input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  background: rgba(251,189,3,.05);
  box-shadow: 0 0 0 3px rgba(251,189,3,.1), 0 0 28px rgba(251,189,3,.14);
  transform: translateY(-2px);
}
textarea { resize: vertical; }
.form-note {
  font-size: .82rem;
  color: #4ade80;
  margin-top: 14px;
  text-align: center;
  min-height: 20px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #000;
  border-top: 1px solid rgba(251,189,3,.15);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-brand > p {
  color: var(--muted);
  font-size: .86rem;
  margin: 22px 0 26px;
  max-width: 280px;
  line-height: 1.75;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  color: var(--muted);
  border-radius: 9px;
  display: grid; place-items: center;
  font-size: .85rem;
  transition: var(--trans);
}
.footer-socials a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--glow-sm);
}
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li {
  font-size: .86rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-col ul a { color: var(--muted); transition: var(--trans); }
.footer-col ul a:hover { color: var(--orange); }
.footer-col ul i { font-size: .82rem; width: 16px; color: var(--orange); }

.footer-bottom { padding: 22px 0; }
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: var(--trans); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- SCROLL-TO-TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 900;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--glow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: var(--glow-lg); }

.floating-actions {
  position: fixed;
  right: 28px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .32s var(--ease-expo), transform .32s var(--ease-expo);
}
.floating-actions.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.floating-actions .scroll-top {
  position: static;
  opacity: 1;
  pointer-events: auto;
}
.float-action {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #050505;
  background: #FBBD03;
  border: 2px solid #FBBD03;
  font-size: 1.2rem;
  box-shadow: 0 0 24px rgba(251,189,3,.34);
  isolation: isolate;
  transition: transform .28s var(--ease-expo), background .28s ease, color .28s ease;
}
.float-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.float-action::before,
.float-action::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: .45;
  animation: float-ripple 2.2s var(--ease-expo) infinite;
  z-index: -1;
}
.float-action::after {
  animation-delay: .65s;
}
.float-action:hover {
  transform: translateY(-4px) scale(1.04);
}
.float-action:hover::before,
.float-action:hover::after {
  animation-duration: 1.4s;
}
.float-action span,
.float-action::marker {
  display: none;
}
.float-action:hover::selection {
  background: transparent;
}
.float-action::before {
  pointer-events: none;
}
.float-action[data-label]::after {
  pointer-events: none;
}
.float-action:hover::before {
  content: attr(data-label);
  inset: auto 64px auto auto;
  width: max-content;
  max-width: 190px;
  height: auto;
  padding: 9px 12px;
  border: 0;
  border-radius: 6px;
  background: #050505;
  color: #fff;
  font-family: var(--font-tertiary);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  opacity: 1;
  animation: none;
  box-shadow: 0 8px 16px rgba(0,0,0,.24);
}
@keyframes float-ripple {
  0% { transform: scale(.9); opacity: .46; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Detail pages ---------- */
.detail-page {
  background: #F7F7F5;
  color: #050505;
}
.detail-page main {
  padding-top: 86px;
}
.detail-nav {
  min-height: 86px;
  padding: 18px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: #050505;
  border-top: 4px solid #FBBD03;
}
.detail-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}
.detail-nav nav a {
  font-family: var(--font-tertiary);
  color: rgba(255,255,255,.78);
  padding: 8px 12px;
  border-radius: 8px;
}
.detail-nav nav a:hover {
  color: #050505;
  background: #FBBD03;
}
.service-page-hero {
  margin-top: -16px;
  padding: calc(clamp(58px, 7vw, 100px) + 16px) 0 clamp(58px, 7vw, 100px);
  background:
    radial-gradient(circle at 96% 22%, rgba(251,189,3,.14), transparent 30%),
    linear-gradient(180deg, #111 0%, #050505 100%);
  color: #fff;
  overflow: hidden;
}
.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}
.service-page-grid > *,
.service-detail-grid > *,
.related-grid > * {
  min-width: 0;
}
.page-kicker {
  margin: 0 0 12px;
  font-family: var(--font-secondary);
  color: #FBBD03;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}
.service-page-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.08;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.page-underline {
  width: 84px;
  height: 5px;
  margin: 24px 0 26px;
  border-radius: 999px;
  background: #FBBD03;
}
.service-page-copy p:not(.page-kicker) {
  max-width: 660px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.5;
}
.page-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.service-page-media {
  position: relative;
  aspect-ratio: 1.12 / .82;
  overflow: hidden;
  border: 3px solid #FBBD03;
  border-radius: 18px;
  box-shadow: 0 20px 38px rgba(0,0,0,.28);
}
.service-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-page-body,
.service-related {
  padding: clamp(54px, 6vw, 86px) 0;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
}
.service-panel {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 28px rgba(0,0,0,.08);
}
.service-panel h2,
.related-header h2 {
  color: #050505;
  font-size: clamp(1.8rem, 3vw, 3rem);
}
.service-panel p {
  margin-top: 18px;
  max-width: 72ch;
  color: #181818;
  font-size: 1.08rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.service-panel-yellow {
  background: #FBBD03;
}
.service-panel ul {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.service-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #050505;
  font-weight: 700;
}
.service-panel li i {
  margin-top: 4px;
}
.service-related {
  background: #fff;
}
.related-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}
.related-header a,
.related-grid a {
  font-family: var(--font-tertiary);
  font-weight: 800;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.related-grid a {
  min-height: 120px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  border-radius: 10px;
  background: #050505;
  color: #fff;
}
.related-grid i {
  color: #FBBD03;
  font-size: 1.45rem;
}

.about-partner-section {
  position: relative;
  padding: clamp(64px, 7vw, 104px) 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(251,189,3,.16), transparent 30%),
    linear-gradient(135deg, #070707 0%, #111 55%, #050505 100%);
  color: #fff;
  overflow: hidden;
}
.about-partner-section::before {
  content: '';
  position: absolute;
  inset: auto -8% -42% auto;
  width: min(520px, 50vw);
  aspect-ratio: 1;
  background: url('img/logo-icon.webp') center / contain no-repeat;
  opacity: .045;
  filter: grayscale(1);
  transform: rotate(-10deg);
  pointer-events: none;
}
.about-partner-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  z-index: 1;
}
.about-partner-copy h2,
.core-values-header h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
  line-height: 1;
  text-wrap: balance;
}
.about-partner-copy > p:not(.page-kicker) {
  max-width: 66ch;
  margin-top: 22px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 1.32vw, 1.22rem);
  line-height: 1.5;
}
.partner-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.partner-proof-grid div {
  position: relative;
  min-height: 164px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.partner-proof-grid div::after {
  content: '';
  position: absolute;
  inset: auto 14px 12px auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(251,189,3,.08);
  transform: scale(.84);
  transition: transform .35s var(--ease-expo);
}
.partner-proof-grid div:hover::after {
  transform: scale(1.14);
}
.partner-proof-grid i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #FBBD03;
  color: #050505;
  font-size: 1.08rem;
}
.partner-proof-grid strong {
  font-family: var(--font-secondary);
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.1;
}
.partner-proof-grid span {
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  line-height: 1.35;
}
.partner-illustration {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.partner-orbit {
  position: absolute;
  width: min(380px, 78vw);
  aspect-ratio: 1;
  border: 2px solid rgba(251,189,3,.72);
  border-radius: 50%;
  animation: partner-spin 18s linear infinite;
}
.partner-orbit::before,
.partner-orbit::after {
  content: '';
  position: absolute;
  inset: 42px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 50%;
}
.partner-orbit::after {
  inset: 86px;
  border-style: solid;
  opacity: .5;
}
.orbit-dot {
  position: absolute;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  border: 2px solid #FBBD03;
  color: #FBBD03;
  box-shadow: 0 0 18px rgba(251,189,3,.34);
}
.orbit-dot-one { left: 50%; top: -27px; transform: translateX(-50%); }
.orbit-dot-two { right: -27px; top: 50%; transform: translateY(-50%); }
.orbit-dot-three { left: 50%; bottom: -27px; transform: translateX(-50%); }
.orbit-dot-four { left: -27px; top: 50%; transform: translateY(-50%); }
.partner-shield {
  width: min(220px, 46vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(251,189,3,.2), rgba(251,189,3,.04) 58%, transparent 60%),
    #0b0b0b;
  border: 1px solid rgba(251,189,3,.55);
  box-shadow: 0 0 38px rgba(251,189,3,.2);
  z-index: 2;
}
.partner-shield img {
  width: 66%;
  filter: drop-shadow(0 0 16px rgba(251,189,3,.34));
}
.partner-signal {
  position: absolute;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(251,189,3,.22);
  border-radius: 50%;
  animation: partner-pulse 2.6s var(--ease-expo) infinite;
}
.partner-signal-two {
  animation-delay: .75s;
}

.core-values-section {
  padding: clamp(64px, 7vw, 104px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(251,189,3,.14), transparent 28%),
    linear-gradient(180deg, #F7F7F5 0%, #fff 100%);
  color: #050505;
}
.core-values-header {
  max-width: 820px;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.core-values-header h2 {
  color: #050505;
}
.core-values-header .page-kicker {
  color: #b8a900;
}
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.value-card {
  position: relative;
  min-height: 286px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 12px;
  background: #fff;
  color: #050505;
  overflow: hidden;
  box-shadow: 0 12px 20px rgba(0,0,0,.08);
  transition: transform .36s var(--ease-expo), box-shadow .36s var(--ease-smooth);
}
.value-card::before {
  content: '';
  position: absolute;
  width: 190px;
  aspect-ratio: 1;
  right: -56px;
  top: -58px;
  border-radius: 50%;
  background: rgba(251,189,3,.18);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 26px rgba(0,0,0,.12);
}
.value-illustration {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #FBBD03;
  color: #050505;
  font-size: 2rem;
}
.value-illustration::after {
  content: '';
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(5,5,5,.12);
  border-radius: 24px;
}
.value-card h3 {
  position: relative;
  margin-bottom: 10px;
  color: inherit;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}
.value-card p {
  position: relative;
  color: #202020;
  line-height: 1.45;
}
.value-card-dark {
  background:
    radial-gradient(circle at 78% 2%, rgba(251,189,3,.16), transparent 34%),
    #050505;
  color: #fff;
}
.value-card-dark p {
  color: rgba(255,255,255,.84);
}
.value-card-dark .value-illustration {
  box-shadow: 0 0 20px rgba(251,189,3,.26);
}
.value-card-yellow {
  background: #FBBD03;
}
.value-card-yellow::before {
  background: rgba(5,5,5,.1);
}
.value-card-yellow .value-illustration {
  background: #050505;
  color: #FBBD03;
}
.value-card-yellow .value-illustration::after {
  border-color: rgba(5,5,5,.22);
}

@keyframes partner-spin {
  to { transform: rotate(360deg); }
}

@keyframes partner-pulse {
  0% { transform: scale(.72); opacity: .66; }
  100% { transform: scale(1.12); opacity: 0; }
}

@media (max-width: 900px) {
  .service-page-grid,
  .service-detail-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .service-page-grid {
    gap: 34px;
  }
  .service-page-media {
    order: -1;
    min-width: 0;
  }
  .detail-nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-partner-grid {
    grid-template-columns: 1fr;
  }
  .partner-illustration {
    min-height: 390px;
    order: -1;
  }
  .partner-proof-grid,
  .core-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .detail-page main {
    padding-top: 70px;
  }
  .service-page-hero {
    padding: 72px 0 58px;
  }
  .service-page-copy h1 {
    font-size: clamp(2.25rem, 11vw, 2.75rem);
    line-height: 1.05;
  }
  .service-page-copy p:not(.page-kicker) {
    font-size: 1rem;
  }
  .page-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-actions .btn {
    width: 100%;
    justify-content: center;
    padding-inline: 18px;
  }
  .service-page-media {
    border-width: 2px;
    border-radius: 14px;
  }
  .service-page-body,
  .service-related {
    padding: 56px 0;
  }
  .service-panel {
    min-height: 0;
    padding: 30px 28px;
  }
  .service-panel h2,
  .related-header h2 {
    font-size: 2rem;
  }
  .related-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-partner-section,
  .core-values-section {
    padding: 56px 0;
  }
  .about-partner-copy h2,
  .core-values-header h2 {
    font-size: clamp(2.05rem, 11vw, 2.7rem);
  }
  .partner-proof-grid,
  .core-values-grid {
    grid-template-columns: 1fr;
  }
  .partner-proof-grid div {
    min-height: 0;
  }
  .partner-illustration {
    min-height: 310px;
  }
  .partner-orbit {
    width: min(270px, 76vw);
  }
  .orbit-dot {
    width: 44px;
    height: 44px;
  }
  .orbit-dot-one { top: -22px; }
  .orbit-dot-two { right: -22px; }
  .orbit-dot-three { bottom: -22px; }
  .orbit-dot-four { left: -22px; }
  .value-card {
    min-height: 246px;
    padding: 24px;
  }
  .value-illustration {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    font-size: 1.6rem;
  }
  .floating-actions {
    right: 18px;
    bottom: 18px;
  }
  .float-action,
  .floating-actions .scroll-top {
    width: 48px;
    height: 48px;
  }
  .service-page-media {
    aspect-ratio: 1 / .82;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1240px) {
  .nav-phone { display: none; }
  .nav-links a { padding-inline: 10px; font-size: .78rem; }
  .nav-right .btn { padding-inline: 14px; }
}

@media (max-width: 1100px) {
  .focus-grid {
    grid-template-columns: 1fr;
  }
  .focus-item {
    grid-template-columns: minmax(260px, .72fr) 1fr;
  }
  .about-card { grid-template-columns: 48% 52%; }
  .about-content { padding: 42px 36px; }
  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-stat { min-height: 128px; }
  .services-grid      { grid-template-columns: repeat(2, minmax(280px, 1fr)); gap: 24px; }
  .services-grid > .service-card:last-child { grid-column: auto; width: 100%; }
  .industries-grid    { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .industry-card      { min-height: 460px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-right { display: none; }
  .mobile-booking { display: block; }
  .hamburger { display: flex; margin-left: auto; flex-shrink: 0; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(0,0,0,.97);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 28px;
    z-index: 999;
    gap: 2px;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .nav-links.open > li,
  .nav-links.open > li > a { width: 100%; }
  .nav-links.open > li > a { justify-content: space-between; }
  .nav-links.open .nav-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 5px;
    margin: 6px 0 10px;
    padding: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border-radius: 8px;
    box-shadow: none;
    background: rgba(255,255,255,.055);
    border-top: 1px solid rgba(251,189,3,.5);
  }
  .nav-links.open .nav-menu::before { display: none; }
  .nav-links.open .nav-menu a {
    min-height: 38px;
    padding: 9px 11px;
    font-size: .76rem;
    color: rgba(255,255,255,.78);
    background: rgba(0,0,0,.24);
  }
  .nav-links.open .mobile-booking a {
    justify-content: center;
    margin-top: 8px;
    background: var(--orange);
    color: #000;
    font-weight: 700;
  }

  .testimonials-grid  { grid-template-columns: 1fr; }
  .about-card         { grid-template-columns: 1fr; }
  .cta-inner          { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid       { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-right { display: none; }
  .mobile-booking { display: block; }
  .hamburger { display: flex; margin-left: auto; flex-shrink: 0; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(0,0,0,.97);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 28px;
    z-index: 999;
    gap: 2px;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .nav-links.open > li,
  .nav-links.open > li > a { width: 100%; }
  .nav-links.open > li > a { justify-content: space-between; }
  .nav-links.open .nav-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 5px;
    margin: 6px 0 10px;
    padding: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border-radius: 8px;
    box-shadow: none;
    background: rgba(255,255,255,.055);
    border-top: 1px solid rgba(251,189,3,.5);
  }
  .nav-links.open .nav-menu::before { display: none; }
  .nav-links.open .nav-menu a {
    min-height: 38px;
    padding: 9px 11px;
    font-size: .76rem;
    color: rgba(255,255,255,.78);
    background: rgba(0,0,0,.24);
  }

  /* Hero mobile */
  .hero {
    --hero-nav: 85px;
    min-height: 100vh;
  }
  .hero-inner {
    bottom: calc(var(--hero-band) - 24px);
    padding: 0 20px;
  }
  .hero-title { font-size: clamp(2.55rem, 12vw, 4.1rem); }
  .hero-subtitle {
    margin-top: 14px;
    max-width: 36rem;
    font-size: 1rem;
  }
  .hero-actions {
    gap: 12px;
    margin-top: 22px;
  }
  .hero-actions .btn {
    min-width: min(220px, 100%);
    min-height: 54px;
    padding-inline: 22px;
  }

  /* Our Focus mobile */
  .focus { padding: 60px 0; }
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
  }
  .focus-item {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .focus-img-wrap {
    height: auto;
    min-height: 250px;
    aspect-ratio: 16 / 8.8;
  }
  .focus-img-wrap::after {
    background: linear-gradient(180deg, transparent 62%, rgba(0,0,0,.18));
  }
  .focus-copy {
    padding: 30px 26px 34px;
  }

  .section       { padding: 72px 0; }
  .services { padding: 72px 0 96px; }
  .services-grid { grid-template-columns: minmax(280px, 440px); gap: 28px; }
  .service-img-wrap { height: 230px; }
  .service-body { min-height: 0; }
  .about-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 18px;
  }
  .about-img-wrap { min-height: clamp(320px, 64vw, 520px); }
  .about-content  { padding: 42px 28px 48px; }
  .about-content::before { width: 320px; right: -12%; top: 8%; }
  .industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-card { min-height: 430px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 36px 24px; }
  .about { padding: 72px 0; }
  .about-stats { gap: 10px; }
  .about-stat { min-height: 118px; padding: 18px 10px 16px; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .logo { font-size: .9rem; letter-spacing: .08em; }
  .logo-icon { width: 30px; height: 30px; }
  .logo-text small { font-size: .38rem; letter-spacing: .38em; }
  .nav-right { display: none; }
  .mobile-booking { display: block; }
  .nav-links.open .mobile-booking a {
    justify-content: center;
    margin-top: 8px;
    background: var(--orange);
    color: #000;
    font-weight: 700;
  }
  .hamburger { margin-left: auto; padding: 5px; }
  .hamburger span { width: 22px; }
  .about .container { padding: 0 14px; }
  .about-card { border-radius: 14px; }
  .about-img-wrap { min-height: 300px; }
  .about-content { padding: 34px 22px 38px; }
  .about-kicker {
    gap: 10px;
    margin-bottom: 18px;
    font-size: .72rem;
    letter-spacing: .18em;
  }
  .about-kicker img { width: 28px; height: 28px; }
  .about-underline { margin: 18px 0 24px; }
  .about-content p { font-size: 1rem; line-height: 1.5; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat strong { font-size: 1.65rem; }
  .about-stat span { font-size: .8rem; }
  .about-content .btn-focus {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }
}

@media (max-width: 480px) {
  .focus-header {
    text-align: left;
  }
  .focus-underline {
    margin-left: 0;
  }
  .focus-img-wrap {
    min-height: 220px;
  }
  .focus-copy {
    padding: 26px 22px 30px;
  }
  .focus-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  .hero { --hero-nav: 81px; min-height: 100vh; }
  .hero-bg-img { object-position: 54% 25%; }
  .hero-inner {
    bottom: calc(var(--hero-band) - 30px);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .industries-grid { grid-template-columns: 1fr; }
  .industries .section-tag { padding-inline: 24px; }
  .industry-card { min-height: 390px; }
  .industry-card p { max-width: 28ch; }
  .cta-img-wrap img { height: 260px; }
}

/* =============================================
   ANIMATIONS & INTERACTIONS
   ============================================= */

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--orange));
  background-size: 200% 100%;
  z-index: 99999;
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(251,189,3,.6);
  animation: prog-shimmer 2s linear infinite;
}
@keyframes prog-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---- Cursor glow spotlight ---- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(251,189,3,.065) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed; inset: 0;
  z-index: 999999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.pre-out { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.pre-logo {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-secondary);
  font-size: 2.4rem; font-weight: 700; color: var(--white);
  animation: pre-pulse 1.4s ease-in-out infinite;
}
@keyframes pre-pulse {
  0%, 100% { opacity: .7; transform: scale(.97); }
  50%       { opacity: 1;  transform: scale(1); }
}
.pre-icon {
  width: 58px; height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(251,189,3,.5));
}
.pre-name { letter-spacing: -.02em; }
.pre-track { width: 220px; height: 3px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; }
.pre-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 4px; box-shadow: 0 0 14px rgba(251,189,3,.6);
  transition: width .18s ease;
}
.pre-label { font-family: var(--font-tertiary); font-size: .75rem; font-weight: 600; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }

/* ---- Active nav link ---- */
.nav-links a.active { color: var(--orange); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a { position: relative; }

/* ---- Hamburger open ? X ---- */
.hamburger span { transition: transform .3s ease, opacity .3s ease; }
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
/* ease-in-out expo: starts slow (ease-in), sweeps fast, lands soft (ease-out) */
:root {
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart:  cubic-bezier(0.25, 1, 0.5, 1);
  --ease-quint:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-in:     cubic-bezier(0.55, 0, 1, 0.45);
}

.sr {
  opacity: 0;
  clip-path: inset(0 0 18% 0);
  will-change: opacity, transform, clip-path;
}
.sr.sr-up    { transform: translateY(64px); }
.sr.sr-left  { transform: translateX(-64px); }
.sr.sr-right { transform: translateX(64px); }
.sr.sr-scale { transform: scale(.82); }
.sr.sr-shown {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
  transition:
    opacity   .8s var(--ease-expo) var(--sr-delay, 0s),
    transform .8s var(--ease-expo) var(--sr-delay, 0s),
    clip-path .8s var(--ease-expo) var(--sr-delay, 0s);
}

/* =============================================
   HERO ENTRANCE — staggered
   ============================================= */
@keyframes word-rise {
  0% {
    opacity: 0;
    transform: translateY(.75em) rotateX(68deg) scale(.96);
    filter: blur(8px);
  }
  62% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
@keyframes hero-text-in {
  0% {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
@keyframes hero-drift {
  0%   { transform: scale(1.12) translate3d(0, 18px, 0); filter: contrast(1.12) saturate(.9) brightness(.92); }
  100% { transform: scale(1.03) translate3d(0, 0, 0); filter: contrast(1.05) saturate(.98) brightness(1); }
}
@keyframes hero-sweep {
  0%   { opacity: 0; transform: translateX(-120%) skewX(-14deg); }
  16%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(120%) skewX(-14deg); }
}
@keyframes base-scan {
  0%   { transform: translateX(-110%); opacity: 0; }
  18%  { opacity: .95; }
  52%  { opacity: .7; }
  100% { transform: translateX(110%); opacity: 0; }
}
@keyframes par-line {
  0%   { transform: translateX(-35%) scaleX(.55); opacity: .35; }
  42%  { opacity: 1; }
  100% { transform: translateX(35%) scaleX(1); opacity: .45; }
}

/* ---- Gradient animation on hero heading ---- */
.hero-title .grad-text { background-size: 200% auto; animation: grad-move 5s ease infinite; }
@keyframes grad-move {
  0%, 100% { background-position: 0%   50%; }
  50%       { background-position: 100% 50%; }
}

/* =============================================
   RICH EASE-IN KEYFRAME ANIMATIONS
   ============================================= */

/* Section tag — pop in with spring */
@keyframes tag-enter {
  0%   { opacity: 0; transform: translateY(-12px) scale(.88); }
  60%  { transform: translateY(3px) scale(1.03); }
  100% { opacity: 1; transform: none; }
}
.section-tag {
  animation: tag-enter .65s var(--ease-spring) both;
  animation-play-state: paused;
}
.sr-shown .section-tag,
.section-header.sr-shown .section-tag { animation-play-state: running; }

/* Navbar ease-in drop from top on load */
@keyframes nav-drop {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: none; }
}
.navbar { animation: nav-drop .7s var(--ease-expo) .05s both; }
.topbar { animation: nav-drop .6s var(--ease-expo) 0s   both; }

/* Scroll-to-top ease-in bounce on show */
@keyframes btn-up-in {
  from { opacity: 0; transform: translateY(16px) scale(.8); }
  to   { opacity: 1; transform: none; }
}
.scroll-top.visible { animation: btn-up-in .45s var(--ease-spring) both; }

/* Footer columns stagger ease-in */
@keyframes col-rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

/* Industry card ease-in zoom */
.industry-card {
  transition:
    border-color .3s var(--ease-smooth),
    background   .3s var(--ease-smooth),
    transform    .4s var(--ease-spring),
    box-shadow   .4s var(--ease-smooth);
}

/* Service card spring hover */
.service-card {
  transition:
    background   .3s var(--ease-smooth),
    border-color .3s var(--ease-smooth),
    transform    .45s var(--ease-quint),
    box-shadow   .45s var(--ease-smooth);
}

.about-stat.sr-shown,
.focus-item.sr-shown,
.service-card.sr-shown,
.industry-card.sr-shown,
.guide-card.sr-shown,
.process-card.sr-shown,
.partner-card.sr-shown {
  animation: card-hit .72s var(--ease-expo) both;
  animation-delay: var(--sr-delay, 0s);
}

@keyframes card-hit {
  0% {
    opacity: 0;
    transform: translateY(54px) scale(.9);
    filter: blur(10px);
  }
  64% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

/* Testimonial card */
.testimonial-card {
  transition:
    background   .3s var(--ease-smooth),
    border-color .3s var(--ease-smooth),
    transform    .45s var(--ease-spring),
    box-shadow   .45s var(--ease-smooth);
}

/* Button ease-in-out hover lift */
.btn {
  transition:
    background   .3s var(--ease-smooth),
    border-color .3s var(--ease-smooth),
    box-shadow   .3s var(--ease-smooth),
    transform    .35s var(--ease-spring),
    opacity      .3s var(--ease-smooth);
}
.btn:active,
.service-link:active,
.industry-link:active,
.process-btn:active {
  transform: translateY(1px) scale(.96);
}

/* Nav link hover ease-in underline */
.nav-links a::after {
  transition: transform .35s var(--ease-expo);
}

/* Logo icon ease-in glow */
@keyframes logo-glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(251,189,3,.35)); }
  50%       { filter: drop-shadow(0 0 14px rgba(251,189,3,.7)); }
}
.logo-icon { animation: logo-glow-pulse 3s var(--ease-smooth) infinite; }

/* ---- Divider animate in ---- */
.divider {
  clip-path: inset(0 100% 0 0);
  transition: clip-path .9s var(--ease-expo) .15s;
}
.divider.div-in { clip-path: inset(0 0% 0 0); }

/* ---- CTA heading shimmer ---- */
.cta-text h2 {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.72) 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cta-shimmer 4s linear infinite;
}
@keyframes cta-shimmer {
  0%   { background-position: 0%   center; }
  100% { background-position: 200% center; }
}

/* ---- Star sparkle entrance ---- */
.stars i { display: inline-block; animation: star-pop .4s cubic-bezier(.34,1.56,.64,1) both; }
.stars i:nth-child(1) { animation-delay: .05s; }
.stars i:nth-child(2) { animation-delay: .12s; }
.stars i:nth-child(3) { animation-delay: .19s; }
.stars i:nth-child(4) { animation-delay: .26s; }
.stars i:nth-child(5) { animation-delay: .33s; }
@keyframes star-pop {
  from { opacity: 0; transform: scale(0) rotate(-30deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}

/* ---- Button ripple ---- */
.btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.22);
  transform: scale(0);
  animation: ripple-out .55s linear;
  pointer-events: none;
}
@keyframes ripple-out { to { transform: scale(4); opacity: 0; } }

/* ---- Form group underline on focus ---- */
.form-group { position: relative; }
.form-group::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  transition: width .4s ease; border-radius: 2px;
}
.form-group:focus-within::after { width: 100%; }

/* ---- Footer link left-bar hover ---- */
.footer-col ul a { transition: color .3s ease, padding-left .3s ease; }
.footer-col ul a:hover { padding-left: 8px; }

/* ---- Scroll-to-top ---- */
.scroll-top { transition: transform .3s ease, opacity .3s ease, box-shadow .3s ease; }
.scroll-top:hover { transform: translateY(-5px) scale(1.08); box-shadow: 0 0 30px rgba(251,189,3,.6); }

/* =============================================
   IMAGES — gallery, industry cards, testimonials
   ============================================= */

/* ---- Industry card background images ---- */
.industry-card {
  position: relative;
  overflow: hidden;
}
.industry-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: opacity .5s var(--ease-smooth), transform .6s var(--ease-smooth);
  z-index: 0;
  filter: grayscale(100%) contrast(1.08) brightness(.7);
}
.industry-card .industry-icon,
.industry-card h4,
.industry-card p,
.industry-link { position: relative; z-index: 2; }
.industry-card:hover .industry-bg-img {
  opacity: .98;
  transform: scale(1.08);
}

/* ---- Testimonial author photo ---- */
.author-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 2px solid var(--orange);
  box-shadow: 0 0 16px rgba(251,189,3,.35);
}

/* =============================================
   WHAT GUIDES US
   ============================================= */
.guides {
  background:
    linear-gradient(180deg, #F6F6F5 0%, #F6F6F5 70%, #f0f0ee 100%);
  color: #000;
  padding: 56px 0 84px;
}
.guides-header {
  text-align: center;
  margin-bottom: 38px;
}
.guides-header h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  letter-spacing: 0;
}
.guides-underline {
  width: 64px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #FBBD03;
}
.focus-header h2,
.about-content h2,
.services-header h2,
.industries .section-header h2,
.guides-header h2,
.process-header h2,
.partners-header h2,
.contact-info h2 {
  font-size: var(--section-title-size);
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(390px, 500px));
  justify-content: center;
  align-items: stretch;
  gap: clamp(28px, 5vw, 56px);
}
.guide-card {
  min-height: 470px;
  padding: 28px 32px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 12px rgba(0,0,0,.12);
  position: relative;
  transition: box-shadow .4s var(--ease-smooth);
}
.guide-card:hover {
  box-shadow: 0 20px 36px rgba(0,0,0,.2);
}
.guide-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.guide-card h3 {
  font-family: var(--font-secondary);
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}
.guide-visual {
  width: 100%;
  min-height: 218px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.guide-visual img {
  width: min(100%, 420px);
  height: 210px;
  object-fit: contain;
  display: block;
  transition: transform .5s var(--ease-quint);
}
.guide-card:hover .guide-visual img {
  transform: scale(1.05);
}
.guide-card p {
  max-width: 410px;
  margin: 0;
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.28;
  text-wrap: pretty;
  position: relative;
  z-index: 1;
}
.guide-card-dark {
  background: #000;
  color: #fff;
}
.guide-card-dark::before {
  background:
    radial-gradient(circle at 50% 40%, rgba(251,189,3,.12), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 32%);
}
.guide-card-dark h3 {
  color: #fff;
}
.guide-card-yellow {
  background: #FBBD03;
  color: #000;
}
.guide-card-yellow::before {
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.38), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.22), transparent 34%);
}
.guide-card-yellow h3 {
  color: #000;
}
.guide-card-yellow .guide-visual img {
  width: min(100%, 432px);
  height: 218px;
}
.guide-card-yellow p {
  max-width: 418px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .guides {
    padding: 48px 0 64px;
  }
  .guides-grid {
    grid-template-columns: minmax(280px, 500px);
    gap: 28px;
  }
  .guide-card {
    min-height: 0;
    padding: 26px 24px 28px;
  }
  .guide-visual {
    min-height: 190px;
  }
  .guide-visual img,
  .guide-card-yellow .guide-visual img {
    height: 190px;
  }
}

/* =============================================
   PHOTO GALLERY  — bento grid
   ============================================= */
/* ---------- COMBINED ABOUT + GUIDES ---------- */
.about {
  background:
    radial-gradient(circle at 0 64%, rgba(251,189,3,.18) 0 1px, transparent 1.7px) 0 0 / 18px 18px,
    radial-gradient(circle at 100% 94%, rgba(251,189,3,.18) 0 1px, transparent 1.7px) 0 0 / 18px 18px,
    linear-gradient(180deg, #fbfbfa 0%, #f7f7f5 100%);
  color: #050505;
  padding: clamp(58px, 5vw, 86px) 0 clamp(70px, 6vw, 96px);
  overflow: hidden;
}
.about .container { max-width: 1480px; }
.about-card {
  display: grid;
  grid-template-columns: minmax(420px, .82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  isolation: isolate;
}
.about-img-wrap {
  min-height: 0;
  aspect-ratio: 1.13 / 1;
  border: 3px solid #FBBD03;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,.16);
}
.about-img-wrap::after {
  background: linear-gradient(180deg, transparent 68%, rgba(0,0,0,.18));
}
.about-img { object-position: 42% center; }
.about-content {
  min-height: 0;
  justify-content: center;
  padding: clamp(12px, 2vw, 24px) 0;
  color: #050505;
  overflow: hidden;
}
.about-content::before {
  right: -4%;
  top: -7%;
  width: min(360px, 48%);
  opacity: .055;
  filter: grayscale(1) sepia(.7) saturate(1.5);
  z-index: -1;
}
.about-content::after { display: none; }
.about-kicker {
  margin: 0 0 14px;
  display: block;
  font-family: var(--font-secondary);
  font-size: clamp(.92rem, 1.2vw, 1.12rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e6b900;
}
.about-content .about-kicker {
  color: #e6b900;
}
.about-content h2 {
  color: #050505;
  font-size: clamp(3rem, 5vw, 5.15rem);
  line-height: .98;
}
.about-underline {
  width: 78px;
  height: 5px;
  margin: 22px 0 22px;
  box-shadow: none;
}
.about-content > p:not(.about-kicker):not(.about-copy) { display: none; }
.about-copy {
  max-width: min(660px, 100%);
  margin: 0 0 34px;
  color: #171717;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.5;
  overflow-wrap: normal;
}
.about-content .about-copy {
  color: #171717;
}
.about-stats {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 18px 22px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 28px rgba(0,0,0,.1);
}
.about-stat {
  min-height: 76px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 66px 1fr;
  grid-template-areas:
    "icon number"
    "icon label";
  align-items: center;
  justify-items: start;
  column-gap: 14px;
  text-align: left;
  border: 0;
  border-right: 1px solid rgba(0,0,0,.12);
  border-radius: 0;
  background: transparent;
}
.about-stat:last-child { border-right: 0; }
.about-stat:hover {
  transform: translateY(-3px);
  background: transparent;
}
.about-stat i {
  grid-area: icon;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #FBBD03;
  font-size: 1.45rem;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}
.about-stat strong {
  grid-area: number;
  color: #050505;
  font-size: clamp(1.65rem, 2.1vw, 2.1rem);
}
.about-stat span {
  grid-area: label;
  color: #111;
  margin: 4px 0 0;
  max-width: 14ch;
  font-size: .96rem;
  line-height: 1.18;
}
.about-guides {
  margin-top: clamp(46px, 5vw, 72px);
  padding: 0;
  background: transparent;
}
.about-guides .guides-header { margin-bottom: 28px; }
.about-guides .guides-header h2 {
  color: #050505;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}
.about-guides .guides-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.about-guides .guide-card {
  min-height: 295px;
  padding: clamp(26px, 3vw, 42px);
  display: grid;
  align-items: center;
  gap: 18px 28px;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 16px 28px rgba(0,0,0,.12);
}
.about-guides .guide-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  text-transform: uppercase;
}
.about-guides .guide-card h3::after {
  content: '';
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: currentColor;
}
.about-guides .guide-visual {
  width: 100%;
  min-height: 0;
  margin: 0;
}
.about-guides .guide-visual img,
.about-guides .guide-card-yellow .guide-visual img {
  width: 100%;
  max-width: 330px;
  height: 210px;
}
.about-guides .guide-card p {
  max-width: 42ch;
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
}
.about-guides .guide-card-dark {
  grid-template-columns: .78fr 1fr;
  grid-template-areas:
    "visual title"
    "visual copy";
}
.about-guides .guide-card-dark .guide-visual { grid-area: visual; }
.about-guides .guide-card-dark h3 { grid-area: title; color: #FBBD03; }
.about-guides .guide-card-dark p { grid-area: copy; color: rgba(255,255,255,.9); }
.about-guides .guide-card-yellow {
  grid-template-columns: .9fr 1.1fr;
  grid-template-areas:
    "title visual"
    "copy visual";
}
.about-guides .guide-card-yellow .guide-visual { grid-area: visual; }
.about-guides .guide-card-yellow h3 { grid-area: title; color: #050505; }
.about-guides .guide-card-yellow p { grid-area: copy; color: #050505; font-weight: 800; }

@media (max-width: 1100px) {
  .about-card { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 16 / 9; }
  .about-content { padding-top: 0; }
  .about-stats { width: 100%; }
  .about-guides .guides-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .about { padding-top: 44px; }
  .about .container { padding: 0 14px; }
  .about-img-wrap {
    aspect-ratio: 1 / .82;
    border-radius: 14px;
  }
  .about-stats {
    grid-template-columns: 1fr;
    padding: 4px 18px;
  }
  .about-stat {
    grid-template-columns: 58px 1fr;
    min-height: 86px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.12);
  }
  .about-stat:last-child { border-bottom: 0; }
  .about-guides .guide-card,
  .about-guides .guide-card-dark,
  .about-guides .guide-card-yellow {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "title"
      "copy";
    min-height: 0;
  }
  .about-guides .guide-visual img,
  .about-guides .guide-card-yellow .guide-visual img {
    height: 180px;
    max-width: 100%;
  }
}

.gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 290px 290px;
  gap: 14px;
}

/* gi-1: tall left — spans both rows */
.gi-1 { grid-column: 1; grid-row: 1 / 3; }
/* gi-2 & gi-3: top-right pair */
.gi-2 { grid-column: 2; grid-row: 1; }
.gi-3 { grid-column: 3; grid-row: 1; }
/* gi-4: bottom-center wide */
.gi-4 { grid-column: 2 / 4; grid-row: 2; }
/* gi-5 & gi-6 hidden in a 3×2 — use them as a 3rd row or rearrange */
.gi-5, .gi-6 { display: none; }

/* For a 6-item layout, add a third row */
@supports (display: grid) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px 260px;
  }
  .gi-1 { grid-column: 1; grid-row: 1 / 3; }   /* tall */
  .gi-2 { grid-column: 2; grid-row: 1; }
  .gi-3 { grid-column: 3; grid-row: 1; }
  .gi-4 { grid-column: 2 / 4; grid-row: 2; }   /* wide */
  .gi-5 { grid-column: 1 / 3; grid-row: 3; display: block; } /* wide */
  .gi-6 { grid-column: 3; grid-row: 3; display: block; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .65s var(--ease-smooth), filter .65s var(--ease-smooth);
  filter: grayscale(20%) brightness(.9);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(1);
}

/* Overlay on hover */
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  opacity: 0;
  transition: opacity .4s var(--ease-smooth);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gal-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
  transform: translateY(10px);
  transition: transform .4s var(--ease-expo) .05s;
}
.gallery-item:hover .gal-tag { transform: none; }

.gallery-overlay p {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  transform: translateY(12px);
  transition: transform .4s var(--ease-expo) .1s;
}
.gallery-item:hover .gallery-overlay p { transform: none; }

/* Permanent subtle bottom gradient (even before hover) */
.gallery-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
  pointer-events: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* Gallery responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 220px);
  }
  .gi-1 { grid-column: 1 / 3; grid-row: 1; }
  .gi-2 { grid-column: 1;     grid-row: 2; }
  .gi-3 { grid-column: 2;     grid-row: 2; }
  .gi-4 { grid-column: 1 / 3; grid-row: 3; }
  .gi-5 { grid-column: 1;     grid-row: 4; display: block; }
  .gi-6 { grid-column: 2;     grid-row: 4; display: block; }
}
@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 {
    grid-column: 1; display: block;
  }
  .gi-1 { grid-row: 1; }
  .gi-2 { grid-row: 2; }
  .gi-3 { grid-row: 3; }
  .gi-4 { grid-row: 4; }
  .gi-5 { grid-row: 5; }
  .gi-6 { grid-row: 6; }
}

/* =============================================
   PARALLAX INTERLUDES
   Full-bleed image bands — bg pinned via
   background-attachment: fixed so content
   scrolls "over" a still image.
   ============================================= */
.par-interlude {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center calc(50% + var(--par-y, 0px));
  background-attachment: fixed;
  overflow: hidden;
}
.par-interlude::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.86) 0%, rgba(15,17,23,.74) 100%);
}
.par-interlude::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--amber), transparent);
  transform: translateX(-35%);
  animation: par-line 2.8s var(--ease-quint) infinite;
}
.par-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
}
.par-kicker {
  display: inline-block;
  font-family: var(--font-tertiary);
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.par-heading {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  max-width: 880px;
  margin: 0 auto;
}
.par-heading em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.par-interlude.par-alt {
  background-position: center calc(35% + var(--par-y, 0px));
}
.par-interlude.par-alt::before {
  background: linear-gradient(135deg, rgba(10,12,18,.9) 0%, rgba(0,0,0,.78) 100%);
}
.par-interlude.par-clear {
  min-height: 600px;
}
.par-interlude.par-clear::before { content: none; }

/* iOS Safari ignores background-attachment: fixed and can
   render the image incorrectly inside transformed/overflow
   ancestors — fall back to normal scroll on touch devices. */
@media (hover: none) and (pointer: coarse) {
  .par-interlude,
  .testimonials,
  .contact {
    background-attachment: scroll;
  }
}

@media (max-width: 700px) {
  .par-interlude { min-height: 280px; }
  .par-interlude.par-clear { min-height: 600px; }
  .par-inner { padding: 56px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .sr,
  .hero-inner > *,
  .motion-title .motion-word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .par-interlude,
  .par-interlude.par-alt {
    background-position: center !important;
    background-attachment: scroll;
  }
}
