/* ============================================================ ROOT ============================================================ */
:root {
  --black:      #020204;
  --black-2:    #07070B;
  --black-3:    #0D0D12;
  --surface:    #111116;
  --surface-2:  #18181F;
  --surface-3:  #1E1E27;
  --line:       rgba(255,255,255,0.08);
  --line-soft:  rgba(255,255,255,0.04);
  --text:       #F2F0EC;
  --text-soft:  #9A9898;
  --text-mute:  #52505A;

  --gold:       #C9963A;
  --gold-hi:    #E8B456;
  --gold-lo:    #A07820;
  --gold-glow:  rgba(201,150,58,0.22);
  --gold-pale:  rgba(201,150,58,0.09);

  --good:  #5FD888;
  --bad:   #E86060;

  /* Dark equivalents — light sections now render on black */
  --paper:   #0A0A0F;
  --paper-2: #0F0F15;
  --ink:     #F2F0EC;
  --ink-mid: #C8C6D4;
  --ink-soft:#8A8898;
  --ink-line: rgba(255,255,255,0.07);
  --ink-line-soft: rgba(255,255,255,0.04);

  --r: 12px;
  --r-lg: 20px;
  --r-pill: 100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.4s;
  --font: 'Poppins', system-ui, sans-serif;
}

/* ============================================================ LOGO DUAL ============================================================ */
/* Supports one OR two logos side by side */
.logo-dual-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 76px;
}
.logo-item {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-item img {
  height: 100%;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.logo-sep {
  width: 1px;
  height: 36px;
  background: rgba(201,150,58,0.28);
  flex-shrink: 0;
  border-radius: 1px;
}

/* Legacy single-logo wrapper — kept for backward compatibility */
.logo-img-wrap {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-img-wrap img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.logo-t {
  width: 36px; height: 36px; border-radius: var(--r);
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
a { color: inherit; text-decoration: none; }

/* ============================================================ ANIMATIONS ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatY {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.45; }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 30px rgba(201,150,58,0.15); }
  50%      { box-shadow: 0 0 60px rgba(201,150,58,0.35); }
}
@keyframes trust-glow {
  0%,100% { box-shadow: 0 0 24px rgba(201,150,58,0.18), inset 0 0 20px rgba(201,150,58,0.04); }
  50%      { box-shadow: 0 0 48px rgba(201,150,58,0.32), inset 0 0 32px rgba(201,150,58,0.08); }
}
@keyframes count-in {
  from { opacity: 0; transform: translateY(8px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes border-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes section-smoke {
  0%   { transform: translate3d(-18px, 8px, 0) scale(1); opacity: 0.58; }
  50%  { transform: translate3d(10px, -6px, 0) scale(1.08); opacity: 0.82; }
  100% { transform: translate3d(22px, 10px, 0) scale(1.03); opacity: 0.66; }
}
@keyframes section-smoke-drift {
  0%   { transform: translate3d(24px, -8px, 0) scale(1.08); opacity: 0.42; }
  50%  { transform: translate3d(-8px, 7px, 0) scale(1); opacity: 0.68; }
  100% { transform: translate3d(-28px, -4px, 0) scale(1.12); opacity: 0.5; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.38s; }
.d5 { transition-delay: 0.48s; }

/* ============================================================ NAV ============================================================ */
nav.top {
  position: sticky; top: 0; z-index: 300;
  transition: all 0.4s ease;
}
nav.top .inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 90px; gap: 28px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s;
}
nav.top.scrolled {
  background: rgba(2,2,4,0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(135deg, rgba(201,150,58,0.2), rgba(201,150,58,0.07));
  border: 1px solid rgba(201,150,58,0.38);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s var(--ease);
}
.brand-mark:hover { transform: scale(1.06); box-shadow: 0 0 24px rgba(201,150,58,0.25); }
.brand-mark svg { color: var(--gold); }
.brand-text .name { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.brand-text .sub { font-size: 9.5px; color: var(--text-mute); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; margin-top: 2px; display: block; }

.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13.5px; color: var(--text-soft); font-weight: 500; transition: color 0.25s; position: relative; padding-bottom: 3px; }
.nav-links a::after { content:''; position:absolute; left:0; bottom:0; width:0; height:1.5px; background:var(--gold); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-btn {
  padding: 10px 24px;
  background: var(--gold); color: var(--black);
  border-radius: var(--r-pill); font-size: 13px; font-weight: 700;
  transition: all 0.3s var(--ease); white-space: nowrap; letter-spacing: 0.01em;
}
.nav-btn:hover { background: var(--gold-hi); box-shadow: 0 6px 28px rgba(201,150,58,0.4); transform: translateY(-1px); }

@media (max-width: 880px) { .nav-links { display: none; } }

@media (max-width: 640px) {
  nav.top .inner {
    height: 78px;
    padding: 0 20px;
    gap: 14px;
  }

  .nav-btn {
    display: none;
  }

  .logo-dual-wrap {
    height: 64px;
  }

  .logo-item {
    height: 70px;
  }

  .logo-item img {
    max-width: 190px;
  }
}

/* ============================================================ HERO ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1800&auto=format&fit=crop&q=80');
  background-size: cover; background-position: center 40%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(2,2,4,0.97) 0%,
    rgba(2,2,4,0.92) 45%,
    rgba(2,2,4,0.55) 75%,
    rgba(2,2,4,0.3) 100%
  );
}

/* Subtle ambient glow at bottom of hero */
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -10%; width: 55%; height: 340px;
  background: radial-gradient(ellipse, rgba(201,150,58,0.09) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}

.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 20% 50%, black 10%, transparent 80%);
}

.hero .wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(600px, 1fr) minmax(440px, 0.95fr);
  gap: 38px; align-items: center;
  padding-top: 100px; padding-bottom: 80px;
  min-height: 100vh;
}

/* Hero left */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px 7px 9px;
  background: rgba(201,150,58,0.1);
  border: 1px solid rgba(201,150,58,0.28);
  border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 600; color: var(--text);
  margin-bottom: 30px; letter-spacing: 0.02em;
  animation: fadeIn 1s var(--ease) both;
}
.badge-dot {
  width: 24px; height: 24px; border-radius: var(--r-pill);
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; letter-spacing: 0.04em;
}

/* ---- Hero trust strip (NDC + IATA) ---- */
.hero-trust-strip {
  display: flex; gap: 14px; margin-bottom: 34px;
  animation: fadeUp 1s var(--ease) 0.1s both;
}
.trust-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 12px;
  background: rgba(11,11,16,0.85);
  border: 1px solid rgba(201,150,58,0.3);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
  animation: trust-glow 4s ease-in-out infinite;
  cursor: default;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.trust-pill:hover { transform: translateY(-2px); border-color: rgba(201,150,58,0.6); }
.trust-pill::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(201,150,58,0.6) 50%, transparent 95%);
}
.trust-pill-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,150,58,0.22), rgba(201,150,58,0.06));
  border: 1px solid rgba(201,150,58,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 15px; font-weight: 900;
}
.trust-pill-body { display: flex; flex-direction: column; gap: 1px; }
.trust-pill-val {
  font-size: 20px; font-weight: 800; letter-spacing: -0.04em; color: var(--gold);
  line-height: 1; animation: count-in 0.6s var(--ease) 0.5s both;
}
.trust-pill-label {
  font-size: 10.5px; color: var(--text); letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600; line-height: 1.3;
}
@media (max-width: 520px) { .hero-trust-strip { flex-direction: column; } }

