/* ============================================================
   RISK & COMPLIANCE CONSULTANTS PTY LTD
   Dark Premium Theme — navy #000057 / #00003D · gold #C6992C
   ============================================================ */

:root {
  --navy-abyss: #020210;
  --navy-deep: #04041f;
  --navy: #00003d;
  --navy-2: #000057;
  --navy-glass: rgba(10, 10, 60, 0.35);
  --gold: #c6992c;
  --gold-light: #e8c468;
  --gold-pale: #f3ddad;
  --gold-glow: rgba(198, 153, 44, 0.45);
  --text: #eef0fa;
  --muted: #a7abc9;
  --line: rgba(198, 153, 44, 0.22);
  --line-soft: rgba(167, 171, 201, 0.14);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 20px 60px rgba(0, 0, 10, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-abyss);
  color: var(--text);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--navy-abyss); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* ---------- scrollbar ---------- */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--navy-abyss); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), #6e5518);
  border-radius: 8px;
  border: 2px solid var(--navy-abyss);
}

/* ---------- utility ---------- */
.container { width: min(1200px, 92%); margin-inline: auto; }
.gold { color: var(--gold-light); }

.grad-text {
  background: linear-gradient(100deg, #f7e3af 0%, var(--gold) 38%, #f9ecc7 52%, var(--gold) 68%, #a37c1e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 5.5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow.center::after {
  content: "";
  width: 44px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::after { background: linear-gradient(90deg, var(--gold), transparent); }

.section { padding: clamp(84px, 10vw, 140px) 0; position: relative; }
.section-head { max-width: 780px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 52px); margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 17.5px; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at center, var(--navy-deep) 0%, var(--navy-abyss) 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader .shield-wrap { position: relative; width: 120px; height: 120px; }
#preloader .shield-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 0 26px var(--gold-glow));
  animation: pulse 1.6s ease-in-out infinite;
}
#preloader .ring {
  position: absolute; inset: -22px;
  border: 1px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
}
#preloader .ring.r2 { inset: -34px; border-top-color: rgba(198,153,44,0.35); animation-duration: 1.9s; animation-direction: reverse; }
#preloader p {
  font-family: var(--font-display);
  letter-spacing: 0.4em; text-transform: uppercase;
  font-size: 12px; color: var(--muted);
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   SCROLL PROGRESS + CURSOR GLOW + BACKGROUND ORBS
   ============================================================ */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, #7a5c14, var(--gold), var(--gold-light));
  box-shadow: 0 0 14px var(--gold-glow);
  z-index: 1200;
}

#cursor-glow {
  position: fixed; width: 560px; height: 560px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(198,153,44,0.07) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: opacity 0.4s;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.orb.gold { background: rgba(198, 153, 44, 0.10); }
