/* ==========================================================================
   222iswithyou - CSS Structure (Cosmic Luxury)
   ========================================================================== */

/* --- 1. CSS VARIABLES & RESET --- */
:root {
  /* Colors */
  --c-noir: #0D1B2A;
  --c-midnight: #34495E;
  --c-ocean: #1B3B6F;
  --c-gold: #d4af37;
  --c-gold-light: #f1df96;
  --c-gold-dark: #8b7122;
  --c-glow-gold: rgba(212, 175, 55, 0.4);
  --c-glow-gold-strong: rgba(212, 175, 55, 0.8);
  --c-glow-blue: rgba(27, 59, 111, 0.6);
  --c-glass: rgba(52, 73, 94, 0.15);
  
  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing */
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Radii & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: auto;
  font-size: 16px;
  background-color: var(--c-noir);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--c-gold);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background: var(--c-noir);
}

/* --- GRAIN OVERLAY --- */
.grain-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9900;
  opacity: 0.04;
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* --- SCROLL PROGRESS --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--c-gold);
  width: 0%;
  z-index: 9990;
}

/* --- 2. TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6, .brand-logo, .badge {
  font-family: var(--font-display);
  font-weight: 500; /* Use weight contrast */
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  color: var(--c-gold);
  letter-spacing: 0.05em; /* Increase letter spacing slightly for luxury feel */
}

.display-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--c-gold);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  opacity: 0.8;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--c-gold-dark);
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-glow { text-shadow: 0 0 20px var(--c-glow-gold); }
.glow-text-subtle { text-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }

.glow-text {
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px var(--c-glow-gold);
  font-weight: 700;
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--c-gold-dark);
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(4px);
  margin-bottom: var(--space-md);
  color: var(--c-gold);
}

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* --- 3. LAYOUT & CONTAINERS --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container-sm { max-width: 800px; }

.section { padding: var(--space-xl) 0; position: relative; z-index: 10; }
.min-vh-100 { min-height: 100vh; }
.flex-center { display: flex; align-items: center; justify-content: center; flex-direction: column; }
.flex-between { display: flex; justify-content: space-between; }
.align-center { align-items: center; }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.grid {
  display: grid;
  gap: var(--space-md);
}

/* --- 4. COMPONENTS & EFFECTS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  z-index: 1;
  position: relative;
  overflow: hidden;
  gap: 0.5rem;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.btn-primary {
  background: rgba(13, 27, 42, 0.4);
  backdrop-filter: blur(8px);
  color: var(--c-gold);
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1), inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.btn-primary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--c-gold);
  color: var(--c-gold-light);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), inset 0 0 15px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--c-gold-light);
  color: var(--c-gold-light);
}

.sm-btn { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn-large { padding: 1.2rem 2.5rem; font-size: 1.1rem; }
.w-full { width: 100%; margin-bottom: 1rem; }

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

.inline-cta {
  font-family: var(--font-display);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 0.2rem;
}

.inline-cta:hover {
  border-color: var(--c-gold);
  gap: 0.8rem;
}

.glass-panel {
  background: var(--c-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hover-glow:hover {
  background: rgba(52, 73, 94, 0.25);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(27, 59, 111, 0.3);
}

/* --- 5. BACKGROUND (Cosmic Elements) --- */
.cosmic-bg {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, #112236 0%, var(--c-noir) 100%);
  overflow: hidden;
}

.energy-field {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, var(--c-glow-blue) 0%, transparent 60%);
  opacity: 0.4;
  filter: blur(60px);
  animation: pulse-energy 10s infinite alternate;
}

