/* ============================================================
   PAMILYA — DESIGN TOKENS (Rolex Emerald & Metallic Gold Luxury Palette)
   ============================================================ */
:root {
  /* Rich Deep Emerald & Dark Rolex Slate Backgrounds */
  --bg-primary: #040E0A;
  --bg-secondary: #071610;
  --bg-card: rgba(8, 30, 21, 0.85);
  --bg-glass: rgba(5, 22, 15, 0.80);

  /* Rolex Emerald & Metallic Gold Accents */
  --emerald: #006039;
  --emerald-light: #00804D;
  --emerald-soft: #10B981;
  --emerald-glow: #00FF9D;
  --emerald-dark: #004D2C;
  --emerald-dim: rgba(0, 96, 57, 0.25);
  --neon-glow: 0 0 20px rgba(0, 96, 57, 0.6), 0 0 40px rgba(212, 175, 55, 0.3);

  /* Rolex Metallic Gold */
  --rolex-gold: #D4AF37;
  --rolex-gold-light: #F4E3B2;
  --rolex-gold-soft: #C5A059;
  --rolex-gold-dim: rgba(212, 175, 55, 0.2);

  /* Typography Colors — High-Contrast Luxury Light Text */
  --text-main: #F8F9FA;
  --text-muted: #A3B8AD;
  --text-dim: #6E8879;

  /* Legacy token aliases mapped to the emerald rolex theme */
  --navy: #040E0A;
  --navy-deep: #071610;
  --navy-raised: #0A2218;
  --navy-raised-2: #0F2E21;

  --gold: #D4AF37;
  --gold-light: #F4E3B2;
  --gold-soft: #C5A059;
  --gold-dark: #B38F2E;
  --gold-dim: rgba(212, 175, 55, 0.2);

  --pearl: #F8F9FA;
  --pearl-dim: #A3B8AD;

  /* Accents (sector cards) */
  --crimson: #E63946;
  --blue: #006039;
  --cyan: #10B981;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1240px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.6s;
  --dur-slow: 1s;

  --nav-h: 84px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

body {
  background: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--text-main);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

p { color: var(--text-muted); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--rolex-gold);
  color: #040E0A;
  padding: 0.75rem 1.25rem;
  z-index: 999;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--rolex-gold);
  outline-offset: 3px;
}

/* ============================================================
   BACKGROUND CANVAS (Deep Rolex Emerald & Dark Forest Gradient)
   ============================================================ */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(ellipse at 50% -10%, #081C14 0%, #040E0A 60%, #020805 100%);
  will-change: transform;
}

.no-webgl #bg-canvas { display: none; }
.no-webgl body { background: radial-gradient(ellipse at 50% -10%, #081C14 0%, #040E0A 60%, #020805 100%); }

main, header, footer, .chat-widget { position: relative; z-index: 2; }

/* ============================================================
   SECTION RHYTHM
   ============================================================ */
section {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 3rem);
  max-width: var(--container);
  margin: 0 auto;
}

/* ============================================================
   NAVBAR (Dark Emerald Glassmorphism + Rolex Gold Accents)
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 106;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: height var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  background: rgba(4, 14, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
  height: 64px;
  background: rgba(4, 14, 10, 0.96);
  border-bottom-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 25px rgba(0, 96, 57, 0.3), 0 0 15px rgba(212, 175, 55, 0.15);
}

.nav-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: linear-gradient(100deg, #C5A059 0%, #D4AF37 25%, #F4E3B2 50%, #00FF9D 75%, #D4AF37 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}

.nav-links {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--dur-fast) var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--rolex-gold);
  box-shadow: 0 0 8px var(--rolex-gold);
  transition: width var(--dur-fast) var(--ease);
  border-radius: 2px;
}

.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--rolex-gold-light);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--rolex-gold);
  box-shadow: 0 0 6px var(--rolex-gold);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(78vw, 340px);
  background: rgba(4, 14, 10, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  z-index: 105;
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease);
  display: flex;
  align-items: center;
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer ul {
  width: 100%;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--dur-fast) var(--ease);
}
.mobile-drawer a:hover { color: var(--rolex-gold); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 104;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease);
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   BUTTONS (Rolex Emerald & Gold Metallic Luxury)
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.btn-gold {
  background: linear-gradient(135deg, #006039 0%, #004D2C 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 96, 57, 0.5), 0 0 12px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover, .btn-gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 96, 57, 0.7), 0 0 24px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #00804D 0%, #006039 100%);
  border-color: var(--rolex-gold-light);
}

.btn-ghost {
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  color: var(--rolex-gold-light);
  background: rgba(4, 14, 10, 0.75);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--rolex-gold);
  background: rgba(0, 96, 57, 0.25);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.35);
  transform: scale(0);
  animation: ripple-anim 0.6s var(--ease);
  pointer-events: none;
}

@keyframes ripple-anim {
  to { transform: scale(3); opacity: 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  max-width: 900px;
}

.hero-content { display: flex; flex-direction: column; align-items: center; }

.hero-title {
  font-size: clamp(3.5rem, 12vw, 8rem);
  background: linear-gradient(135deg, #F4E3B2 0%, #D4AF37 25%, #00804D 55%, #00FF9D 75%, #D4AF37 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
  margin-bottom: 0.5rem;
  /* 3D luxury emerald & gold depth layers */
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 20px rgba(0, 96, 57, 0.5))
    drop-shadow(0 0 40px rgba(212, 175, 55, 0.3));
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  color: var(--text-main);
  min-height: 1.6em;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.caret {
  display: inline-block;
  width: 2.5px;
  height: 1.1em;
  background: var(--rolex-gold);
  margin-left: 3px;
  vertical-align: -0.15em;
  animation: blink 0.9s step-end infinite;
  box-shadow: 0 0 8px var(--rolex-gold);
}
@keyframes blink { 50% { opacity: 0; } }