.orb.blue { background: rgba(0, 0, 120, 0.35); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  padding: 22px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  padding: 12px 0;
  background: rgba(3, 3, 24, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 5, 0.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 46px; width: auto; max-width: none; transition: height 0.4s var(--ease-out); }
.site-nav.scrolled .nav-logo img { height: 38px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  position: relative;
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { flex-shrink: 0; }

/* hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  z-index: 1300;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--gold-light);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .site-nav .nav-cta { display: none !important; }
  .nav-logo img { height: 38px; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(2, 2, 16, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    gap: 38px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 18px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, color 0.35s;
  border: none;
}
.btn .arrow { transition: transform 0.35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(6px); }

.btn-gold {
  background: linear-gradient(120deg, #a37c1e, var(--gold) 45%, #dcb254);
  color: #0b0b03;
  box-shadow: 0 8px 30px rgba(198, 153, 44, 0.3);
}
.btn-gold::before {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-22deg);
  transition: left 0.65s var(--ease-out);
}
.btn-gold:hover::before { left: 130%; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(198, 153, 44, 0.45); }

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 0 rgba(198,153,44,0.14);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 -70px 0 0 rgba(198,153,44,0.14), 0 12px 30px rgba(0,0,10,0.4);
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 160px 0 120px;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: heroZoom 18s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(105deg, rgba(2,2,16,0.96) 0%, rgba(2,2,26,0.88) 45%, rgba(2,2,30,0.55) 100%),
    radial-gradient(ellipse at 20% 110%, rgba(0,0,87,0.65), transparent 60%);
}
#particles { position: absolute; inset: 0; z-index: -1; opacity: 0.85; }

.hero-watermark {
  position: absolute; right: -6%; bottom: -12%;
  width: clamp(380px, 44vw, 720px); opacity: 0.06;
  z-index: -1;
  animation: floatY 9s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0) rotate(-3deg);} 50% { transform: translateY(-26px) rotate(0deg);} }

.hero-content { max-width: 860px; position: relative; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
  background: rgba(198,153,44,0.07);
  backdrop-filter: blur(8px);
  padding: 9px 20px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 30px;
}
.hero-kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px var(--gold);
  animation: blink 2.2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero h1 {
  font-size: clamp(40px, 6.6vw, 86px);
  line-height: 1.06;
  margin-bottom: 30px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: riseUp 1s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(2) > span { animation-delay: 0.15s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.3s; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero-sub {
  font-size: clamp(16.5px, 1.6vw, 19.5px);
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.55s forwards;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 18px; opacity: 0; animation: fadeUp 1s var(--ease-out) 0.75s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px);} to { opacity: 1; transform: translateY(0);} }

.hero-typed { color: var(--gold-light); border-right: 3px solid var(--gold); padding-right: 6px; }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted); font-size: 10.5px; letter-spacing: 0.34em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s ease 1.4s forwards;
}
.scroll-cue .mouse {
  width: 26px; height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 16px;
  position: relative;
}
.scroll-cue .mouse::after {
  content: ""; position: absolute; left: 50%; top: 8px;
  width: 3px; height: 8px; border-radius: 3px;
  background: var(--gold-light);
  transform: translateX(-50%);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0% { opacity: 1; top: 8px; } 70% { opacity: 0; top: 22px; } 100% { opacity: 0; top: 8px; } }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: flex-end;
  padding: 180px 0 80px;
  isolation: isolate;
  overflow: hidden;
}
.page-hero .hero-bg { animation: heroZoom 14s var(--ease-out) forwards; }
.page-hero .hero-overlay {
  background:
    linear-gradient(180deg, rgba(2,2,16,0.72) 0%, rgba(2,2,16,0.55) 40%, var(--navy-abyss) 100%),
    linear-gradient(100deg, rgba(2,2,20,0.85), transparent 70%);
}
.breadcrumb {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px;
}
.breadcrumb a { color: var(--muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 { font-size: clamp(38px, 5.6vw, 68px); max-width: 900px; }
.page-hero p.lede { color: var(--muted); max-width: 660px; margin-top: 20px; font-size: 18px; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.ticker {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(198,153,44,0.06), rgba(0,0,87,0.18), rgba(198,153,44,0.06));
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}
.ticker-track {
  display: flex; gap: 0;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-pale);
  padding: 0 28px;
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap;
}
.ticker-track span::after { content: "✦"; color: var(--gold); font-size: 12px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   CARDS
   ============================================================ */
.card-grid { display: grid; gap: 26px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) { .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; } }

.glass-card {
  position: relative;
  background: linear-gradient(160deg, rgba(20,20,80,0.28), rgba(6,6,30,0.55));
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 40px 34px;
  backdrop-filter: blur(10px);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
  overflow: hidden;
  transform-style: preserve-3d;
}
.glass-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(198,153,44,0.13), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(198,153,44,0.12), 0 18px 60px rgba(198,153,44,0.09);
}
.glass-card h3 { font-size: 21px; margin: 20px 0 12px; letter-spacing: 0.03em; }
.glass-card p { color: var(--muted); font-size: 15.5px; }

.card-icon {
  width: 62px; height: 62px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(198,153,44,0.16), rgba(198,153,44,0.04));
  border: 1px solid var(--line);
  color: var(--gold-light);
  transition: transform 0.5s var(--ease-out), box-shadow 0.4s;
}
.glass-card:hover .card-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 30px rgba(198,153,44,0.22);
}
.card-icon svg { width: 30px; height: 30px; }