.hero h1 {
  font-family: var(--font);
  font-size: clamp(44px, 4vw, 58px); line-height: 1.08; letter-spacing: -0.03em;
  font-weight: 800; color: var(--text); margin-bottom: 24px;
  animation: fadeUp 1s var(--ease) 0.15s both;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-lead {
  font-size: 17px; color: var(--text-soft); line-height: 1.8;
  margin-bottom: 40px; max-width: 520px; font-weight: 400;
  animation: fadeUp 1s var(--ease) 0.25s both;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 1s var(--ease) 0.35s both;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; font-family: var(--font);
  font-size: 14px; font-weight: 600; border-radius: var(--r-pill);
  border: none; cursor: pointer; transition: all 0.35s var(--ease); letter-spacing: 0.01em;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-hi); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,150,58,0.38); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid rgba(255,255,255,0.18); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn svg { transition: transform 0.3s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

/* Hero right — Form card */
.hero-form {
  background: rgba(17,17,22,0.9);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 34px 36px;
  position: relative; overflow: hidden;
  box-shadow: 0 48px 120px -24px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04);
  animation: fadeUp 1s var(--ease) 0.2s both;
}
.hero-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 40%, var(--gold-hi) 60%, transparent 95%);
}
.hero-form::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,150,58,0.08), transparent 60%);
}
.form-title { font-size: 20px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 6px; }
.form-sub { font-size: 13.5px; color: var(--text-mute); margin-bottom: 28px; line-height: 1.55; }

