/* ===== MIRA INVESTS LTD — V3 ===== */

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

:root {
  --midnight: #08080d;
  --deep: #0e0e16;
  --surface: #14141e;
  --surface-2: #1a1a26;
  --border: rgba(255,255,255,0.05);
  --border-hover: rgba(255,255,255,0.1);
  --gold: #c4a24e;
  --gold-light: #dbbf6a;
  --gold-glow: rgba(196,162,78,0.12);
  --gold-subtle: rgba(196,162,78,0.06);
  --white: #fff;
  --text: #bbbbc6;
  --text-muted: #72727e;
  --text-dim: #4a4a55;
  --heading: 'Cormorant Garamond', Georgia, serif;
  --body: 'DM Sans', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body); color: var(--text); line-height: 1.75; -webkit-font-smoothing: antialiased; overflow-x: hidden;
  background-color: var(--midnight);
  background-image:
    radial-gradient(ellipse 900px 600px at 15% -5%, rgba(196,162,78,.06), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 20%, rgba(196,162,78,.04), transparent 55%);
  background-attachment: fixed;
  opacity: 0; transition: opacity .6s var(--ease-out);
  cursor: url('../img/cursor.svg') 16 16, auto;
}
a:hover, button:hover, .btn:hover, .nav-toggle:hover, .lang-switch-btn:hover, input[type="submit"]:hover, select:hover, .feature-card-link:hover, .lang-dropdown a:hover {
  cursor: url('../img/cursor-pointer.svg') 16 16, pointer;
}
body.page-ready { opacity: 1; }
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--gold); color: var(--midnight); }
a { color: var(--gold); text-decoration: none; transition: all .4s var(--ease); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }

h1,h2,h3,h4 { font-family: var(--heading); color: var(--white); line-height: 1.15; font-weight: 500; }
h1 { font-size: clamp(2.8rem,5.5vw,5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem,3.8vw,3rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.4rem; margin-bottom: .75rem; }
p { margin-bottom: 1.1rem; }

.label { font-family: var(--mono); text-transform: uppercase; letter-spacing: 4px; font-size: .68rem; color: var(--gold); margin-bottom: 1.5rem; display: inline-block; position: relative; padding-left: 2rem; }
.label::before { content: ''; position: absolute; left: 0; top: 50%; width: 1.2rem; height: 1px; background: var(--gold); }

/* === NAV === */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.4rem 0; transition: all .5s var(--ease); }
.navbar.scrolled { background: rgba(8,8,13,.94); backdrop-filter: blur(20px) saturate(180%); padding: .7rem 0; border-bottom: 1px solid var(--border); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; font-family: var(--heading); font-size: 1.45rem; font-weight: 600; color: var(--white); letter-spacing: 1.5px; flex-shrink: 0; }
.logo span { color: var(--gold); font-weight: 300; }
.logo img { height: 30px; width: auto; display: block; transition: transform .4s var(--ease); margin-right: .3rem; }
.logo:hover img { transform: scale(1.04); }

.nav-links { display: flex; list-style: none; gap: 0; align-items: center; }
.nav-links li a { color: var(--text-muted); font-size: .62rem; font-weight: 500; letter-spacing: .5px; text-transform: uppercase; padding: .5rem .4rem; position: relative; transition: color .4s var(--ease); white-space: nowrap; }
.nav-links li a::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%) scaleX(0); width: calc(100% - 1.2rem); height: 1px; background: var(--gold); transition: transform .4s var(--ease); }
.nav-links li a:hover, .nav-links li a.active { color: var(--white); }
.nav-links li a:hover::before, .nav-links li a.active::before { transform: translateX(-50%) scaleX(1); }

.nav-cta { margin-left: .3rem; padding: .45rem .9rem !important; border: 1px solid var(--gold) !important; color: var(--gold) !important; font-size: .6rem !important; letter-spacing: 1px !important; transition: all .4s var(--ease) !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--midnight) !important; box-shadow: 0 8px 24px var(--gold-glow); }
.nav-cta::before { display: none !important; }