@keyframes pulse-energy {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

/* Simple CSS Stars */
.stars, .stars2, .stars3 {
  position: absolute; width: 100%; height: 100%;
  background: transparent;
  opacity: 0.5;
}

.huge-glow {
  position: absolute;
  bottom: -200px;
  left: 50%; transform: translateX(-50%);
  width: 100vw; height: 600px;
  background: radial-gradient(ellipse at bottom, var(--c-ocean) 0%, transparent 70%);
  z-index: -1;
  opacity: 0.5;
  filter: blur(100px);
}

/* --- 6. NAVIGATION --- */
.glass-nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  padding: 1rem 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0) 100%);
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.glass-nav.scrolled {
  background: rgba(13, 27, 42, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links { display: flex; gap: 2rem; }
  .nav-links a { font-size: 0.9rem; font-weight: 500; opacity: 0.7; }
  .nav-links a:hover { opacity: 1; text-shadow: 0 0 10px var(--c-moonlight); }
}

.brand-logo { font-size: 1.4rem; letter-spacing: -0.05em; }

/* --- 7. HERO --- */
.hero { 
  position: relative; 
  padding-top: calc(100px + 10vh); 
  padding-bottom: 10vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  overflow: hidden;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0.5;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-15px) translateX(-50%); }
  60% { transform: translateY(-7px) translateX(-50%); }
}

/* --- 8. WHO THIS IS FOR --- */
.layout-who {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .layout-who { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .layout-who { grid-template-columns: repeat(4, 1fr); }
}
.icon-lg { font-size: 2.5rem; margin-bottom: 1rem; color: var(--c-moonlight); opacity: 0.8; }
.icon-xl { font-size: 3.5rem; margin-bottom: 1.5rem; color: var(--c-moonlight); }

/* --- 9. THE PROBLEM --- */
.problem-section {
  background: linear-gradient(180deg, transparent 0%, rgba(27, 59, 111, 0.1) 50%, transparent 100%);
}

.split-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 992px) {
  .split-layout { flex-direction: row; }
  .visual-contrast, .content-block { flex: 1; }
  .pl-lg { padding-left: 4rem; }
  .pr-lg { padding-right: 4rem; }
}

.visual-contrast {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.chaos-box, .aligned-box {
  width: 150px; height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em;
  border-radius: var(--radius-md);
}

.chaos-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  transform: rotate(-10deg);
  filter: blur(1px);
}

.aligned-box {
  background: rgba(225, 226, 225, 0.1);
  border: 1px solid rgba(225, 226, 225, 0.5);
  box-shadow: 0 0 30px var(--c-glow-blue);
}

.vs-divider {
  font-size: 1.2rem; font-weight: bold; color: var(--c-midnight);
}

.statement { font-family: var(--font-body); font-weight: 300; font-size: 1.5rem; line-height: 1.4; color: rgba(225, 226, 225, 0.7); }
.statement .highlight { color: var(--c-moonlight); font-weight: 500; text-shadow: 0 0 15px rgba(225, 226, 225, 0.3); }

/* --- 10. THE SOLUTION --- */
.layout-solution.grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.layout-solution.grid::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .layout-solution.grid { 
      display: grid;
      grid-template-columns: repeat(2, 1fr); 
      overflow: visible;
  }
}

.solution-pillar {
  flex: 0 0 85%;
  scroll-snap-align: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.solution-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-moonlight), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.solution-pillar:hover::before { opacity: 0.5; }
.solution-pillar:hover { background: rgba(52, 73, 94, 0.3); }

/* --- 11. CORE VALUES — Cinematic Layout --- */
.values-header { margin-bottom: 0; }

.values-cinematic {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.value-card-full {
  position: relative;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3rem;
  align-items: center;
  cursor: default;
  overflow: hidden;
}

/* Left column: ghost number stacked above icon */
.vcf-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.vcf-ghost {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.15);
  user-select: none;
  transition: -webkit-text-stroke 0.5s ease;
}

.value-card-full:hover .vcf-ghost {
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.45);
}

.vcf-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: all 0.5s ease;
  background: rgba(212, 175, 55, 0.04);
}

.value-card-full:hover .vcf-icon {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  transform: scale(1.1) rotate(5deg);
}

/* Right column: title + desc */
.vcf-right { flex: 1; }