.fg { margin-bottom: 16px; position: relative; }
.fg label {
  display: block; font-size: 10.5px; font-weight: 700;
  color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 7px;
}
.fg input, .fg textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  border-radius: var(--r); color: var(--text); font-family: var(--font);
  font-size: 14px; font-weight: 400; transition: all 0.3s; outline: none; -webkit-appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-mute); }
.fg input:focus, .fg textarea:focus {
  border-color: rgba(201,150,58,0.5); box-shadow: 0 0 0 3px rgba(201,150,58,0.08);
  background: rgba(201,150,58,0.03);
}
.fg textarea { resize: none; line-height: 1.6; }

.form-submit {
  width: 100%; padding: 15px;
  background: var(--gold); color: var(--black); border: none;
  border-radius: var(--r-pill); font-family: var(--font);
  font-size: 14.5px; font-weight: 700; cursor: pointer; transition: all 0.35s var(--ease);
  margin-top: 8px; letter-spacing: 0.01em; position: relative; overflow: hidden;
}
.form-submit:hover { background: var(--gold-hi); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201,150,58,0.35); }
.form-note { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 11.5px; color: var(--text-mute); }
.form-note svg { color: var(--good); flex-shrink: 0; }

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; padding-top: 100px; }
  .hero h1 { font-size: 36px; }
}

/* ============================================================ TRUST BAR ============================================================ */
.trust-bar {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--black-2); overflow: hidden;
}
.trust-inner { display: flex; overflow: hidden; }
.trust-track { display: flex; animation: marquee 30s linear infinite; flex-shrink: 0; }
.trust-item {
  display: flex; align-items: center; gap: 12px; padding: 20px 44px;
  border-right: 1px solid var(--line); white-space: nowrap; flex-shrink: 0;
}
.trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: pulse 2.2s ease-in-out infinite; }
.trust-item span { font-size: 12px; font-weight: 500; color: var(--text-soft); letter-spacing: 0.04em; }
.trust-item strong { color: var(--text); font-weight: 700; }

/* ============================================================ SECTION COMMONS ============================================================ */
.sec { padding: 34px 0; position: relative; }

/* All sections now black-family — light-bg is a very slightly lighter dark */
.sec.light-bg { background: var(--paper); color: var(--text); }
.sec.dark-alt  { background: var(--black-3); }
.sec.dark-alt2 { background: var(--black-2); }

/* ---- Subtle dot grid on light-bg sections ---- */
.sec.light-bg::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(201,150,58,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}

/* ---- Ambient glow on dark-alt sections ---- */
.sec.dark-alt::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(201,150,58,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(201,150,58,0.04) 0%, transparent 60%);
}

/* ---- Horizontal line accent on dark-alt2 ---- */
.sec.dark-alt2::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 64px;
}

