/* ════════════════════════════════════════════════
   SCG GROUP HUB — MASTER STYLESHEET
   Navy #071220  |  Gold #C9A84C  |  Blue #3B5EA6
   ════════════════════════════════════════════════ */

:root {
  --navy:      #071220;
  --navy2:     #0C1C35;
  --navy3:     #122444;
  --navy4:     #1A2E50;
  --gold:      #C9A84C;
  --gold2:     #E8C46A;
  --gold-dim:  rgba(201,168,76,0.10);
  --gold-glow: rgba(201,168,76,0.35);
  --blue:      #3B5EA6;
  --blue2:     #4A74CC;
  --blue-dim:  rgba(59,94,166,0.12);
  --green:     #4A9A3C;
  --white:     #FFFFFF;
  --text-main: #E8EDF5;
  --text-mid:  #B0C0D8;
  --text-muted:#6B80A0;
  --border:    rgba(201,168,76,0.15);
  --border2:   rgba(59,94,166,0.20);
  --light-bg:  #F4F6FB;
  --light-text:#1C2B4A;
  --radius:    4px;
  --radius-lg: 12px;
  --shadow:    0 4px 24px rgba(7,18,32,0.40);
  --shadow-lg: 0 12px 48px rgba(7,18,32,0.55);
  --trans:     0.28s cubic-bezier(0.4,0,0.2,1);
  --font-serif:'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, sans-serif;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
a { text-decoration: none; color: inherit; transition: var(--trans); }
img { max-width: 100%; }

/* ── Noise overlay ──────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

/* ── Typography ─────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-serif); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 700; }
em { color: var(--gold); font-style: italic; font-family: var(--font-serif); }
p { font-weight: 300; color: var(--text-mid); }

/* ── Layout ─────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.bg-dark { background: var(--navy2); }
.bg-light { background: var(--light-bg); color: var(--light-text); }
.bg-light p { color: #4A5568; }
.bg-light h2 em { color: var(--blue); }

/* ── Section Header ─────────────────────────────── */
.section-hdr { text-align: center; margin-bottom: 60px; }
.section-hdr.light h2 { color: var(--white); }
.section-hdr.light .sec-sub { color: var(--text-mid); }
.sec-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue2);
  background: var(--blue-dim);
  border: 1px solid var(--border2);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.sec-tag.gold { color: var(--gold); background: var(--gold-dim); border-color: var(--border); }
.sec-sub { color: var(--text-muted); max-width: 600px; margin: 14px auto 0; font-size: 1.05rem; font-weight: 300; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--gold-glow); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.btn-outline-blue {
  background: transparent;
  color: var(--blue2);
  border: 1px solid var(--border2);
}
.btn-outline-blue:hover { background: var(--blue-dim); border-color: var(--blue2); }

/* ════════════════════════════════════════════════
   TOP TICKER
════════════════════════════════════════════════ */
.top-ticker {
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  height: 34px;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.ticker-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.ticker-track span { padding-right: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 34px;
  left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(7,18,32,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.nav.scrolled {
  top: 0;
  height: 62px;
  background: rgba(4,12,22,0.97);
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-tag {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 7px 12px;
  border-radius: var(--radius);
  transition: var(--trans);
}
.nav-links a:hover { color: var(--gold); background: var(--gold-dim); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: var(--navy) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--gold-glow); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--text-mid); border-radius: 2px; transition: var(--trans); }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 28px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #040c18 0%, var(--navy2) 40%, #0a1830 100%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,94,166,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,94,166,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  top: 8%; right: 5%;
  width: 480px; height: 480px;
  border: 1px solid rgba(201,168,76,0.07);
  animation: orb-spin 40s linear infinite;
}
.hero-orb-1::before {
  content: '';
  position: absolute; inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(59,94,166,0.06);
}
.hero-orb-1::after {
  content: '';
  position: absolute; inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(74,154,60,0.05);
}
.hero-orb-2 {
  bottom: 15%; right: 20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(59,94,166,0.08), transparent 70%);
  animation: orb-pulse 5s ease-in-out infinite;
}
.hero-orb-3 {
  top: 40%; left: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 70%);
  animation: orb-pulse 7s ease-in-out infinite reverse;
}
@keyframes orb-spin { to { transform: rotate(360deg); } }
@keyframes orb-pulse { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.2); opacity: 1; } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59,94,166,0.12);
  border: 1px solid rgba(59,94,166,0.30);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7CA4E0;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease-out both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: dot-pulse 2.5s ease-in-out infinite;
}
@keyframes dot-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(74,154,60,0.7); } 50% { box-shadow: 0 0 0 6px rgba(74,154,60,0); } }