/* Language switcher */
.lang-switch { position: relative; margin-left: .5rem; }
.lang-switch-btn { background: none; border: 1px solid var(--border); color: var(--text-muted); font-family: var(--mono); font-size: .65rem; letter-spacing: 1px; padding: .4rem .8rem; cursor: pointer; text-transform: uppercase; transition: all .3s var(--ease); display: flex; align-items: center; gap: .4rem; }
.lang-switch-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-switch-btn::after { content: '▾'; font-size: .6rem; }
.lang-dropdown { position: absolute; top: calc(100% + .5rem); right: 0; background: var(--surface); border: 1px solid var(--border); min-width: 120px; display: none; z-index: 100; }
.lang-dropdown.open { display: block; animation: dropIn .3s var(--ease-out); }
.lang-dropdown a { display: block; padding: .6rem 1rem; font-size: .78rem; color: var(--text-muted); transition: all .2s; }
.lang-dropdown a:hover, .lang-dropdown a.active { background: var(--gold-subtle); color: var(--white); }

@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; z-index: 1001; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); margin: 5px 0; transition: all .4s var(--ease); }

/* === HERO === */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--deep); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.25) saturate(.6); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(8,8,13,.5) 0%,rgba(8,8,13,.2) 40%,rgba(8,8,13,.88) 100%), linear-gradient(90deg,rgba(8,8,13,.75) 0%,transparent 55%), radial-gradient(ellipse 800px 500px at 85% 15%, rgba(196,162,78,.08), transparent 60%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 0 2.5rem; }
.hero h1 { margin-bottom: 1.5rem; font-weight: 400; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-text { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.85; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .6rem; color: var(--text-dim); font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; font-family: var(--mono); }
.hero-scroll-line { width: 1px; height: 45px; background: linear-gradient(to bottom,var(--gold),transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Floating geometric shapes */
.hero-shape { position: absolute; z-index: 1; pointer-events: none; opacity: .5; }
.hero-shape-circle { width: 220px; height: 220px; border: 1px solid var(--gold); border-radius: 50%; opacity: .12; top: 12%; right: 8%; }
.hero-shape-square { width: 90px; height: 90px; border: 1px solid var(--gold); opacity: .1; bottom: 18%; right: 20%; transform: rotate(20deg); }
.hero-shape-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; opacity: .3; top: 30%; right: 32%; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: .75rem; padding: .95rem 2.3rem; font-size: .72rem; font-weight: 600; font-family: var(--body); letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; transition: all .5s var(--ease-out); position: relative; overflow: hidden; }
.btn-primary { background: var(--gold); color: var(--midnight); }
.btn-primary:hover { background: var(--gold-light); color: var(--midnight); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(196,162,78,.2); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--border-hover); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-arrow::after { content: '→'; transition: transform .4s var(--ease); }
.btn-arrow:hover::after { transform: translateX(5px); }

/* Shimmer on primary buttons */
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent); transition: none; }
.btn-primary:hover::before { animation: shimmer .8s forwards; }
@keyframes shimmer { to { left: 150%; } }

/* === SECTIONS === */
.section { padding: 7rem 0; position: relative; }
.section-alt { background: var(--deep); }
.section-surface { background: var(--surface); }
.section-header { max-width: 620px; margin-bottom: 4.5rem; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.centered .label { padding-left: 0; }
.section-header.centered .label::before { display: none; }
.section-header p { color: var(--text-muted); font-size: 1.02rem; }

/* === CARDS === */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }

.feature-card { background: rgba(20,20,30,.45); backdrop-filter: blur(14px) saturate(140%); border: 1px solid var(--border); padding: 2.5rem 2rem; position: relative; transition: border-color .5s var(--ease), box-shadow .5s var(--ease), transform .35s var(--ease-out); overflow: hidden; will-change: transform; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); transform: scaleX(0); transition: transform .6s var(--ease); }
.feature-card::after { content: ''; position: absolute; bottom: 0; right: 0; width: 80px; height: 80px; background: radial-gradient(circle,var(--gold-subtle),transparent); opacity: 0; transition: opacity .5s; }
.feature-card:hover { border-color: var(--border-hover); box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(196,162,78,.06); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { opacity: 1; }
.feature-card .number { font-family: var(--heading); font-size: 3rem; color: rgba(196,162,78,.1); font-weight: 300; line-height: 1; margin-bottom: 1.25rem; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: .85rem; }
.feature-card p { color: var(--text-muted); font-size: .92rem; margin: 0; }

/* Clickable card */
.feature-card-link { text-decoration: none; color: inherit; display: block; }
.feature-card-link .feature-card { cursor: pointer; }
.feature-card .card-arrow { position: absolute; bottom: 2rem; right: 2rem; color: var(--gold); font-size: 1.1rem; opacity: 0; transform: translateX(-8px); transition: all .4s var(--ease); }
.feature-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* === SPLIT === */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-content .label { margin-bottom: 1rem; }
.split-content p { color: var(--text-muted); }
.check-list { list-style: none; margin-top: 1.5rem; }
.check-list li { position: relative; padding: .7rem 0 .7rem 2.1rem; color: var(--text-muted); border-bottom: 1px solid var(--border); font-size: .95rem; }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: .7rem; color: var(--gold); font-family: var(--mono); font-size: .85rem; }
.split-image-wrapper { position: relative; overflow: hidden; }
.split-image-wrapper img { width: 100%; height: 480px; object-fit: cover; transition: transform .8s var(--ease); }
.split-image-wrapper:hover img { transform: scale(1.03); }
.split-image-wrapper::after, .service-showcase-image::after { content: ''; position: absolute; inset: 0; background: var(--gold); z-index: 2; transform-origin: left; transform: scaleX(1); }
.split-image-wrapper.wipe-in::after, .service-showcase-image.wipe-in::after { animation: wipeReveal 1s var(--ease-out) forwards; }
@keyframes wipeReveal { from { transform: scaleX(1); } to { transform: scaleX(0); } }
.image-accent { position: absolute; width: 100px; height: 100px; border: 1px solid var(--gold); opacity: .2; transition: opacity .4s; }
.image-accent-tl { top: -12px; left: -12px; border-right: none; border-bottom: none; }
.image-accent-br { bottom: -12px; right: -12px; border-left: none; border-top: none; }
.split-image-wrapper:hover ~ .image-accent, .split-visual:hover .image-accent { opacity: .5; }

/* === STATS === */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(20,20,30,.25); backdrop-filter: blur(10px); }
.stat { padding: 3rem 2rem; text-align: center; border-right: 1px solid var(--border); transition: background .4s var(--ease), transform .4s var(--ease-out); }
.stat:last-child { border-right: none; }
.stat:hover { background: var(--gold-subtle); transform: translateY(-3px); }
.stat-number { font-family: var(--heading); font-size: 3.2rem; color: var(--gold); font-weight: 300; line-height: 1; margin-bottom: .6rem; }
.stat-text { font-size: .72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }

/* === MARQUEE === */
.marquee-section { padding: 1.8rem 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-track { display: flex; gap: 3.5rem; animation: marquee 35s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { font-family: var(--heading); font-size: 1.6rem; color: var(--text-dim); font-weight: 300; flex-shrink: 0; display: flex; align-items: center; gap: 3.5rem; }
.marquee-item .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; opacity: .4; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === QUOTE === */
.quote-block { max-width: 780px; margin: 0 auto; text-align: center; padding: 3rem 0; }
.quote-block blockquote { font-family: var(--heading); font-size: clamp(1.4rem,2.8vw,2rem); color: var(--white); font-weight: 400; font-style: italic; line-height: 1.55; margin-bottom: 1.5rem; }
.quote-block cite { font-style: normal; color: var(--gold); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; }

/* === PROCESS === */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 2.2rem; left: 12.5%; right: 12.5%; height: 1px; background: var(--border); }
.process-step { text-align: center; padding: 0 1.25rem; }
.process-dot { width: 45px; height: 45px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.75rem; background: var(--midnight); position: relative; z-index: 1; font-family: var(--mono); font-size: .65rem; color: var(--gold); transition: all .4s var(--ease); }
.process-step:hover .process-dot { background: var(--gold); color: var(--midnight); box-shadow: 0 0 30px var(--gold-glow); }
.process-step h4 { margin-bottom: .6rem; font-size: 1.05rem; }
.process-step p { color: var(--text-muted); font-size: .88rem; }

/* === SERVICE SHOWCASE === */
.service-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 420px; border: 1px solid var(--border); margin-bottom: 1.75rem; overflow: hidden; transition: all .4s var(--ease); }
.service-showcase:hover { border-color: var(--border-hover); box-shadow: 0 10px 40px rgba(0,0,0,.2); }
.service-showcase:nth-child(even) { direction: rtl; }
.service-showcase:nth-child(even) > * { direction: ltr; }
.service-showcase-image { overflow: hidden; }
.service-showcase-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.service-showcase:hover .service-showcase-image img { transform: scale(1.04); }
.service-showcase-content { padding: 3.5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.service-showcase-content .number { font-family: var(--mono); font-size: .68rem; color: var(--gold); letter-spacing: 3px; margin-bottom: 1.25rem; }
.service-showcase-content h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.service-showcase-content p { color: var(--text-muted); }
.service-showcase-content ul { list-style: none; margin-top: 1.25rem; }
.service-showcase-content ul li { padding: .45rem 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: .88rem; display: flex; align-items: center; gap: .6rem; }
.service-showcase-content ul li::before { content: '—'; color: var(--gold); }

/* === FOUNDER === */
.founder-section { display: grid; grid-template-columns: 380px 1fr; gap: 4rem; align-items: start; }
.founder-portrait { position: relative; }
.founder-portrait-img { width: 100%; height: 500px; object-fit: cover; background: linear-gradient(135deg,var(--surface),var(--deep)); display: flex; align-items: center; justify-content: center; }
.founder-portrait-frame { position: absolute; inset: -10px; border: 1px solid var(--gold); opacity: .15; pointer-events: none; }
.founder-details h2 { font-size: 2.3rem; margin-bottom: .25rem; }
.founder-role { font-family: var(--mono); font-size: .72rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.75rem; display: block; }
.founder-details p { color: var(--text-muted); }
.founder-details .signature { font-family: var(--heading); font-size: 1.6rem; font-style: italic; color: var(--gold); margin-top: 1.5rem; opacity: .5; }

/* === TEAM GRID === */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-top: 3rem; }
.team-card { background: rgba(20,20,30,.45); backdrop-filter: blur(14px) saturate(140%); border: 1px solid var(--border); padding: 2.25rem 2rem; position: relative; transition: border-color .5s var(--ease), box-shadow .5s var(--ease), transform .35s var(--ease-out); overflow: hidden; }
.team-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); transform: scaleX(0); transition: transform .6s var(--ease); }
.team-card:hover { border-color: var(--border-hover); box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(196,162,78,.06); }
.team-card:hover::before { transform: scaleX(1); }
.team-card-initials { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--heading); font-size: 1.35rem; color: var(--gold); letter-spacing: .05em; margin-bottom: 1.5rem; background: linear-gradient(135deg,var(--surface),var(--deep)); }
.team-card h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.team-card-role { font-family: var(--mono); font-size: .64rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.1rem; display: block; }
.team-card p { color: var(--text-muted); font-size: .88rem; margin: 0; }

/* === PARTNERS === */
.partners-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; margin-top: 3rem; }
.partner-card { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: center; background: rgba(20,20,30,.45); backdrop-filter: blur(14px) saturate(140%); border: 1px solid var(--border); padding: 3rem; position: relative; transition: border-color .5s var(--ease), box-shadow .5s var(--ease); }
.partner-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); transform: scaleX(0); transition: transform .6s var(--ease); }
.partner-card:hover { border-color: var(--border-hover); box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(196,162,78,.06); }
.partner-card:hover::before { transform: scaleX(1); }
.partner-logo { display: flex; align-items: center; justify-content: center; padding: 1rem; }
.partner-logo img { max-width: 100%; height: auto; }
.partner-content h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.partner-content p { color: var(--text-muted); font-size: .92rem; }
.partner-link { font-family: var(--mono); font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.partner-link::after { content: '→'; transition: transform .4s var(--ease); }
.partner-link:hover::after { transform: translateX(5px); }
@media (max-width: 1024px) {
  .partner-card { grid-template-columns: 1fr; text-align: center; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* === TEXT BLOCK (no image pages) === */
.text-block { max-width: 800px; }
.text-block p { color: var(--text-muted); font-size: 1rem; }
.text-block h3 { margin-top: 2rem; }
.text-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.text-columns p { color: var(--text-muted); }

/* === CTA === */
.cta-section { position: relative; padding: 7rem 0; text-align: center; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center,var(--gold-subtle) 0%,transparent 60%); pointer-events: none; }
.cta-section h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); max-width: 460px; margin: 0 auto 2.5rem; }