.sec-head {
  text-align: center; margin-bottom: 42px;
  position: relative; isolation: isolate;
  padding: 18px 0 24px;
  overflow: hidden;
}
.sec-head::before,
.sec-head::after {
  content: ''; position: absolute; inset: -70px 5%;
  pointer-events: none; z-index: -1;
  background:
    radial-gradient(ellipse at 38% 52%, rgba(201,150,58,0.18), transparent 42%),
    radial-gradient(ellipse at 62% 46%, rgba(232,180,86,0.12), transparent 46%),
    linear-gradient(90deg, transparent 0%, rgba(201,150,58,0.16) 26%, rgba(201,150,58,0.24) 50%, rgba(201,150,58,0.16) 74%, transparent 100%);
  background-size: 58% 86%, 54% 78%, 100% 1px;
  background-position: 20% 48%, 80% 54%, center 54%;
  background-repeat: no-repeat;
  filter: blur(22px);
  opacity: 0.78;
  animation: section-smoke 9s ease-in-out infinite alternate;
}
.sec-head::after {
  inset: -85px 12%;
  background:
    radial-gradient(ellipse at 46% 50%, rgba(201,150,58,0.12), transparent 46%),
    radial-gradient(ellipse at 54% 58%, rgba(232,180,86,0.08), transparent 52%);
  background-size: 72% 100%, 58% 88%;
  background-position: 18% 50%, 82% 58%;
  background-repeat: no-repeat;
  filter: blur(34px);
  opacity: 0.64;
  animation: section-smoke-drift 12s ease-in-out infinite alternate;
}
.kicker,
.sec-title,
.sec-lead { position: relative; z-index: 2; }
.kicker {
  font-family: var(--font); font-size: 10px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase; font-weight: 700;
  margin-bottom: 18px; display: block;
}
.sec-title {
  font-family: var(--font); font-size: 38px; line-height: 1.12; letter-spacing: -0.03em;
  font-weight: 800; max-width: 820px; margin: 0 auto 20px;
  color: var(--text);
}
.sec-lead {
  font-size: 17px; color: var(--text-soft); max-width: 700px;
  margin: 0 auto; line-height: 1.8; font-weight: 400;
}
.operational-reality .wrap { max-width: 1280px; }
.operational-reality .sec-title { max-width: 1120px; }
.operational-reality .sec-title .one-line { white-space: nowrap; }
.operational-reality .sec-lead { max-width: 780px; }
@media (max-width: 760px) {
  .sec-title { font-size: 26px; }
  .sec { padding: 30px 0; }
  .sec-head::before,
  .sec-head::after { inset: -55px 0; opacity: 0.42; }
  .operational-reality .sec-title .one-line { white-space: normal; }
}

/* ============================================================ PROBLEM/SOLUTION ============================================================ */
.ps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.ps-card {
  border-radius: 20px; border: 1px solid; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.ps-card:hover { transform: translateY(-6px); }
.ps-card.bad { background: rgba(232,96,96,0.03); border-color: rgba(232,96,96,0.14); }
.ps-card.bad:hover { box-shadow: 0 28px 72px rgba(232,96,96,0.08); }
.ps-card.good { background: rgba(201,150,58,0.03); border-color: rgba(201,150,58,0.18); }
.ps-card.good:hover { box-shadow: 0 28px 72px rgba(201,150,58,0.1); }

.ps-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
}
.ps-card.bad .ps-img  { filter: saturate(0.5) brightness(0.5); }
.ps-card.good .ps-img { filter: saturate(0.55) brightness(0.55); }

