/* ============================================================
   EUROPA TRADE STUDIO LLC — style.css
   Premium corporate holding site
   ============================================================ */

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  --bg-base:       #060B13;
  --bg-surface:    #0A111A;
  --bg-card:       #0D1622;
  --bg-card-hover: #131E2D;

  --accent:        #C6A45F;
  --accent-glow:   rgba(198, 164, 95, 0.25);
  
  --text-primary:  #F2F5F9;
  --text-secondary:#9CA6B8;
  --text-muted:    #55627E;

  --border:        rgba(255,255,255,0.06);
  --border-hover:  rgba(198, 164, 95, 0.30);

  --radius-sm:     4px; /* classic style */
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  --font-body:     'Lato', system-ui, sans-serif;
  --font-display:  'Playfair Display', serif;

  --container:     1200px;
  --nav-h:         110px;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

/* ─── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── NAV ────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#main-nav.scrolled {
  background: rgba(1, 5, 14, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.logo-mark-img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--accent-glow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  padding: 0.5rem 0.85rem;
  color: var(--text-secondary);
  font-size: 0.925rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-cta {
  padding: 0.55rem 1.2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-left: 0.5rem;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px var(--accent-glow);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 24px var(--accent-glow); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--text-primary); }
.mobile-link:last-child { border-bottom: none; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orb-pulse 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--bg-surface), transparent 70%);
  top: -150px; left: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  bottom: -100px; right: -100px;
  animation-delay: 3s;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #fff, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: 5s;
  opacity: 0.06;
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.1) translate(15px, -10px); }
  66% { transform: scale(0.95) translate(-10px, 15px); }
}
.hero-stars {
  position: absolute;
  inset: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(26, 86, 214, 0.10);
  border: 1px solid rgba(26, 86, 214, 0.25);
  border-radius: 100px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.1s forwards;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: dot-blink 2s ease-in-out infinite;
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.2s forwards;
}
.hero-title-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #F5E5C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.3s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.4s forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.5s forwards;
}
.hero-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fade-in 1s ease 1.2s forwards;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--text-muted);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
  animation: scroll-mouse 2s ease-in-out infinite;
}
@keyframes scroll-mouse {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0; top: 14px; }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.6rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--accent-glow); opacity: 0.92; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.6rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--border-hover); background: rgba(198, 164, 95, 0.05); }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION COMMONS ────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}
.section-header { margin-bottom: 4rem; }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.about-body {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-body:last-child { margin-bottom: 0; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pillar {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.pillar:hover { border-color: var(--border-hover); transform: translateY(-3px); background: var(--bg-card-hover); }
.pillar-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26, 86, 214,0.10);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.pillar-body {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ─── VENTURES ───────────────────────────────────────────── */
.ventures { padding: 7rem 0; }
.venture-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.venture-card:hover { border-color: rgba(26, 86, 214,0.30); box-shadow: 0 0 60px rgba(26, 86, 214,0.08); }
.venture-card-verra:hover { border-color: rgba(200,150,92,0.30); box-shadow: 0 0 60px rgba(200,150,92,0.08); }
.venture-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.venture-info { padding: 3.5rem; }
.venture-tag {
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.venture-card-verra .venture-tag { color: var(--accent); }
.venture-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.venture-tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.venture-description {
  color: var(--text-secondary);
  font-size: 0.935rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.venture-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.venture-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.venture-feature svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.venture-card-verra .venture-feature svg { color: var(--accent); }
.venture-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(26, 86, 214,0.10);
  color: var(--accent);
  border: 1px solid rgba(26, 86, 214, 0.20);
}
.venture-card-verra .venture-status { background: rgba(198, 164, 95, 0.10); color: var(--accent); border-color: rgba(198, 164, 95, 0.20); }

/* VOice Typing visual */
.venture-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
}
.venture-visual-vtj {
  background: linear-gradient(135deg, rgba(198, 164, 95, 0.05) 0%, rgba(123,79,255,0.08) 100%);
  border-left: 1px solid var(--border);
}
.vtj-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 320px;
}
.vtj-bubble {
  width: 80px; height: 80px;
  border-radius: 24px;
  background: var(--bg-surface);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(26, 86, 214,0.5);
  position: relative;
}
.vtj-bubble-icon {
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative;
}
.vtj-mic-pulse {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: rgba(26, 86, 214, 0.3);
  animation: mic-ring 2s ease-in-out infinite;
}
.vtj-mic-pulse::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: rgba(26, 86, 214, 0.15);
  animation: mic-ring 2s ease-in-out 0.5s infinite;
}
@keyframes mic-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.vtj-transcript {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.vtj-word {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0;
  animation: typing-in 0.4s var(--ease-out) forwards;
}
.vtj-word:nth-child(1) { animation-delay: 0.3s; }
.vtj-word-delay-1 { animation-delay: 0.8s !important; }
.vtj-word-delay-2 { animation-delay: 1.3s !important; }
@keyframes typing-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.vtj-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
}
.vtj-waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--bg-surface), var(--accent));
  animation: wave 1.2s ease-in-out infinite;
}
.vtj-waveform span:nth-child(even) { animation-delay: 0.15s; }
.vtj-waveform span:nth-child(3n) { animation-delay: 0.3s; }
.vtj-waveform span:nth-child(4n) { animation-delay: 0.45s; }
@keyframes wave {
  0%, 100% { height: 6px; }
  50% { height: 28px; }
}
.vtj-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.vtj-tag {
  padding: 0.3rem 0.7rem;
  background: rgba(26, 86, 214,0.10);
  border: 1px solid rgba(26, 86, 214,0.20);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* Verra visual */
.venture-visual-verra {
  background: linear-gradient(135deg, rgba(200,150,92,0.05) 0%, rgba(120,80,40,0.10) 100%);
  border-left: 1px solid var(--border);
}
.verra-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.verra-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.verra-can {
  width: 120px; height: 200px;
  border-radius: 16px;
  background: linear-gradient(160deg, #1a1208 0%, #2a1e0e 40%, #1a1208 100%);
  border: 1px solid rgba(200,150,92,0.30);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(198, 164, 95, 0.20),
    0 0 40px rgba(200,150,92,0.15);
  position: relative;
  overflow: hidden;
}
.verra-can::before {
  content: '';
  position: absolute;
  top: 0; left: 10px; right: 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,150,92,0.5), transparent);
}
.verra-can::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(200,150,92,0.08) 0%, transparent 50%);
}
.verra-can-label {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.2rem; z-index: 1;
}
.verra-can-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.verra-can-name {
  font-size: 0.75rem;
  color: rgba(200,150,92,0.7);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.verra-can-dose {
  font-size: 0.65rem;
  color: rgba(200,150,92,0.4);
  margin-top: 0.5rem;
}
.verra-glow {
  position: absolute;
  bottom: -40px;
  width: 160px; height: 100px;
  background: radial-gradient(ellipse, rgba(200,150,92,0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.verra-stats {
  display: flex;
  gap: 1.5rem;
}
.verra-stat-item { text-align: center; }
.verra-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.verra-stat-name {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.contact-centered {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-centered .section-label { display: block; margin-bottom: 0.75rem; }
.contact-centered .section-title { margin-bottom: 1.25rem; }
.contact-desc {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-size: 0.975rem;
}
/* Email reveal */
.contact-email-reveal {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.email-reveal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: rgba(26, 86, 214,0.08);
  border: 1px solid rgba(26, 86, 214,0.25);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.01em;
}
.email-reveal-btn:hover {
  background: rgba(26, 86, 214,0.15);
  border-color: rgba(26, 86, 214,0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 86, 214,0.15);
}
.email-reveal-btn svg { color: var(--accent); flex-shrink: 0; }
.email-reveal-btn.revealed {
  background: rgba(255, 204, 0,0.07);
  border-color: rgba(255, 204, 0,0.25);
}
.email-reveal-btn.revealed svg { color: #fff; }
.email-reveal-note {
  font-size: 0.775rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
/* Contact info row */
.contact-details-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-details-row .contact-item {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  text-align: left;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, transform 0.2s;
}
a.contact-item:hover { border-color: var(--border-hover); transform: translateX(4px); }
.contact-item-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26, 86, 214,0.10);
  border-radius: 10px;
  color: var(--accent);
}
.contact-item-text { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-item-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.04em; font-weight: 600; text-transform: uppercase; }
.contact-item-value { font-size: 0.9rem; color: var(--text-primary); line-height: 1.5; }


/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}
.footer-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-group a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-legal { font-size: 0.75rem; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .venture-card-inner { grid-template-columns: 1fr; }
  .venture-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: flex; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .about-pillars { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .venture-info { padding: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
