/* CACEIS — Premium Investment Platform */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@600;700;800&display=swap');

:root {
  --bg: #070b14;
  --bg-elevated: #0f1624;
  --bg-card: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.08);
  --text: #e8edf5;
  --text-muted: #8b95a8;
  --accent: #00d4aa;
  --accent-2: #00a3ff;
  --accent-glow: rgba(0,212,170,0.35);
  --coral: #ff6b4a;
  --gradient: linear-gradient(135deg, #00d4aa 0%, #00a3ff 100%);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ─── Animated background mesh ─── */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: floatOrb 20s var(--ease) infinite;
}
.mesh-orb-1 { width: 600px; height: 600px; background: #00d4aa; top: -200px; right: -100px; }
.mesh-orb-2 { width: 500px; height: 500px; background: #0066ff; bottom: -150px; left: -100px; animation-delay: -7s; }
.mesh-orb-3 { width: 400px; height: 400px; background: #7c3aed; top: 40%; left: 30%; animation-delay: -14s; opacity: 0.25; }

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s;
}
.header.scrolled {
  background: rgba(7,11,20,0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  -webkit-text-fill-color: initial;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-list { display: flex; gap: 8px; list-style: none; }
.nav-list a {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.3s, background 0.3s;
}
.nav-list a:hover, .nav-list a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.header-cta {
  padding: 12px 24px;
  background: var(--gradient);
  color: #070b14;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  white-space: nowrap;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 8px 14px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.3s;
}
.lang-btn.active {
  background: var(--gradient);
  color: #070b14;
}
.lang-btn:hover:not(.active) { color: var(--text); }
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}
.menu-btn svg { width: 28px; height: 28px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient);
  color: #070b14;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(0,212,170,0.08);
  transform: translateY(-2px);
}
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shine 3s infinite;
}
@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

/* ─── Background video ─── */
.bg-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.bg-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,11,20,0.88) 0%, rgba(7,11,20,0.72) 50%, rgba(7,11,20,0.85) 100%);
}
.bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-image--video video,
.content-image--video .bg-video {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.content-image--video .bg-video { aspect-ratio: 4/3; }
.content-image--video .bg-video::after {
  background: linear-gradient(180deg, transparent 40%, rgba(7,11,20,0.35) 100%);
}
.content-image--video .bg-video video { border-radius: inherit; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,212,170,0.12);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  animation: pulseBadge 2.5s ease infinite;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes pulseBadge { 0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,170,0.3); } 50% { box-shadow: 0 0 0 8px rgba(0,212,170,0); } }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat span { font-size: 0.85rem; color: var(--text-muted); }

.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.hero-image-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,11,20,0.8) 100%);
  z-index: 1;
}
.hero-float-card {
  position: absolute;
  z-index: 2;
  background: rgba(15,22,36,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  animation: floatCard 4s var(--ease) infinite;
}
.hero-float-card-1 { bottom: 24px; left: -24px; animation-delay: 0s; }
.hero-float-card-2 { top: 24px; right: -24px; animation-delay: -2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-card-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; }
.float-card-value { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--accent); }
.float-card-change { font-size: 0.8rem; color: #4ade80; }

/* ─── Marquee ─── */
.marquee-section {
  padding: 24px 0;
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Sections ─── */
.section { padding: 120px 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-desc { color: var(--text-muted); font-size: 1.05rem; }

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.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; }

/* ─── Service cards ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,212,170,0.3);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.glass-card:hover::before { transform: scaleX(1); }
.card-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,212,170,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease), background 0.4s;
}
.glass-card:hover .card-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(0,212,170,0.2);
}
.card-icon-wrap svg { width: 26px; height: 26px; color: var(--accent); }
.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.glass-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s;
}
.glass-card:hover .card-link { gap: 12px; }

/* ─── Tabs ─── */
.tabs-section { background: var(--bg-elevated); }
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.tab-btn.active, .tab-btn:hover {
  background: rgba(0,212,170,0.12);
  border-color: var(--accent);
  color: var(--accent);
}
.tab-panel { display: none; animation: tabFade 0.5s var(--ease); }
.tab-panel.active { display: block; }
@keyframes tabFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tab-content-grid img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.tab-features { margin-top: 24px; }
.tab-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.tab-features li svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }

/* ─── Process timeline ─── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.3;
}
.timeline-step {
  text-align: center;
  position: relative;
}
.timeline-num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.timeline-step:hover .timeline-num {
  transform: scale(1.15);
  box-shadow: 0 0 24px var(--accent-glow);
}
.timeline-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 8px;
}
.timeline-step p { font-size: 0.875rem; color: var(--text-muted); }

/* ─── Testimonials carousel ─── */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 12px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.7;
}
.testimonial-author strong { display: block; font-family: var(--font-display); }
.testimonial-author span { font-size: 0.875rem; color: var(--text-muted); }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slider-dot.active { background: var(--accent); transform: scale(1.3); }