.ps-inner { padding: 36px 40px 40px; }
.ps-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.ps-pip {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.bad .ps-pip  { background: rgba(232,96,96,0.12);  color: #B94040; }
.good .ps-pip { background: rgba(201,150,58,0.13); color: var(--gold-lo); }
.ps-head h3 { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.ps-card ul { list-style: none; }
.ps-card li {
  display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line);
  font-size: 15px; color: var(--text-soft); line-height: 1.6;
}
.ps-card li:last-child { border-bottom: none; padding-bottom: 0; }
.ps-card li .icon { flex-shrink: 0; width: 18px; margin-top: 3px; font-weight: 800; }
.bad  li .icon { color: var(--bad); }
.good li .icon { color: var(--gold-lo); }
@media (max-width: 820px) { .ps-grid { grid-template-columns: 1fr; } }

/* ============================================================ SERVICES ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden;
  position: relative; transition: all 0.4s var(--ease); cursor: default;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,150,58,0.3);
  box-shadow: 0 36px 90px -18px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,150,58,0.12);
}
.svc-card-img {
  width: 100%; height: 170px; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease), filter 0.6s;
  filter: saturate(0.95) brightness(1);
}
.svc-card:hover .svc-card-img { transform: scale(1.06); filter: saturate(1.05) brightness(1.04); }
.svc-card-img-wrap {
  overflow: hidden; position: relative;
}
.svc-card-img-wrap::after {
  content: none;
}
.svc-body { padding: 28px 30px 32px; position: relative; z-index: 1; }
.svc-n {
  font-family: var(--font); font-size: 9.5px; color: var(--gold);
  letter-spacing: 0.22em; font-weight: 700; display: block; margin-bottom: 16px; text-transform: uppercase;
}
.svc-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(201,150,58,0.16), rgba(201,150,58,0.05));
  border: 1px solid rgba(201,150,58,0.24); display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 18px; box-shadow: 0 8px 20px rgba(201,150,58,0.1);
  transition: transform 0.3s var(--ease);
}
.svc-card:hover .svc-icon { transform: scale(1.08) rotate(-3deg); }
.svc-card h4 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; color: var(--text); }
.svc-card p { font-size: 15px; color: var(--text-soft); line-height: 1.72; margin-bottom: 22px; }
.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
}
.svc-metric {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.svc-metric .ml { font-size: 10px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.11em; font-weight: 600; }
.svc-metric .mv { font-size: 11px; color: var(--gold); font-weight: 700; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================ NUMBERS (KPI) ============================================================ */
.nums-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.num-cell {
  padding: 48px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
}
.num-cell::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s var(--ease); transform-origin: left;
}
/* Subtle corner glow */
.num-cell::after {
  content: '';
  position: absolute; top: -40px; right: -40px; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201,150,58,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.num-cell:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.4); border-color: rgba(201,150,58,0.22); }
.num-cell:hover::before { transform: scaleX(1); }
.num-cell .v {
  font-family: var(--font); font-size: 54px; font-weight: 800; letter-spacing: -0.04em;
  color: var(--text); line-height: 1;
}
.num-cell .v .u { font-size: 28px; color: var(--gold); }
.num-cell .l { font-size: 14.5px; color: var(--text-soft); margin-top: 14px; line-height: 1.65; font-weight: 400; }
@media (max-width: 820px) { .nums-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (max-width: 500px)  { .nums-grid { grid-template-columns: 1fr; } }

/* ============================================================ TRUST HIGHLIGHT BLOCK ============================================================ */
/* A standalone prominent trust pair — used inside any section or standalone */
.trust-highlight-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 56px;
}
.trust-card {
  position: relative; padding: 36px 36px 32px;
  background: var(--surface);
  border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(201,150,58,0.22);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  animation: trust-glow 5s ease-in-out infinite;
}
.trust-card:hover { transform: translateY(-5px); box-shadow: 0 32px 80px -12px rgba(201,150,58,0.18); }
/* Glowing top border */
.trust-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-hi) 60%, transparent 100%);
}
/* Radial ambient */
.trust-card::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,150,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.trust-card-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(201,150,58,0.2), rgba(201,150,58,0.06));
  border: 1px solid rgba(201,150,58,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.trust-card-val {
  font-size: 62px; font-weight: 900; letter-spacing: -0.05em;
  color: var(--gold); line-height: 1;
  display: flex; align-items: baseline; gap: 3px;
}
.trust-card-val .sup { font-size: 28px; color: var(--gold-hi); }
.trust-card-title {
  font-size: 17px; font-weight: 700; color: var(--text);
  margin-top: 10px; margin-bottom: 8px; letter-spacing: -0.01em;
}
.trust-card-desc { font-size: 15px; color: var(--text-soft); line-height: 1.7; }
.trust-card-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; padding: 5px 12px;
  background: rgba(201,150,58,0.1); border: 1px solid rgba(201,150,58,0.22);
  border-radius: var(--r-pill); font-size: 10px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase;
}
.trust-card-badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--good); animation: pulse 2s ease-in-out infinite; }
@media (max-width: 640px) { .trust-highlight-row { grid-template-columns: 1fr; } }