.hero-h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.1s ease-out both;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(176,192,216,0.85);
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.2s ease-out both;
}
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(12,28,53,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  max-width: 640px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.3s ease-out both;
}
.hero-stat {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hs-num {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hs-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}
.hs-div { width: 1px; background: var(--border); }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.4s ease-out both;
}
.hero-contact-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.5s ease-out both;
}
.hero-contact-strip a {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--trans);
}
.hero-contact-strip a:hover { color: var(--gold); }
.hero-contact-strip i { color: var(--gold); }
.hcs-sep { color: var(--border); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
  animation: bounce-down 2s infinite;
}
@keyframes bounce-down { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ════════════════════════════════════════════════
   NETWORK STRIP
════════════════════════════════════════════════ */
.network-strip {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.network-strip .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.network-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.network-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nlink {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  transition: var(--trans);
}
.nlink i { font-size: 0.7rem; color: var(--blue2); }
.nlink:hover, .nlink.active {
  color: var(--gold);
  border-color: var(--border);
  background: var(--gold-dim);
}
.nlink.active i { color: var(--gold); }

/* ════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.about-text h2 { margin-bottom: 20px; color: var(--white); }
.about-text p { color: var(--text-mid); font-weight: 300; line-height: 1.8; }

.about-pillars { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: var(--trans);
}
.pillar:hover { background: rgba(255,255,255,0.05); border-color: var(--border); }
.pillar > i { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; width: 18px; }
.pillar strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 3px; font-family: var(--font-sans); }
.pillar p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.metric-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--trans);
}
.metric-card:hover { background: rgba(255,255,255,0.06); border-color: var(--border2); }
.metric-card.gold { background: var(--gold-dim); border-color: var(--border); }
.mc-num {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.mc-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

/* ════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--navy2);
  padding: 32px 28px;
  position: relative;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card:hover { background: var(--navy3); }
.service-card:hover .sc-icon { color: var(--gold); }

.sc-number {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.sc-icon {
  font-size: 1.4rem;
  color: var(--blue2);
  margin-bottom: 6px;
  transition: var(--trans);
}
.service-card h3 { color: var(--white); margin-bottom: 6px; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; flex: 1; }

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.sc-tags span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue2);
  background: var(--blue-dim);
  border: 1px solid var(--border2);
  padding: 3px 8px;
  border-radius: 100px;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  transition: var(--trans);
}
.sc-link:hover { gap: 10px; }

/* ════════════════════════════════════════════════
   APPS GRID
════════════════════════════════════════════════ */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.app-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: var(--trans);
  overflow: hidden;
  cursor: pointer;
}
.app-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: 0;
  transition: var(--trans);
}
.app-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.app-card:hover::before { opacity: 1; }
.app-card:hover .app-arrow { color: var(--gold); transform: translate(3px,-3px); }

.app-card.app-main::before { background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.app-card.app-finance::before { background: linear-gradient(90deg, var(--blue), var(--gold)); }
.app-card.app-tech::before { background: linear-gradient(90deg, var(--green), var(--blue)); }

.app-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 100px;
}
.app-badge.new-badge { background: rgba(74,154,60,0.1); color: #6DD056; border-color: rgba(74,154,60,0.2); }

.app-icon {
  width: 44px; height: 44px;
  background: var(--blue-dim);
  border: 1px solid var(--border2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue2);
  transition: var(--trans);
  flex-shrink: 0;
}
.app-card:hover .app-icon { background: var(--gold-dim); border-color: var(--border); color: var(--gold); }
.app-info { flex: 1; }
.app-info h3 { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.app-info p { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; margin-bottom: 10px; }
.app-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.app-tags span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2px 7px;
  border-radius: 100px;
}
.app-arrow {
  position: absolute;
  bottom: 20px; right: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--trans);
}