.hero-subline {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 1.5rem 2.75rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(180deg, rgba(8, 30, 21, 0.92), rgba(4, 14, 10, 0.95));
  border-radius: 14px;
  margin-bottom: 2.5rem;
  box-shadow:
    0 0 0 1px rgba(0, 96, 57, 0.2),
    0 8px 32px -8px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(0, 96, 57, 0.3),
    inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.stat-badge-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--rolex-gold-light);
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
}
.currency { font-size: 0.7em; margin-right: 0.1em; }
.stat-suffix { font-size: 0.5em; font-family: var(--font-body); font-weight: 600; }

.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bob 2.2s ease-in-out infinite;
  color: var(--rolex-gold);
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

.scroll-dot { animation: scroll-dot-move 2.2s ease-in-out infinite; }
@keyframes scroll-dot-move { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; transform: translateY(10px); } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
  transition-delay: calc(var(--stagger, 0) * 1ms);
}
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-text p { margin-bottom: 1.15rem; max-width: 60ch; }

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.25rem;
}

.metric-card {
  padding: 1.35rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  text-align: center;
  background: linear-gradient(160deg, rgba(8, 30, 21, 0.9) 0%, rgba(4, 14, 10, 0.95) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(212, 175, 55, 0.15);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.metric-card:hover {
  border-color: var(--rolex-gold);
  box-shadow: 0 8px 30px rgba(0, 96, 57, 0.4), 0 0 16px rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
}

.metric-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--rolex-gold-light);
  font-weight: 700;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
}
.metric-static { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
}

.about-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}

#about-sphere-canvas { width: 100%; height: 100%; display: block; }

.about-visual-fallback {
  display: none;
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid var(--rolex-gold);
  box-shadow: 0 0 80px 10px rgba(0, 96, 57, 0.4), inset 0 0 60px rgba(212, 175, 55, 0.2);
  animation: pulse-glow 3.5s ease-in-out infinite;
}
.no-webgl .about-visual-fallback { display: block; }
.no-webgl #about-sphere-canvas { display: none; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 80px 10px rgba(0, 96, 57, 0.3), inset 0 0 60px rgba(212, 175, 55, 0.15); }
  50% { box-shadow: 0 0 110px 25px rgba(0, 96, 57, 0.6), inset 0 0 80px rgba(212, 175, 55, 0.35); }
}

/* ============================================================
   SECTORS — Full-width luxury row layout
   ============================================================ */
.sectors-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.sectors-intro p { margin: 0 auto; }

.sector-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.sector-row {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 3.5vw, 3rem);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(150deg, rgba(8, 30, 21, 0.92) 0%, rgba(4, 14, 10, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.15), 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  overflow: hidden;
}

.sector-row::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 20% 50%, rgba(var(--row-glow-rgb, 0,96,57), 0.15), transparent 65%);
  pointer-events: none;
}