/* ============================================================ GLOBAL FOOTPRINT ============================================================ */
.fp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.fp-visual { display: flex; flex-direction: column; gap: 18px; }
.fp-img-main {
  width: 100%; border-radius: 18px; overflow: hidden; position: relative;
  box-shadow: 0 32px 80px -16px rgba(0,0,0,0.5);
}
.fp-img-main img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; filter: saturate(0.7) brightness(0.65); }
.fp-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,11,0.6) 0%, transparent 60%);
}
.fp-map-label {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}

.fp-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fp-img-sm {
  border-radius: 14px; overflow: hidden; aspect-ratio: 3/2; position: relative;
  transition: transform 0.3s var(--ease);
}
.fp-img-sm:hover { transform: scale(1.03); }
.fp-img-sm img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.6) brightness(0.55); }
.fp-img-sm::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(2,2,4,0.6), transparent); }
.fp-img-sm .fp-sm-label {
  position: absolute; bottom: 12px; left: 14px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}

.fp-stats { display: flex; flex-direction: column; gap: 22px; }
.stat-box {
  padding: 30px 30px 30px 36px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; position: relative; overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,0.28), 0 0 26px rgba(201,150,58,0.08);
  transition: border-color 0.3s, transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.stat-box::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3.5px;
  background: linear-gradient(180deg, var(--gold), var(--gold-lo));
}
.stat-box::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(201,150,58,0.16), transparent 34%),
    linear-gradient(135deg, rgba(201,150,58,0.07), transparent 42%);
  opacity: 0.75;
}
.stat-box > * { position: relative; z-index: 1; }
.stat-box:hover {
  border-color: rgba(201,150,58,0.38);
  transform: translateX(5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.34), 0 0 38px rgba(201,150,58,0.16);
}
.stat-box .sv {
  font-family: var(--font); font-size: 44px; font-weight: 800; letter-spacing: -0.04em; color: var(--text); line-height: 1;
}
.stat-box .sv .su { font-size: 22px; color: var(--gold); }
.stat-box .sl { font-size: 15px; color: var(--text-soft); margin-top: 10px; line-height: 1.6; }
.stat-box .sc { font-size: 10px; color: var(--text-mute); margin-top: 8px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
@media (max-width: 860px) { .fp-grid { grid-template-columns: 1fr; } }

/* ============================================================ BANNER STRIP ============================================================ */
.banner-strip {
  position: relative; overflow: hidden; height: 400px;
  display: flex; align-items: center;
}
.banner-strip-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/operate/TBSinnumbers.jpg');
  background-size: cover;
  background-position: center;
}
.banner-strip-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(2,2,4,0.97) 0%, rgba(2,2,4,0.80) 50%, rgba(2,2,4,0.55) 100%);
}
.banner-strip .wrap { position: relative; z-index: 2; }
.banner-strip-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.banner-strip h3 {
  font-family: var(--font); font-size: 34px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
}
.banner-strip p { font-size: 16px; color: var(--text-soft); line-height: 1.75; }
.banner-strip-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bss {
  background: rgba(17,17,22,0.75); backdrop-filter: blur(20px);
  border: 1px solid rgba(201,150,58,0.18); border-radius: 16px; padding: 22px 24px;
  transition: border-color 0.3s;
}
.bss:hover { border-color: rgba(201,150,58,0.4); }
.bss .bsv { font-family: var(--font); font-size: 36px; font-weight: 800; color: var(--gold); letter-spacing: -0.04em; line-height: 1; }
.bss .bsl { font-size: 12.5px; color: var(--text-soft); margin-top: 8px; line-height: 1.5; font-weight: 500; }
@media (max-width: 820px) { .banner-strip-inner { grid-template-columns: 1fr; } .banner-strip { height: auto; padding: 72px 0; } }