/* ════════════════════════════════════════════════
   TECHNOLOGY
════════════════════════════════════════════════ */
.tech-showcase {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.tech-modules { display: flex; flex-direction: column; gap: 2px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.tm {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 24px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.tm:last-child { border-bottom: none; }
.tm:hover { background: rgba(255,255,255,0.04); }
.tm-num {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 4px 8px;
  background: var(--gold-dim);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.tm-body h4 { color: var(--white); margin-bottom: 6px; font-size: 0.95rem; }
.tm-body p { font-size: 0.83rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

.tech-right { display: flex; flex-direction: column; gap: 20px; }
.tech-market, .tech-pricing {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.tech-market h4, .tech-pricing h4 { color: var(--white); margin-bottom: 16px; font-size: 0.9rem; }
.market-stats { display: flex; gap: 0; }
.mstat { flex: 1; text-align: center; padding: 14px 8px; border-right: 1px solid var(--border); }
.mstat:last-child { border-right: none; }
.ms-num { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.ms-label { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.tp-plans { display: flex; flex-direction: column; gap: 6px; }
.tp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  transition: var(--trans);
}
.tp.featured { background: var(--gold-dim); border-color: var(--border); }
.tp-name { font-size: 0.78rem; color: var(--text-mid); font-weight: 500; }
.tp-price { font-size: 0.82rem; color: var(--gold); font-weight: 700; }
.tech-ctas { display: flex; gap: 10px; }
.tech-ctas .btn { flex: 1; justify-content: center; }

/* ════════════════════════════════════════════════
   FOUNDER
════════════════════════════════════════════════ */
.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--blue));
}
.founder-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid rgba(201,168,76,0.3);
}
.founder-info h3 { color: var(--white); margin-bottom: 4px; }
.founder-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.founder-info p { font-size: 0.92rem; color: var(--text-mid); font-weight: 300; line-height: 1.8; }
.founder-expertise { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.founder-expertise span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue2);
  background: var(--blue-dim);
  border: 1px solid var(--border2);
  padding: 4px 10px;
  border-radius: 100px;
}
.founder-links { display: flex; gap: 12px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   PUBLICATIONS
════════════════════════════════════════════════ */
.pub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.pub-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--trans);
  color: var(--light-text);
}
.pub-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(59,94,166,0.12); transform: translateX(4px); }
.pub-icon {
  width: 44px; height: 44px;
  background: var(--blue-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
}
.pub-body { flex: 1; }
.pub-body h4 { font-family: var(--font-sans); font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; color: var(--light-text); }
.pub-body p { font-size: 0.78rem; color: #718096; margin: 0; }
.pub-arr { color: #CBD5E0; font-size: 0.8rem; transition: var(--trans); }
.pub-card:hover .pub-arr { color: var(--blue); transform: translateX(3px); }

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.cm-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--trans);
}
.cm-card:hover { background: rgba(255,255,255,0.05); border-color: var(--gold); }
.cm-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-dim);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue2);
  flex-shrink: 0;
}
.cm-icon.email { background: rgba(201,168,76,0.08); border-color: var(--border); color: var(--gold); }
.cm-icon.whatsapp { background: rgba(74,154,60,0.1); border-color: rgba(74,154,60,0.2); color: #6DD056; }
.cm-icon.location { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: var(--text-muted); }
.cm-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.cm-value { font-size: 0.9rem; font-weight: 600; color: var(--text-main); display: block; }
.cm-value:hover { color: var(--gold); }

.quick-book {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 8px;
}
.quick-book h4 { color: var(--white); margin-bottom: 16px; font-size: 0.9rem; }
.qb-services { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.qb-services a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 9px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: var(--trans);
}
.qb-services a i { color: var(--gold); font-size: 0.75rem; }
.qb-services a:hover { color: var(--white); border-color: var(--border); background: rgba(255,255,255,0.06); }

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form h4 { color: var(--white); margin-bottom: 24px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cf-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.cf-group input, .cf-group select, .cf-group textarea {
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  transition: var(--trans);
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.cf-group select option { background: var(--navy2); }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; max-width: 300px; font-weight: 300; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--trans);
}
.footer-social a:hover { background: var(--gold-dim); border-color: var(--border); color: var(--gold); }
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fl-col h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.fl-col ul { list-style: none; }
.fl-col li { margin-bottom: 10px; }
.fl-col a {
  font-size: 0.82rem;
  color: rgba(176,192,216,0.6);
  font-weight: 300;
  transition: var(--trans);
}
.fl-col a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); font-weight: 300; }
.footer-bottom a { color: var(--gold); }

/* ════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .tech-showcase { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { top: 34px; }
  .nav.scrolled { top: 0; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 106px; left: 0; right: 0;
    background: rgba(7,18,32,0.98);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .hero { padding: 130px 20px 60px; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .section { padding: 64px 0; }
  .founder-card { flex-direction: column; padding: 28px; }
  .cf-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .qb-services { grid-template-columns: 1fr; }
  .tech-ctas { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-contact-strip { flex-direction: column; gap: 10px; }
  .hcs-sep { display: none; }
  .apps-grid { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; }
}