.sector-row[data-accent="gold"]    { --row-glow-rgb: 0,96,57; --card-accent: #D4AF37; }
.sector-row[data-accent="pearl"]   { --row-glow-rgb: 212,175,55; --card-accent: #F4E3B2; }
.sector-row[data-accent="crimson"] { --row-glow-rgb: 230,57,70; --card-accent: #E63946; }
.sector-row[data-accent="blue"]    { --row-glow-rgb: 16,185,129; --card-accent: #10B981; }

.sector-row:hover, .sector-row:focus-within {
  transform: translateY(-5px);
  border-color: var(--card-accent, var(--rolex-gold));
  box-shadow: 0 20px 50px -12px rgba(var(--row-glow-rgb, 0,96,57), 0.35),
              0 0 20px rgba(var(--row-glow-rgb, 0,96,57), 0.25),
              inset 0 1px 0 rgba(212,175,55,0.3);
}

/* Icon wrap — big realistic 3D showcase canvas */
.sector-icon-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 96, 57, 0.15) 0%, rgba(4, 14, 10, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: inset 0 0 30px rgba(0, 96, 57, 0.2), 0 6px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.sector-icon-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.08), transparent 70%);
  pointer-events: none;
}

.sector-canvas { width: 100%; height: 100%; display: block; }

.sector-canvas-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(4, 14, 10, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-muted);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.sector-icon-fallback {
  display: none;
  width: 60%; height: 60%;
  border: 1.5px solid var(--card-accent, var(--rolex-gold));
  animation: spin-fallback 6s linear infinite;
}
.no-webgl .sector-icon-fallback { display: block; }
.no-webgl .sector-canvas { display: none; }
.icon-building { clip-path: polygon(20% 100%, 20% 20%, 50% 0%, 80% 20%, 80% 100%); }
.icon-knot { border-radius: 50%; }
.icon-helix { border-radius: 4px; }
.icon-globe { border-radius: 50%; }
@keyframes spin-fallback { to { transform: rotate(360deg); } }

/* Text side next to the 3D visual */
.sector-text {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sector-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sector-number {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--card-accent, var(--rolex-gold));
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rolex-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  width: fit-content;
  background: rgba(0, 96, 57, 0.2);
}

.sector-text h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  color: #F8F9FA;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0;
}

.sector-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-style: italic;
  color: var(--rolex-gold);
  line-height: 1.4;
  margin: 0 0 0.2rem;
}

.sector-text p {
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  color: var(--text-muted);
  max-width: 58ch;
  line-height: 1.72;
  margin: 0;
}

.sector-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 6px;
  background: rgba(0, 96, 57, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
  transition: all var(--dur-fast) var(--ease);
}

.sector-row:hover .highlight-pill {
  background: rgba(0, 96, 57, 0.3);
  border-color: rgba(212, 175, 55, 0.4);
  color: #F8F9FA;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leadership {
  display: flex;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.leader-card {
  max-width: 720px;
  width: 100%;
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.75rem, 6vw, 4rem);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(0, 96, 57, 0.3) 0%, transparent 70%),
    linear-gradient(180deg, rgba(8, 30, 21, 0.95) 0%, rgba(4, 14, 10, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.15),
    0 25px 60px -15px rgba(0, 0, 0, 0.7),
    0 0 50px -10px rgba(0, 96, 57, 0.25),
    inset 0 1px 0 rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rolex-gold), transparent);
}

.leader-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 1.1rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: rgba(0, 96, 57, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rolex-gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.leader-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.leader-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #FFFFFF 20%, #F4E3B2 70%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.leader-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rolex-gold);
  margin-bottom: 1.6rem;
}

.leader-accent-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 240px;
  margin: 0 auto 1.75rem;
}

.leader-accent-line::before,
.leader-accent-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45));
}

.leader-accent-line::after {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.45), transparent);
}

.leader-accent-diamond {
  color: var(--rolex-gold);
  font-size: 0.55rem;
  opacity: 0.85;
}

.leader-bio {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--emerald-text-muted);
  max-width: 58ch;
  margin: 0 auto;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { text-align: center; }
.contact-inner { max-width: 560px; margin: 0 auto; }
.contact-inner p { margin: 1rem auto 2.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 4rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rolex-gold-soft);
}

.footer-brand p { margin-top: 0.5rem; font-size: 0.9rem; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--rolex-gold-soft); }

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 96, 57, 0.3) 20%, #D4AF37 50%, rgba(0, 96, 57, 0.3) 80%, transparent);
  background-size: 200% 100%;
  animation: divider-shimmer 5s linear infinite;
  margin-bottom: 1.5rem;
}
@keyframes divider-shimmer { to { background-position: -200% 0; } }