.vcf-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--c-gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
  transition: text-shadow 0.4s ease;
}

.value-card-full:hover .vcf-title {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.vcf-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(225, 226, 225, 0.5);
  font-weight: 300;
  transition: color 0.4s ease;
  max-width: 600px;
}

.value-card-full:hover .vcf-desc {
  color: rgba(225, 226, 225, 0.85);
}

/* Bottom separator line that draws on scroll */
.vcf-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card-full:hover .vcf-line,
.value-card-full.in-view .vcf-line {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .value-card-full { grid-template-columns: 100px 1fr; gap: 1.5rem; }
  .vcf-ghost { font-size: 2.5rem; }
  .vcf-title { font-size: 1.4rem; }
  .vcf-icon { width: 52px; height: 52px; font-size: 1.5rem; }
}

.muted-text { color: var(--c-midnight); text-transform: uppercase; letter-spacing: 0.1em;}


/* --- 12. HOW WE WORK (TIMELINE) --- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; width: 1px; height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  opacity: 0; /* for gsap */
  transform: translateY(20px);
}

.timeline-dot {
  width: 50px; height: 50px;
  background: var(--c-noir);
  border: 1px solid var(--c-moonlight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(225, 226, 225, 0.1);
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
}

@media (max-width: 767px) {
  .timeline::before { left: 25px; }
  .timeline-item { gap: 1rem; }
  .timeline-dot { width: 40px; height: 40px; font-size: 1rem; margin-top: 5px; margin-left: 5px; }
}

/* --- 13. OUTCOMES --- */
.dark-section {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sticky-content {
  position: sticky;
  top: 100px;
}

.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.outcomes-list li {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 1; /* GSAP sets it but just making sure default is 1 initially for non-JS/post-anim */
  transition: text-shadow 0.3s ease;
}

.outcomes-list li:hover { text-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
.outcomes-list li i { color: var(--c-gold); }

/* --- 14. EXPERIENCE / TESTIMONIALS --- */
.testimonial { margin-bottom: 2rem; }
.quote { font-size: clamp(1.2rem, 2vw, 1.6rem); font-family: var(--font-display); font-weight: 300; font-style: italic; margin-bottom: 1rem; }
.author { font-size: 1rem; color: var(--c-gold-dark); text-transform: uppercase; letter-spacing: 0.1em; }

/* --- 15. CTA / CONTACT --- */
.exclusive-badge {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  background: var(--c-midnight);
  color: var(--c-gold);
  margin-bottom: var(--space-md);
}

.final-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* --- 16. FOOTER --- */
.site-footer {
  padding: 4rem 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  background: rgba(5, 12, 20, 0.95);
  font-size: 0.9rem;
  position: relative;
  z-index: 10;
}

/* Three-column grid */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-large {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.45);
  margin-bottom: 1.8rem;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--c-gold);
  transition: all 0.35s ease;
  background: rgba(212, 175, 55, 0.04);
}

.footer-social-icon:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--c-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
}

/* Sitemap columns */
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.5);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav li a {
  font-size: 0.9rem;
  color: rgba(225, 226, 225, 0.5);
  font-weight: 300;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-nav li a:hover {
  color: var(--c-gold-light);
  padding-left: 6px;
}

/* Copyright bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(225, 226, 225, 0.3);
  letter-spacing: 0.05em;
}

.footer-copy-sub {
  font-size: 0.75rem;
  color: rgba(212, 175, 55, 0.3);
  letter-spacing: 0.08em;
  font-style: italic;
}

@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .mobile-col { flex-direction: column; gap: 1rem; text-align: center; }
}


/* ==========================================================================
   COSMIC LUXURY EXTENSIONS 
   ========================================================================== */

/* Launch Screen */
#launch-screen {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#launch-canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Nebula and Dust */
.nebula-clouds {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 80% 20%, rgba(52, 73, 94, 0.4) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(27, 59, 111, 0.4) 0%, transparent 50%);
  filter: blur(80px);
  opacity: 0.5;
}