/* ============================================================ WHY TBS ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.why-img-side { position: sticky; top: 90px; }
.why-img-stack { position: relative; }
.why-img-main {
  width: 100%; border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 90px -18px rgba(0,0,0,0.55);
}
.why-img-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; filter: saturate(0.7) brightness(0.65); }
.why-img-main::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(to top, rgba(2,2,4,0.65) 0%, transparent 50%);
}
.why-float {
  position: absolute; padding: 14px 20px;
  background: rgba(17,17,22,0.96); border: 1px solid rgba(201,150,58,0.3);
  border-radius: 14px; box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  font-size: 13px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(20px);
}
.why-float.wf1 { bottom: 32px; right: -24px; animation: floatY 6s ease-in-out infinite; }
.why-float.wf2 { top: 32px; right: -24px; animation: floatY 7s ease-in-out infinite -3s; }
.why-float .wfv { font-family: var(--font); font-size: 24px; font-weight: 800; color: var(--gold); }
.why-float .wfl { font-size: 10px; color: var(--text-mute); line-height: 1.4; }

.why-ladder { display: flex; flex-direction: column; gap: 14px; }
.why-row {
  display: grid; grid-template-columns: 48px 1fr; gap: 22px;
  padding: 24px 26px; border: 1px solid rgba(255,255,255,0.08); align-items: start;
  background: linear-gradient(135deg, rgba(201,150,58,0.055), rgba(17,17,22,0.72) 42%, rgba(17,17,22,0.92));
  border-radius: 16px; position: relative; overflow: hidden;
  box-shadow: 0 16px 42px rgba(0,0,0,0.24), 0 0 24px rgba(201,150,58,0.055);
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s;
}
.why-row::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 10% 20%, rgba(201,150,58,0.14), transparent 32%);
  opacity: 0.65;
}
.why-row > * { position: relative; z-index: 1; }
.why-row:hover {
  background: linear-gradient(135deg, rgba(201,150,58,0.08), rgba(17,17,22,0.76) 42%, rgba(17,17,22,0.95));
  border-color: rgba(201,150,58,0.28);
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(0,0,0,0.3), 0 0 34px rgba(201,150,58,0.12);
}
.nb {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(201,150,58,0.1); border: 1px solid rgba(201,150,58,0.24);
  display: flex; align-items: center; justify-content: center;
  font-size: 11.5px; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.why-row h4 { font-size: 16px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 9px; color: var(--text); }
.why-row p  { font-size: 15px; color: var(--text-soft); line-height: 1.72; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } .why-img-side { position: static; } }

/* ============================================================ JRT STEPS ============================================================ */
.jrt-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.jrt-step {
  padding: 32px 26px;
  background: linear-gradient(145deg, rgba(201,150,58,0.055), var(--surface) 42%, var(--surface-2));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; position: relative; overflow: hidden;
  box-shadow: 0 16px 42px rgba(0,0,0,0.24), 0 0 22px rgba(201,150,58,0.055);
  transition: border-color 0.35s, transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s;
}
.jrt-step::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(201,150,58,0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 46%);
  opacity: 0.72;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.jrt-step::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--gold-lo), var(--gold));
  transform: scaleX(0); transition: transform 0.4s var(--ease); transform-origin: left;
}
.jrt-step:hover {
  background: linear-gradient(145deg, rgba(201,150,58,0.09), var(--surface) 42%, var(--surface-2));
  border-color: rgba(201,150,58,0.34);
  transform: translateY(-8px);
  box-shadow: 0 26px 62px rgba(0,0,0,0.32), 0 0 36px rgba(201,150,58,0.14);
}
.jrt-step:hover::before { opacity: 1; transform: scale(1.08); }
.jrt-step:hover::after { transform: scaleX(1); }
.jrt-step > * { position: relative; z-index: 1; }
.step-n {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(201,150,58,0.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13.5px; margin-bottom: 18px;
  border: 1px solid rgba(201,150,58,0.25);
}
.jrt-step h5 { font-size: 14.5px; font-weight: 700; margin-bottom: 10px; color: var(--text); letter-spacing: -0.01em; }
.jrt-step p  { font-size: 14px; color: var(--text-soft); line-height: 1.65; }
@media (max-width: 1000px) { .jrt-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .jrt-steps { grid-template-columns: 1fr; } }

/* ============================================================ AUDIT BAND ============================================================ */
.audit-sec {
  position: relative; overflow: hidden; padding: 50px 0;
}
.audit-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/operate/Complimentary.png');
  background-size: cover;
  background-position: center;
}
.audit-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,7,2,0.97) 0%, rgba(14,10,3,0.93) 50%, rgba(20,14,4,0.88) 100%);
}
.audit-wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center;
}
.audit-badge {
  display: inline-flex; gap: 8px; align-items: center; padding: 7px 16px;
  background: rgba(201,150,58,0.13); border: 1px solid rgba(201,150,58,0.3); border-radius: var(--r-pill);
  font-size: 11px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 26px;
}
.audit-h {
  font-family: var(--font); font-size: 38px; line-height: 1.08; letter-spacing: -0.03em; font-weight: 800; margin-bottom: 22px;
}
.audit-p { font-size: 16px; color: var(--text-soft); margin-bottom: 18px; line-height: 1.8; }
.audit-items { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin-top: 4px; }
.ai-item {
  font-size: 14.5px; color: var(--text); padding-left: 22px; position: relative; line-height: 1.6; font-weight: 500;
}
.ai-item::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 12px; height: 2px; background: var(--gold);
}
.audit-right-label {
  font-size: 10px; color: var(--gold); letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 24px; display: block;
}
@media (max-width: 980px) { .audit-wrap { grid-template-columns: 1fr; gap: 48px; } .audit-h { font-size: 30px; } .audit-items { grid-template-columns: 1fr; } }