/* ─── CTA banner ─── */
.cta-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 80px 48px;
  text-align: center;
  border: 1px solid var(--border);
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/paris.jpg') center/cover;
  opacity: 0.25;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,11,20,0.92), rgba(0,100,80,0.85));
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-banner p { color: var(--text-muted); max-width: 520px; margin: 0 auto 32px; }

/* ─── Page hero ─── */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .bg-video::after {
  background: linear-gradient(180deg, rgba(7,11,20,0.82) 0%, rgba(7,11,20,0.92) 100%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ─── Two col ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.content-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.content-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  pointer-events: none;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}
.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,212,170,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-item label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.95rem; }
.contact-item a:hover { color: var(--accent); }

.form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,170,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-check a { color: var(--accent); text-decoration: underline; }
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: none;
  font-size: 0.9rem;
}
.form-msg.show.success { display: block; background: rgba(0,212,170,0.12); border: 1px solid var(--accent); color: var(--accent); }
.form-msg.show.error { display: block; background: rgba(255,107,74,0.12); border: 1px solid var(--coral); color: var(--coral); }

/* ─── Policy content ─── */
.policy-content {
  opacity: 1;
  transform: none;
}
.policy-content h2 { font-family: var(--font-display); font-size: 1.4rem; margin: 40px 0 16px; color: var(--text); }
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 { font-size: 1.1rem; margin: 28px 0 12px; color: var(--accent); }
.policy-content p, .policy-content li { color: var(--text-muted); margin-bottom: 12px; }
.policy-content ul, .policy-content ol { margin: 0 0 16px 24px; }
.policy-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.875rem; }
.policy-table th, .policy-table td { border: 1px solid var(--border); padding: 12px; text-align: left; }
.policy-table th { background: var(--bg-elevated); color: var(--accent); }
.policy-table-wrap { overflow-x: auto; }

/* ─── Footer ─── */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; max-width: 320px; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--accent); }

/* ─── Cookie banner ─── */
.cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 900px;
  margin: 0 auto;
  z-index: 9999;
  background: rgba(15,22,36,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  animation: slideUpCookie 0.5s var(--ease);
}
@keyframes slideUpCookie {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-bar p { flex: 1; font-size: 0.875rem; color: var(--text-muted); min-width: 260px; }
.cookie-bar a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: transform 0.3s;
}
.cookie-btn:hover { transform: scale(1.05); }
.cookie-accept { background: var(--gradient); color: #070b14; }
.cookie-reject { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }

/* ─── Team ─── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(0,212,170,0.3); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #070b14;
}
.team-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; }
.team-role { color: var(--accent); font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid, .tab-content-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { order: -1; }
}
@media (max-width: 768px) {
  .nav { position: relative; }
  .nav-list {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(7,11,20,0.98);
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-list.open { display: flex; }
  .menu-btn { display: block; }
  .header-cta { display: none; }
  .lang-switch { margin-left: auto; margin-right: 8px; }
  .timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-float-card-1 { left: 12px; }
  .hero-float-card-2 { right: 12px; }
}