.cosmic-dust {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(var(--c-gold-dark) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.1;
  animation: drift 100s linear infinite;
}

@keyframes drift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-80px); }
}

/* Hero Enhancements */
.hero-cosmic-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw; height: 60vw;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  z-index: 0;
  animation: rotateRings 60s linear infinite;
}

.morphing-mesh {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw; height: 70vw;
  max-width: 100%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, rgba(27, 59, 111, 0.1) 40%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  animation: morphMesh 20s ease-in-out infinite alternate;
}

@keyframes morphMesh {
  0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.5; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  100% { transform: translate(-40%, -40%) scale(1.2) rotate(45deg); opacity: 0.8; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.breathing-text {
  animation: textBreathe 4s ease-in-out infinite alternate;
}

@keyframes textBreathe {
  0% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.2); opacity: 0.9; }
  100% { text-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.2); opacity: 1; }
}

@keyframes rotateRings {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.1); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

.hero-content { z-index: 2; position: relative; }

.liquid-glow {
  transition: all 0.4s ease;
}
.liquid-glow:hover {
  background: var(--c-gold-light);
  box-shadow: 0 0 30px var(--c-glow-gold-strong), inset 0 0 10px rgba(255, 255, 255, 0.5);
  transform: translateY(-3px) scale(1.02);
}

.glow-keyword {
  color: var(--c-gold);
  text-shadow: 0 0 15px var(--c-glow-gold-strong);
  font-weight: 700;
}

/* Services */
.gold-line-art {
  color: var(--c-gold);
  opacity: 0.9;
  filter: drop-shadow(0 0 5px var(--c-glow-gold));
}

.radial-glow {
  border: 1px solid rgba(212, 175, 55, 0.1);
}
.radial-glow:hover {
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(52, 73, 94, 0.2) 100%);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

/* Split Visual Section */
.split-visual {
  display: flex;
  height: 400px;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.visual-left, .visual-right {
  flex: 1;
  height: 100%;
  position: relative;
}

.visual-blend {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.digital-particles {
  position: absolute;
  right: 0; top: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(27, 59, 111, 0.8));
  border-right: 1px solid var(--c-ocean);
}

.human-glow {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

/* --- 17. FAQ SECTION --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  transition: var(--transition-smooth);
  cursor: pointer;
}

.faq-item:hover {
  background: rgba(52, 73, 94, 0.25);
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-item.active {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.faq-question h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--c-gold-light);
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-question i {
  color: var(--c-gold);
  font-size: 1.2rem;
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS 
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --space-lg: 2.5rem;
    --space-xl: 4rem;
  }
  
  /* Prevent horizontal overflow strictly */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Disable interactions */
  html, a, button, .interactive, .sound-toggle { cursor: auto !important; }
  
  /* Hide nav CTA to prevent crowding header on mobile */
  .nav-cta { display: none !important; }
  
  /* Hero Typography & Rings */
  .display-title { font-size: clamp(2rem, 10vw, 2.8rem); line-height: 1.2; word-wrap: break-word; }
  .hero-cosmic-rings { width: 150vw; height: 150vw; }
  .subtitle { font-size: 1rem; padding: 0 10px; }
  
  /* Stack CTA buttons */
  .cta-group {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 0 20px;
  }
  .btn { width: 100%; }

  /* Split Connection Section Stack */
  .split-visual {
    height: 350px;
    flex-direction: column;
    overflow: hidden;
  }
  .visual-left, .visual-right {
    width: 100%;
  }
  .digital-particles {
    background: linear-gradient(180deg, transparent, rgba(27, 59, 111, 0.8));
    border-right: none;
    border-bottom: 1px solid var(--c-ocean);
  }
  .human-glow {
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  }
  .visual-blend {
    width: 300px; height: 300px;
  }
  
  /* Reduced Motion for Performance */
  .nebula-clouds { display: none; } /* heavy on gpu */
}