/* === FOOTER === */
.footer { position: relative; background: var(--deep); background-image: radial-gradient(ellipse 700px 300px at 50% 0%, rgba(196,162,78,.05), transparent 70%); border-top: none; padding: 4.5rem 0 0; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .4; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer-brand p { color: var(--text-dim); font-size: .88rem; margin-top: 1.25rem; max-width: 280px; }
.footer h4 { font-family: var(--mono); font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; font-weight: 400; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: var(--text-dim); font-size: .88rem; transition: all .3s var(--ease); display: inline-block; }
.footer-links a:hover { color: var(--white); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .78rem; color: var(--text-dim); margin: 0; }
.footer-disclaimer { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.footer-disclaimer p { font-size: .72rem; line-height: 1.7; color: var(--text-dim); max-width: 900px; margin: 0; }
.footer-legal-link { margin-top: .6rem; display: inline-block; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.footer-legal-link:hover { color: var(--gold); }

/* === LEGAL === */
.page-header { padding: 9rem 0 3.5rem; position: relative; }
.page-header .label { margin-bottom: .8rem; }
.page-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--border); }

/* ===== FAQ Accordion ===== */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 0; font-family: var(--heading); font-size: 1.2rem;
  color: var(--white); font-weight: 500; text-align: left;
  transition: color .3s var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: '+'; font-family: var(--mono); font-size: 1.4rem; color: var(--gold);
  flex-shrink: 0; margin-left: 1.5rem; transition: transform .3s var(--ease);
}
.faq-item.open .faq-question::after { content: '\2212'; transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease);
  padding: 0 0;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 0 1.6rem 0; }
.faq-answer p { color: var(--text-muted); font-size: .95rem; line-height: 1.85; margin: 0; }
.legal-body { max-width: 760px; margin: 0 auto; padding: 3.5rem 2.5rem 5rem; }
.legal-body h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: .85rem; padding-top: 1.75rem; border-top: 1px solid var(--border); }
.legal-body h2:first-of-type { border-top: none; padding-top: 0; }
.legal-body h3 { font-size: 1.1rem; margin-top: 1.25rem; margin-bottom: .4rem; }
.legal-body p, .legal-body li { color: var(--text-muted); font-size: .92rem; line-height: 1.85; }
.legal-body ul { list-style: none; margin-bottom: 1.1rem; padding-left: 0; }
.legal-body ul li { padding: .35rem 0 .35rem 1.5rem; position: relative; }
.legal-body ul li::before { content: ''; position: absolute; left: 0; top: .9rem; width: 6px; height: 1px; background: var(--gold); }

/* === CONTACT === */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group label { display: block; font-family: var(--mono); font-size: .62rem; font-weight: 400; color: var(--text-muted); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: 2px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .9rem 1.1rem; background: transparent; border: 1px solid var(--border); color: var(--white); font-family: var(--body); font-size: .92rem; transition: all .4s var(--ease); appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-subtle); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--surface); color: var(--text); }
.contact-sidebar { padding-left: 2rem; border-left: 1px solid var(--border); }
.contact-block { margin-bottom: 2.25rem; }
.contact-block h4 { font-family: var(--mono); font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.contact-block p { color: var(--text-muted); font-size: .92rem; margin-bottom: .2rem; }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity .7s var(--ease), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-35px); transition: opacity .7s var(--ease), transform .7s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(35px); transition: opacity .7s var(--ease), transform .7s var(--ease-out); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.96); transition: opacity .7s var(--ease), transform .7s var(--ease-out); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .12s; }
.stagger > *:nth-child(3) { transition-delay: .24s; }
.stagger > *:nth-child(4) { transition-delay: .36s; }

/* Typewriter for hero */
.typewriter { overflow: hidden; border-right: 2px solid var(--gold); white-space: nowrap; animation: typing 2.5s steps(30) 1s forwards, blinkCursor .6s step-end infinite; width: 0; display: inline-block; vertical-align: bottom; }
.typewriter.done { border-right-color: transparent; }
@keyframes typing { from { width: 0; } to { width: 100%; } }
@keyframes blinkCursor { 50% { border-color: transparent; } }

