/* ─── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:    #08111C;
  --navy2:   #0D1B2A;
  --navy3:   #112238;
  --gold:    #C8860A;
  --gold2:   #E09A18;
  --gold3:   #F5B830;
  --cream:   #F5F2ED;
  --white:   #FFFFFF;
  --grey:    #5C6675;
  --lgrey:   #8C96A4;
  --border:  rgba(200,134,10,0.15);
  --border-light: rgba(255,255,255,0.07);

  --font: 'Raleway', sans-serif;
  --radius: 3px;
  --radius-lg: 14px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
  display: block;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 620px;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,134,10,0.35); }
.btn-gold:hover::after { opacity: 1; }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold2);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy2);
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-navy:hover {
  background: var(--navy3);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,134,10,0.2);
}

/* ─── NAV ────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
}

#nav.scrolled {
  background: rgba(8,17,28,0.95);
  backdrop-filter: blur(16px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 38px; }
.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── GOLD SWISH SVG ─────────────────────────────────────────────────── */
.swish-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.swish-svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,134,10,0.12);
  border: 1px solid rgba(200,134,10,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold2);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold2);
  position: relative;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.scroll-bar {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── INTRO STRIP ────────────────────────────────────────────────────── */
.intro-strip {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.intro-stat {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}
.intro-stat-word {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.intro-stat p {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

.intro-text h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}
.intro-text p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.intro-text .accent {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold2);
  font-style: italic;
}

/* ─── SERVICES ───────────────────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.services-header {
  margin-bottom: 72px;
}
.services-header h2 { color: var(--white); margin-bottom: 16px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.svc-card {
  background: var(--navy2);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
  cursor: default;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover { background: var(--navy3); }
.svc-card:hover::before { transform: scaleY(1); }

.svc-card.featured {
  background: linear-gradient(135deg, var(--navy3) 0%, rgba(200,134,10,0.08) 100%);
  border: 1px solid var(--border);
}
.svc-card.featured::before { transform: scaleY(1); }

.svc-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.svc-card h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.svc-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.svc-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s;
}
.svc-card:hover .svc-link { gap: 14px; }

.svc-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.svc-icon {
  width: 44px; height: 44px;
  background: rgba(200,134,10,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold2);
}

/* ─── WHY US ─────────────────────────────────────────────────────────── */
.why-us {
  padding: 120px 0;
  background: var(--navy2);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-left h2 { color: var(--white); margin-bottom: 20px; }
.why-left p { color: rgba(255,255,255,0.55); margin-bottom: 16px; }

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--border-light);
}
.why-pillar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.why-pillar-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  width: 28px;
  flex-shrink: 0;
}
.why-pillar-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.why-right {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.why-right::before {
  content: '"';
  position: absolute;
  top: -20px; left: 32px;
  font-size: 12rem;
  font-weight: 800;
  color: rgba(200,134,10,0.06);
  line-height: 1;
  font-family: var(--font);
}
.why-quote {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 28px;
  position: relative;
}
.why-quote em {
  font-style: italic;
  color: var(--gold2);
}
.why-attr {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ─── BS TEASER ──────────────────────────────────────────────────────── */
.bs-teaser {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.bs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bs-left h2 { color: var(--white); margin-bottom: 20px; }
.bs-left p { color: rgba(255,255,255,0.55); margin-bottom: 32px; }

.bs-right {
  position: relative;
}
.bs-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.bs-stat {
  background: var(--navy2);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.bs-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.bs-stat p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ─── CTA STRIP ──────────────────────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  max-width: 560px;
}
.btn-white {
  background: var(--white);
  color: var(--gold);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
footer {
  background: #050D14;
  padding: 64px 0 36px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 40px;
}
.footer-brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}
.footer-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--gold2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}
.footer-bottom a:hover { color: var(--gold2); }

/* ─── PAGE HERO ──────────────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 100px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero-content { position: relative; z-index: 3; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 540px; }

/* ─── CONTENT SECTIONS ───────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); }
.section-mid { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.two-col h2 { color: var(--white); margin-bottom: 18px; }
.two-col p { color: rgba(255,255,255,0.55); margin-bottom: 14px; font-size: 0.95rem; }

/* ─── TOPIC CARDS ────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.topic-card {
  background: var(--navy2);
  padding: 36px 32px;
  border-left: 1px solid var(--border);
  transition: background 0.3s;
}
.topic-card:hover { background: var(--navy3); }
.topic-card.full { grid-column: 1 / -1; }
.topic-card.dark-gold {
  background: linear-gradient(135deg, var(--navy3), rgba(200,134,10,0.06));
  border: 1px solid var(--border);
}

.topic-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold2);
  display: block;
  margin-bottom: 12px;
}
.topic-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.topic-card p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.65; }

/* ─── FORMAT CARDS ───────────────────────────────────────────────────── */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.format-card {
  background: var(--navy2);
  padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: all 0.3s;
}
.format-card:hover {
  background: var(--navy3);
  border-top-color: var(--gold);
}
.format-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.1rem; }
.format-card p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.65; }
.format-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(200,134,10,0.2);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 16px;
}