.card-num {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--font-display);
  font-size: 54px; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(198,153,44,0.35);
  transition: color 0.4s, -webkit-text-stroke-color 0.4s;
}
.glass-card:hover .card-num { color: rgba(198,153,44,0.14); -webkit-text-stroke-color: var(--gold); }

.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.chip {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gold-pale);
  border: 1px solid var(--line);
  background: rgba(198,153,44,0.06);
  padding: 6px 14px; border-radius: 100px;
  transition: background 0.3s, transform 0.3s;
}
.chip:hover { background: rgba(198,153,44,0.16); transform: translateY(-2px); }

.card-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light);
}
.card-link .arrow { transition: transform 0.35s var(--ease-out); }
.glass-card:hover .card-link .arrow { transform: translateX(7px); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }
.reveal-left.in-view, .reveal-right.in-view { transform: translateX(0); }
.reveal-scale { transform: scale(0.88); }
.reveal-scale.in-view { transform: scale(1); }

/* ============================================================
   STATS
   ============================================================ */
.stats-band {
  position: relative;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(rgba(2,2,18,0.92), rgba(2,2,18,0.94)),
    url("../assets/img/data-racks.jpg") center/cover fixed;
  padding: clamp(64px, 8vw, 100px) 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 72px);
  color: var(--gold-light);
  text-shadow: 0 0 34px rgba(198,153,44,0.35);
  line-height: 1;
}
.stat .num sup { font-size: 0.5em; color: var(--gold); }
.stat .label {
  margin-top: 12px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.split-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.split-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,60,0.12), rgba(2,2,16,0.42));
}
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.split-img:hover img { transform: scale(1.06); }
.split-img .frame {
  content: "";
  position: absolute; inset: 18px;
  border: 1px solid rgba(198,153,44,0.4);
  border-radius: 10px;
  z-index: 2;
  pointer-events: none;
}
.split-img .badge {
  position: absolute; z-index: 3; left: 26px; bottom: 26px;
  background: rgba(3,3,22,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 22px;
  display: flex; gap: 14px; align-items: center;
}
.split-img .badge img { width: 44px; height: 44px; object-fit: contain; }
.split-img .badge strong { font-family: var(--font-display); font-size: 15px; display: block; color: var(--gold-pale); }
.split-img .badge small { color: var(--muted); font-size: 12px; letter-spacing: 0.08em; }

.split-body h2 { font-size: clamp(28px, 3.8vw, 44px); margin-bottom: 20px; }
.split-body > p { color: var(--muted); margin-bottom: 18px; }

.check-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  font-size: 15.5px;
}
.check-list li:last-child { border-bottom: none; }
.check-list .tick {
  flex-shrink: 0;
  width: 24px; height: 24px; margin-top: 2px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(198,153,44,0.14);
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 12px;
}
.check-list li span.txt strong { color: var(--gold-pale); font-weight: 600; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.timeline { position: relative; max-width: 900px; margin-inline: auto; }
.timeline::before {
  content: "";
  position: absolute; left: 29px; top: 0; bottom: 0;
  width: 1.5px;
  background: linear-gradient(180deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
  opacity: 0.45;
}
.tl-item { position: relative; padding: 0 0 46px 96px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-node {
  position: absolute; left: 0; top: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px; color: var(--gold-light);
  background: var(--navy-deep);
  border: 1px solid var(--line);
  box-shadow: 0 0 0 6px rgba(198,153,44,0.06);
  transition: box-shadow 0.4s, border-color 0.4s;
}
.tl-item:hover .tl-node { border-color: var(--gold); box-shadow: 0 0 30px rgba(198,153,44,0.3); }
.tl-item h3 { font-size: 21px; margin-bottom: 8px; }
.tl-item p { color: var(--muted); font-size: 15.5px; max-width: 640px; }

/* ============================================================
   ISO BAND
   ============================================================ */
.iso-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
@media (max-width: 560px) { .iso-grid { grid-template-columns: 1fr; } }
.iso-card {
  text-align: center;
  padding: 44px 22px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(14,14,64,0.35), rgba(5,5,26,0.6));
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
}
.iso-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,10,0.5), 0 0 40px rgba(198,153,44,0.12);
}
.iso-card .iso-num {
  font-family: var(--font-display);
  font-size: 34px; color: var(--gold-light);
  display: block; margin-bottom: 6px;
}
.iso-card .iso-name {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text);
  display: block; margin-bottom: 12px;
}
.iso-card p { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 860px; margin-inline: auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(16,16,70,0.25), rgba(5,5,26,0.5));
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.faq-item.open { border-color: var(--line); box-shadow: 0 14px 44px rgba(0,0,10,0.4); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 28px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px; font-weight: 600;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold-pale); }
.faq-q .plus {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold-light);
  font-size: 18px; font-weight: 400;
  transition: transform 0.45s var(--ease-out), background 0.3s, color 0.3s;
}
.faq-item.open .plus { transform: rotate(135deg); background: var(--gold); color: var(--navy-abyss); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-out);
}
.faq-a-inner { padding: 0 28px 26px; color: var(--muted); font-size: 15.5px; }
.faq-a-inner ul { list-style: disc; padding-left: 22px; margin-top: 10px; }
.faq-a-inner li { margin-bottom: 6px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(90px, 11vw, 150px) 0;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-band .bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("../assets/img/meeting.jpg") center/cover;
}
.cta-band .ov {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(3,3,24,0.82) 0%, rgba(2,2,16,0.96) 75%);
}
.cta-band .icon-float {
  width: 74px; margin: 0 auto 28px;
  filter: drop-shadow(0 0 28px var(--gold-glow));
  animation: floatY 6s ease-in-out infinite;
}
.cta-band h2 { font-size: clamp(30px, 4.6vw, 56px); margin-bottom: 20px; }
.cta-band p { color: var(--muted); max-width: 620px; margin: 0 auto 40px; font-size: 17.5px; }
.cta-band .hero-ctas { justify-content: center; opacity: 1; animation: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(16,16,70,0.25), rgba(5,5,26,0.5));
  margin-bottom: 18px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.contact-card:hover { transform: translateX(8px); border-color: var(--line); }