.footer-copy { font-size: 0.82rem; color: var(--text-muted); text-align: center; }

/* ============================================================
   CHATBOT (Rolex Emerald & Gold Design, Bot Name: PAM)
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: clamp(1rem, 4vw, 1.75rem);
  right: clamp(1rem, 4vw, 1.75rem);
  z-index: 200;
}

.chat-toggle {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006039, #004D2C);
  border: 1.5px solid #D4AF37;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 25px -6px rgba(0, 96, 57, 0.7), 0 0 20px rgba(212, 175, 55, 0.3);
  transition: transform var(--dur-fast) var(--ease);
}
.chat-toggle:hover { transform: scale(1.06); }

.chat-toggle-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--rolex-gold);
  animation: ring-pulse 2.4s ease-out infinite;
}
@keyframes ring-pulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

#chatIconClose { display: none; }
.chat-toggle.active #chatIconOpen { display: none; }
.chat-toggle.active #chatIconClose { display: block; }

.chat-window {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: min(88vw, 360px);
  height: min(70vh, 520px);
  display: flex;
  flex-direction: column;
  background: rgba(4, 14, 10, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8), 0 0 30px -10px rgba(0, 96, 57, 0.4);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--dur-fast) cubic-bezier(0.34, 1.56, 0.64, 1), opacity var(--dur-fast) var(--ease);
  overflow: hidden;
}

.chat-window.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.chat-header-info { display: flex; align-items: center; gap: 0.7rem; }

.chat-logo {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006039, #004D2C);
  border: 1px solid #D4AF37;
  color: #D4AF37;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.chat-header-text { display: flex; flex-direction: column; gap: 0.15rem; }
.chat-header-text strong { font-size: 0.95rem; font-weight: 700; color: #F8F9FA; letter-spacing: 0.04em; }

.status { display: flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; color: #10B981; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #10B981; box-shadow: 0 0 6px #10B981; }

.chat-close { color: var(--text-muted); padding: 0.25rem; }
.chat-close:hover { color: #F8F9FA; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.chat-messages::-webkit-scrollbar { width: 5px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(0, 96, 57, 0.4); border-radius: 4px; }

.msg {
  max-width: 85%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.5;
  white-space: pre-line;
  animation: msg-in 0.3s var(--ease);
}
@keyframes msg-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.msg-bot {
  align-self: flex-start;
  background: rgba(0, 96, 57, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom-left-radius: 2px;
  color: var(--text-main);
}

.msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, #006039, #004D2C);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FFFFFF;
  border-bottom-right-radius: 2px;
  font-weight: 500;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.15rem 0.85rem;
}

.qr-btn {
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  color: var(--rolex-gold-light);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.qr-btn:hover, .qr-btn:focus-visible { background: var(--rolex-gold); color: #040E0A; }

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.chat-input-row input {
  flex: 1;
  background: rgba(0, 96, 57, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text-main);
}
.chat-input-row input:focus { border-color: var(--rolex-gold); }
.chat-input-row input::placeholder { color: var(--text-dim); }

.chat-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006039, #004D2C);
  border: 1px solid #D4AF37;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}
.chat-send:hover { transform: scale(1.08); }

.chat-link-btn {
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
  background: linear-gradient(135deg, #006039, #004D2C);
  border: 1px solid #D4AF37;
  color: #FFFFFF;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sector-row { grid-template-columns: 260px 1fr; gap: 2.5rem; padding: 2rem; }
  .sector-icon-wrap { max-width: 260px; height: 260px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sector-list { gap: 2rem; }
  .sector-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
    padding: 2rem 1.5rem;
  }
  .sector-icon-wrap { max-width: 260px; height: 260px; margin: 0 auto; }
  .sector-badge-row, .sector-highlights { justify-content: center; }
  .sector-text p { max-width: 100%; margin: 0 auto; }
  .about-metrics { grid-template-columns: 1fr 1fr; }
  .about-metrics .metric-card:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .stat-badge { padding: 1.25rem 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .chat-window { width: 92vw; right: -0.4rem; }
  .leader-card { padding: 2.5rem 1.5rem; }
}

@media (min-width: 1440px) {
  :root { --container: 1360px; }
}

html { overflow-x: hidden; }
body { overflow-x: hidden; }