/* Floating elements */
.float { animation: floatUp 6s ease-in-out infinite; }
.float-delay { animation: floatUp 6s ease-in-out 2s infinite; }
@keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); z-index: 1100; box-shadow: 0 0 12px var(--gold-glow); transition: width .1s linear; }

/* Page transition overlay */
.page-transition { position: fixed; inset: 0; background: var(--midnight); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity .38s var(--ease); }
.page-transition.active { opacity: 1; pointer-events: all; }

/* Text reveal for headings */
h1[data-i18n], h2[data-i18n] { display: inline-block; }
.reveal h2, .section-header h2 { overflow: hidden; }

/* Line decorations */
.deco { position: absolute; pointer-events: none; }
.deco-corner { width: 60px; height: 60px; border: 1px solid var(--gold); opacity: .08; }
.deco-corner-tl { top: 2rem; left: 2rem; border-right: none; border-bottom: none; }
.deco-corner-br { bottom: 2rem; right: 2rem; border-left: none; border-top: none; }

/* === COOKIE BANNER === */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1500; background: rgba(8,8,13,.95); backdrop-filter: blur(16px) saturate(160%); border-top: 1px solid var(--gold); box-shadow: 0 -10px 40px rgba(0,0,0,.4); transform: translateY(110%); transition: transform .6s var(--ease-out); }
.cookie-banner.visible { transform: translateY(0); animation: cookieSlideUp .6s var(--ease-out); }
.cookie-banner.hiding { transform: translateY(110%); transition: transform .5s var(--ease); }
@keyframes cookieSlideUp { from { transform: translateY(110%); } to { transform: translateY(0); } }
.cookie-banner-inner { max-width: var(--max-w); margin: 0 auto; padding: 1.5rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cookie-banner-text { color: var(--text); font-size: .88rem; margin: 0; max-width: 640px; display: inline; }
.cookie-banner-link { font-size: .82rem; text-decoration: underline; white-space: nowrap; }
.cookie-banner-actions { display: flex; gap: .85rem; flex-shrink: 0; margin-left: auto; }
.cookie-banner .btn { padding: .7rem 1.6rem; font-size: .66rem; }
@media (max-width: 768px) {
  .cookie-banner-inner { padding: 1.25rem 1.25rem; flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; margin-left: 0; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}

/* === VIDEO / NARRATION EXPERIENCE === */
.video-section { padding: 6rem 0; position: relative; }

.video-container { position: relative; max-width: 960px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; }
.mira-video { display: block; width: 100%; height: 100%; border-radius: 14px; border: 1px solid var(--border); box-shadow: 0 20px 70px rgba(0,0,0,.4), 0 0 60px rgba(196,162,78,.08); background: var(--deep); outline: none; transition: border-color .5s var(--ease), box-shadow .5s var(--ease); }
.mira-video:hover, .mira-video:focus-visible { border-color: var(--gold); box-shadow: 0 20px 70px rgba(0,0,0,.4), 0 0 60px rgba(196,162,78,.15); }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .nav-links li a { padding: .5rem .5rem; font-size: .66rem; letter-spacing: .5px; }
  .nav-cta { padding: .5rem .9rem !important; margin-left: .3rem; }
  .lang-switch-btn { padding: .35rem .6rem; font-size: .6rem; }
  .logo img { height: 32px; }
}
@media (max-width: 1024px) {
  .split, .service-showcase, .founder-section, .contact-layout, .text-columns { grid-template-columns: 1fr; }
  .split { gap: 3rem; }
  .split.reverse { direction: ltr; }
  .service-showcase:nth-child(even) { direction: ltr; }
  .stats-bar, .process-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-sidebar { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(8,8,13,.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-links li a { font-size: 1.1rem; }
  .nav-cta { margin-left: 0 !important; }
  .lang-switch { position: absolute; top: 1.5rem; right: 4rem; }
  .section { padding: 4.5rem 0; }
  .container { padding: 0 1.25rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .founder-portrait-img { height: 320px; }
  .hero h1 { font-size: 2.2rem; }
  .split-image-wrapper img { height: 320px; }
  .video-container { aspect-ratio: 4/5; border-radius: 10px; }
}