.contact-card .card-icon { width: 52px; height: 52px; flex-shrink: 0; }
.contact-card .card-icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-family: var(--font-body); font-weight: 700; }
.contact-card a.val, .contact-card .val { font-size: 18px; font-weight: 600; color: var(--text); transition: color 0.3s; }
.contact-card a.val:hover { color: var(--gold-light); }

.contact-form {
  padding: clamp(30px, 4vw, 48px);
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(18,18,76,0.3), rgba(5,5,26,0.6));
  backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(2,2,16,0.55);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 15px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group select { appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,153,44,0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.map-wrap {
  margin-top: clamp(50px, 6vw, 80px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.map-wrap iframe {
  display: block;
  width: 100%; height: 420px; border: 0;
  filter: grayscale(1) invert(0.92) hue-rotate(200deg) saturate(2.4) brightness(0.86);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--navy-abyss), #010109);
  padding: 80px 0 0;
  overflow: hidden;
}
.site-footer .foot-watermark {
  position: absolute; right: -70px; bottom: -90px;
  width: 380px; opacity: 0.05;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid .brand img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-grid .brand p { color: var(--muted); font-size: 14.5px; max-width: 320px; }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul a, .site-footer address {
  color: var(--muted); font-size: 14.5px; font-style: normal;
  transition: color 0.3s, padding-left 0.3s;
}
.site-footer ul a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 14.5px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 26px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 13px; color: #6d7090;
}
.footer-bottom .abn { letter-spacing: 0.06em; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#to-top {
  position: fixed; right: 26px; bottom: 26px;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(3,3,24,0.85);
  backdrop-filter: blur(10px);
  color: var(--gold-light);
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s, background 0.3s;
  z-index: 1000;
}
#to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#to-top:hover { background: var(--gold); color: var(--navy-abyss); }

/* ============================================================
   MISC / RESPONSIVE / MOTION
   ============================================================ */
[id] { scroll-margin-top: 110px; }

.divider-glow {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
  width: min(1200px, 92%);
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