/* ─── PILLAR LIST ────────────────────────────────────────────────────── */
.pillar-list { margin-top: 48px; }
.pillar-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pillar-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.pillar-num-lg {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.pillar-item h3 { color: var(--white); margin-bottom: 8px; font-size: 1.1rem; }
.pillar-item p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ─── BA SPLIT ───────────────────────────────────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ba-before {
  background: #1a1a2e;
  padding: 40px 36px;
}
.ba-after {
  background: linear-gradient(135deg, var(--navy3), rgba(200,134,10,0.08));
  padding: 40px 36px;
  border: 1px solid var(--border);
}
.ba-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.ba-before .ba-label { color: rgba(255,255,255,0.25); }
.ba-after .ba-label { color: var(--gold2); }

.slide-old {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 20px;
}
.slide-old-title { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.4); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.slide-old li { font-size: 0.72rem; color: rgba(255,255,255,0.3); padding: 3px 0 3px 14px; position: relative; list-style: none; }
.slide-old li::before { content: '—'; position: absolute; left: 0; color: rgba(255,255,255,0.15); }

.slide-new {
  background: rgba(200,134,10,0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
}
.slide-new-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.slide-new-title em { color: var(--gold2); font-style: italic; }
.slide-bar {
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  border-radius: 2px;
  margin: 14px 0;
}
.slide-new-sub { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ─── ABOUT ──────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  padding: 100px 0;
}
.portrait-frame {
  aspect-ratio: 4/5;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.portrait-placeholder {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.15);
  text-align: center;
  line-height: 1.8;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.portrait-frame::after {
  content: none;
}

.about-content h2 { color: var(--white); margin-bottom: 8px; }
.about-role { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold2); margin-bottom: 28px; display: block; }
.about-content p { color: rgba(255,255,255,0.55); margin-bottom: 16px; font-size: 0.95rem; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tag {
  background: rgba(200,134,10,0.08);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ─── CONTACT ────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 100px 0;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info p { color: rgba(255,255,255,0.55); margin-bottom: 14px; font-size: 0.95rem; }
.contact-email-block {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}
.contact-email-block span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  display: block;
  margin-bottom: 6px;
}
.contact-email-block a {
  color: var(--gold2);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.25s;
}
.contact-email-block a:hover { color: var(--white); }

.contact-form {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ─── REVEAL ─────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  #nav { padding: 16px 24px; }
  #nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 75%; max-width: 300px; background: var(--navy2); padding: 90px 36px 40px; gap: 24px; z-index: 99; border-left: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .two-col, .why-inner, .bs-inner, .about-grid, .contact-grid, .intro-strip-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-top { flex-direction: column; }
  .footer-nav { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  /* Why Resalico — mobile fixes */
  .why-right { padding: 32px 24px; }
  .why-quote { font-size: 1rem; margin-bottom: 20px; }
  .why-attr { margin-bottom: 24px; display: block; }
  .why-credentials { margin-top: 0; }
  .why-cred { padding: 14px 0; display: flex; flex-direction: column; gap: 4px; }
  .why-cred-label { font-size: 0.65rem; margin-bottom: 2px; }
  .why-cred-val { font-size: 0.85rem; line-height: 1.5; }
  .why-pillars { margin-top: 24px; }
  .why-pillar { padding: 14px 14px; gap: 12px; align-items: flex-start; }
  .why-pillar-num { min-width: 24px; padding-top: 2px; }
  .why-pillar-text { font-size: 0.85rem; line-height: 1.5; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-scroll { display: none; }
  .bs-stat-grid { grid-template-columns: 1fr; }
}

/* ─── VIDEO PROOF SECTION ─────────────────────────────────────────────── */
.video-proof {
  padding: 100px 0;
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.video-proof-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.video-proof-text h2 { color: var(--white); margin-bottom: 18px; }
.video-proof-text p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.7; margin-bottom: 10px; }
.video-frame { position: relative; }
.video-caption {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: 14px;
  text-align: center;
}

/* ─── MK VIDEO LARGE ─────────────────────────────────────────────────── */
.mk-video-block { max-width: 900px; margin: 0 auto; }
.video-caption-lg {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-top: 20px;
  text-align: center;
}

/* ─── MODEL GRID ──────────────────────────────────────────────────────── */
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 0;
}
.model-card {
  padding: 40px 32px;
  border-top: 2px solid transparent;
}
.model-education {
  background: linear-gradient(135deg, #112238, rgba(100,120,200,0.08));
  border-top-color: rgba(150,170,220,0.4);
}
.model-core {
  background: linear-gradient(135deg, var(--navy3), rgba(200,134,10,0.1));
  border-top-color: var(--gold);
  text-align: center;
}
.model-business {
  background: linear-gradient(135deg, #112238, rgba(120,60,180,0.08));
  border-top-color: rgba(150,100,200,0.4);
}
.model-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold2);
  display: block;
  margin-bottom: 12px;
}
.model-card h3 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.model-items { display: flex; flex-direction: column; gap: 8px; }
.model-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ─── OPS GRID ────────────────────────────────────────────────────────── */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ops-card {
  background: var(--navy2);
  padding: 36px 28px;
  border-top: 2px solid transparent;
  transition: all 0.3s;
}
.ops-card:hover {
  background: var(--navy3);
  border-top-color: var(--gold);
}
.ops-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(200,134,10,0.08);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold2);
  margin-bottom: 20px;
}
.ops-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 16px; }
.ops-list {
  list-style: none;
  padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.ops-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.ops-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ─── PROGRAMME FEATURED ─────────────────────────────────────────────── */
.prog-featured {
  background: linear-gradient(135deg, var(--navy3), rgba(200,134,10,0.07));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 2px;
}
.prog-featured-content {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 60px;
  align-items: start;
}
.prog-featured-text h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.prog-featured-text p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }
.prog-featured-tags {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.prog-meta-item {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prog-meta-item:last-child { border-bottom: none; }
.prog-meta-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.prog-meta-val {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ─── PROGRAMME GRID ─────────────────────────────────────────────────── */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

/* ─── WHY CREDENTIALS ────────────────────────────────────────────────── */
.why-credentials {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
}
.why-cred {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: baseline;
}
.why-cred:last-child { border-bottom: none; }
.why-cred-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold2);
  min-width: 90px;
  flex-shrink: 0;
}
.why-cred-val {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ─── BS STAT GRID ───────────────────────────────────────────────────── */
.bs-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.bs-stat {
  background: var(--navy2);
  padding: 36px 28px;
  border-top: 2px solid var(--border);
  text-align: center;
}
.bs-stat:first-child { border-top-color: var(--gold); }
.bs-stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.bs-stat p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* ─── SVC CARD ───────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.svc-card {
  background: var(--navy2);
  padding: 40px 36px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s var(--ease);
  display: block;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  background: var(--navy3);
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
}
.svc-card.featured {
  background: linear-gradient(135deg, var(--navy3), rgba(200,134,10,0.07));
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--gold);
}
.svc-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.svc-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  display: block;
  margin-bottom: 20px;
}
.svc-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(200,134,10,0.08);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold2);
  margin-bottom: 20px;
}
.svc-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 12px; }
.svc-card p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.65; }
.svc-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold2);
}