/* ============================================================ FAQ ============================================================ */
.faq-wrap { max-width: 860px; margin: 0 auto; }
details.faq { border-top: 1px solid var(--line); }
details.faq:last-child { border-bottom: 1px solid var(--line); }
details.faq summary {
  cursor: pointer; list-style: none; padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 16px; font-weight: 600; color: var(--text); letter-spacing: -0.01em;
  transition: color 0.3s; font-family: var(--font);
}
details.faq summary::-webkit-details-marker { display: none; }
.faq-plus {
  width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 22px; color: var(--text-soft); transition: all 0.35s var(--ease); line-height: 1;
}
details.faq[open] .faq-plus { transform: rotate(45deg); background: rgba(201,150,58,0.12); color: var(--gold); }
details.faq[open] summary { color: var(--gold); }
details.faq .faq-body {
  padding: 0 0 28px; font-size: 15.5px; color: var(--text-soft); line-height: 1.85; max-width: 780px;
}

/* ============================================================ FOOTER ============================================================ */
footer.site {
  background: var(--black-2); border-top: 1px solid var(--line);
  padding: 56px 0;
}
footer.site .wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: 56px;
  align-items: center;
}
.footer-logos {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer-logos img {
  max-width: 180px;
  max-height: 82px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.footer-logo-divider {
  width: 1px;
  height: 52px;
  background: rgba(201,150,58,0.28);
  flex-shrink: 0;
}
.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
footer.site h5 {
  color: var(--text); font-size: 10.5px; text-transform: uppercase;
  letter-spacing: 0.16em; margin-bottom: 22px; font-weight: 700;
}
footer.site a { color: var(--text-mute); transition: color 0.25s; font-size: 13.5px; font-weight: 400; }
footer.site a:hover { color: var(--gold); }
footer.site p {
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 8px;
  font-size: 13.5px;
}
@media (max-width: 820px) {
  footer.site .wrap,
  .footer-contact {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-logos {
    flex-wrap: wrap;
  }
}

/* ============================================================ MOBILE CTA ============================================================ */
.mob-cta {
  display: none; position: fixed; bottom: 14px; left: 14px; right: 14px; z-index: 190;
  background: var(--gold); color: var(--black); padding: 16px 24px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 14px; text-align: center; box-shadow: 0 16px 40px rgba(201,150,58,0.45);
}
@media (max-width: 760px) { .mob-cta { display: block; } body { padding-bottom: 82px; } }

/* ============================================================ MISC ============================================================ */
img { display: block; }
img[loading] { background: var(--surface-2); }