/* ─── HERO EXTRAS ────────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: flex; align-items: center; background: var(--navy); position: relative; overflow: hidden; }
.hero-noise { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"); opacity: 0.4; }
.swish-container { position: absolute; inset: 0; pointer-events: none; }
.swish-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 3; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(200,134,10,0.08); border: 1px solid var(--border); padding: 8px 18px; border-radius: 100px; margin-bottom: 32px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold2); animation: pulse 2s infinite; }
.hero-badge span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold2); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold2); }
.hero-sub { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 520px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 3; }
.hero-scroll span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.scroll-bar { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(200,134,10,0.6), transparent); animation: scrollAnim 1.8s ease-in-out infinite; }
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ─── INTRO STRIP ────────────────────────────────────────────────────── */
.intro-strip { padding: 90px 0; background: var(--navy); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.intro-strip-inner { display: grid; grid-template-columns: 180px 1fr; gap: 80px; align-items: start; }
.intro-stat-word { font-size: clamp(3rem, 8vw, 7rem); font-weight: 800; color: var(--white); letter-spacing: -0.04em; display: block; line-height: 1; margin-bottom: 8px; }
.intro-stat p { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; line-height: 1.5; }
.intro-text h2 { color: var(--white); margin-bottom: 24px; max-width: 680px; }
.intro-text p { color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-bottom: 14px; max-width: 620px; }
.intro-text p.accent { color: var(--gold2); font-weight: 600; font-size: 1rem; }

/* ─── SERVICES HEADER ────────────────────────────────────────────────── */
.services { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.services-header { margin-bottom: 0; }
.services-header h2 { color: var(--white); margin-bottom: 16px; }

/* ─── WHY US ──────────────────────────────────────────────────────────── */
.why-us { padding: 100px 0; background: var(--navy2); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-left h2 { color: var(--white); margin-bottom: 20px; }
.why-left p { color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-bottom: 14px; }
.why-pillars { display: flex; flex-direction: column; gap: 0; margin-top: 32px; border: 1px solid var(--border-light); border-radius: 6px; overflow: hidden; }
.why-pillar { display: flex; align-items: center; gap: 16px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.why-pillar:last-child { border-bottom: none; }
.why-pillar-num { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; color: var(--gold2); min-width: 28px; }
.why-pillar-text { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.why-right { padding: 48px 40px; background: linear-gradient(135deg, var(--navy3), rgba(200,134,10,0.06)); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.why-quote { font-size: clamp(1rem, 1.8vw, 1.25rem); font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 16px; }
.why-quote em { color: var(--gold2); font-style: italic; }
.why-attr { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.25); }

/* ─── CTA STRIP ───────────────────────────────────────────────────────── */
.cta-strip { padding: 80px 0; background: linear-gradient(135deg, #0A1520, rgba(200,134,10,0.12), #0A1520); border-top: 1px solid var(--border); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }

/* ─── RESPONSIVE NEW ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .video-proof-inner { grid-template-columns: 1fr; gap: 48px; }
  .model-grid { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: 1fr; }
  .bs-stat-grid { grid-template-columns: repeat(2,1fr); }
  .prog-grid { grid-template-columns: 1fr; }
  .prog-featured-content { grid-template-columns: 1fr; gap: 40px; }
  .prog-featured-tags { flex-direction: row; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .intro-strip-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .bs-stat-grid { grid-template-columns: 1fr 1fr; }
  .prog-featured { padding: 28px; }
}

/* --- TASTER PREVIEW CARD -------------------------------------------- */
.taster-preview {
  display: block;
  background: linear-gradient(135deg, #0D1B2A, #112238);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.taster-preview:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(200,134,10,0.15);
}
.taster-preview-inner {
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.taster-vs {
  display: flex;
  align-items: center;
  gap: 20px;
}
.taster-brand {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.taster-zara { color: var(--white); }
.taster-shein { color: var(--gold2); }
.taster-divider {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.taster-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.taster-cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold2);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.25s;
}
.taster-preview:hover .taster-cta {
  background: rgba(200,134,10,0.1);
  border-color: var(--gold);
}

/* --- WHY RESALICO — MOBILE REFINEMENTS -------------------------------- */
@media (max-width: 768px) {
  .why-us { padding: 72px 0; }

  .why-inner { gap: 36px; }

  .why-left h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); line-height: 1.25; }
  .why-left p  { font-size: 0.9rem; line-height: 1.7; }

  /* Pillars */
  .why-pillars { margin-top: 20px; }
  .why-pillar  { padding: 14px 14px; gap: 12px; align-items: flex-start; }
  .why-pillar-num  { min-width: 26px; font-size: 0.6rem; padding-top: 3px; }
  .why-pillar-text { font-size: 0.85rem; line-height: 1.55; }

  /* Right card */
  .why-right {
    padding: 28px 22px;
    border-radius: 10px;
  }

  /* Quote */
  .why-quote {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 6px;
  }
  .why-attr {
    font-size: 0.62rem;
    display: block;
    margin-bottom: 24px;
  }

  /* Credentials — stack label above value */
  .why-credentials { margin-top: 0; gap: 0; }
  .why-cred {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .why-cred:last-child { border-bottom: none; }
  .why-cred-label {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold2);
    opacity: 0.8;
    line-height: 1;
  }
  .why-cred-val {
    font-size: 0.83rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
  }
}

@media (max-width: 400px) {
  .why-right { padding: 22px 16px; }
  .why-quote  { font-size: 0.92rem; }
  .why-pillar-text { font-size: 0.8rem; }
  .why-cred-val    { font-size: 0.78rem; }
}
