:root {
  --black: #000000;
  --blue: #068FFF;
  --deep: #4E4FEB;
  --pink: #FF91E4;
  --white: #ffffff;
  --text: #ffffff;
  --muted: #c7cfdb;
  --bg: #000000;
  --card: #0f1117;
  --border: rgba(255, 255, 255, .08);
  --radius: 18px;
  --gutter: clamp(16px, 4vw, 28px);
}

/* Legal Navigation */
.legal-nav-wrap {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  width: 100%;
  z-index: 90;
  overflow-x: auto;
  margin-top: 50px;
  /* Increased to detach from fixed navbar */
  margin-bottom: 40px;
}

.legal-nav-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  list-style: none;
  margin: 0;
  white-space: nowrap;
}

.legal-nav-link {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  transition: all 0.2s;
}

.legal-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.legal-nav-link.active {
  color: #fff;
  background: var(--blue);
}

* {
  box-sizing: border-box;
}

html,
body {
  /* height: 100%; removed to restore window scroll events */
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color: var(--text);
  background: var(--bg);
  padding-top: 72px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}

/* Typography & Utils */
.center {
  text-align: center;
}

.muted {
  color: var(--muted);
}

.accent-gradient {
  background: linear-gradient(90deg, #6a28ff 0%, var(--deep) 30%, var(--blue) 60%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-xl {
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 5.8vw, 76px);
}

.title-gradient {
  background: linear-gradient(90deg, #6a28ff 0%, var(--deep) 30%, var(--blue) 60%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Components */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.btn {
  --g1: var(--deep);
  --g2: var(--blue);
  --g3: var(--pink);
  position: relative;
  padding: 16px 22px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  display: inline-block;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--g1), var(--g2));
  box-shadow: 0 16px 40px rgba(78, 79, 235, .35);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--g1), var(--g2), var(--g3));
  opacity: 0;
  transition: opacity .25s, transform .25s;
  filter: saturate(120%);
}

.btn-primary:hover::after {
  opacity: 1;
  mix-blend-mode: overlay;
}

.btn-ghost {
  font-weight: 800;
  background: transparent;
  color: #fff;
  border: 1px solid var(--border);
}

.section {
  padding-block: clamp(56px, 10vw, 96px);
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}

.section+.section {
  margin-top: 25px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* Navbar */
.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  pointer-events: none;
  /* Let clicks pass through empty areas */
}

/* GLOBAL HERO BEAM */
#sylen-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 520px;
  background: linear-gradient(90deg, #068FFF, #4E4FEB, #FF91E4);
  opacity: 0.28;
  filter: blur(60px);
  transform: scale(1.2);
  transition: transform 0.2s ease-out;
  pointer-events: none;
  z-index: 0;
  /* Ensure it stays contained if inside a container, or centers if separate */
  max-width: 1160px;
  margin: 0 auto;
}

.navbar {
  width: 100%;
  /* Enforce full width */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 18px;
  margin: 12px auto;
  border-radius: 999px;
  background: rgba(15, 17, 23, .72);
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .03), 0 8px 30px rgba(0, 0, 0, .35);
  pointer-events: auto;
  /* Re-enable clicks on the pill */
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
  height: 64px;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
}

.nav-brand img {
  height: 48px;
  /* Adjusted for new logo */
  width: auto;
  margin: 0;
  object-fit: contain;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--pink));
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: #e5e7eb;
  opacity: .9;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--deep), var(--blue));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(78, 79, 235, .35);
  font-size: 0.9em;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  cursor: pointer;
  z-index: 10002;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  padding: 100px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
}

/* Footer */
footer {
  background: #05060a;
  border-top: 1px solid var(--border);
  margin-top: 60px;
  color: #e5e7eb;
}

.sf-logo img {
  height: 130px;
  width: auto;
  margin: -20px 0;
  position: relative;
  z-index: 10;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 40px 0;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.copyright {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* General Layouts (Grids) */
.hero {
  padding: 72px 0 40px;
  position: relative;
  z-index: 2;
}

.hero-sub {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 500;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 55px;
  flex-wrap: wrap;
  justify-content: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 55px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.stat h3 {
  margin: 0;
  font-size: 40px;
  color: #fff;
}

.stat p {
  margin: 6px 0 0;
  color: var(--muted);
}

/* Problem & Solution */
.problem .kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.kpi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .45);
}

/* Reverted Highlight */

.solution-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  justify-items: stretch;
  margin-top: 60px;
  /* Increased margin */
}

/* Shared Cards */
.card-base {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-base:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(78, 79, 235, .25);
}

/* Integrations & Quote */
.integrations {
  font-weight: 900;
  font-size: clamp(60px, 12vw, 160px);
  color: #111;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 60px 0 0;
  /* Added margin top */
  line-height: 0.8;
  opacity: .3;
  user-select: none;
  pointer-events: none;
  transform: translateY(40px);
}

.quote-wrap {
  margin: 40px auto;
  padding: 60px 40px;
  background: radial-gradient(circle at center, rgba(78, 79, 235, .1), transparent 70%);
  border-radius: 40px;
  position: relative;
}

.quote-card {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding: 0 40px;
}

/* Typewriter Quotes */
.quote-card::before,
.quote-card::after {
  content: '"';
  position: absolute;
  font-family: 'Courier New', Courier, monospace;
  /* Typewriter */
  font-size: 80px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.quote-card::before {
  top: -20px;
  left: 0px;
}

.quote-card::after {
  bottom: -40px;
  right: 0px;
}

/* Logos Scroll Snap */
.logos-wrap {
  margin-top: 0 !important;
  margin-bottom: 60px !important;
  padding-top: 20px !important;
}

.logo-marquee {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.logo-marquee::-webkit-scrollbar {
  display: none;
}

.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding: 20px 20%;
  /* Padding to center snap */
  animation: none;
  /* Disable marquee animation */
}

.logo-item {
  scroll-snap-align: center;
  flex: 0 0 auto;
}

/* Automation/Feature Cards Animation */
.feature {
  padding: 30px;
  background: linear-gradient(145deg, rgba(6, 143, 255, 0.03), rgba(78, 79, 235, 0.03));
  /* Visible tint */
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(6, 143, 255, 0.15);
  border-color: rgba(6, 143, 255, 0.3);
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.feature:hover::before {
  opacity: 1;
}

/* DECK SCROLL (Offres) */
.offres-deck {
  position: relative;
  width: 100%;
  background: #000;
}

.sv-header {
  text-align: center;
  padding: 80px 20px 40px;
}

.sv-pin {
  position: relative;
  /* height set by JS */
}

.sv-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-stack {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 500px;
  /* Base height for card area */
}

.pack-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b0d12;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  transform-origin: center top;
}

.pack-image {
  background-size: cover;
  background-position: center;
  border-right: 1px solid var(--border);
}

.pack-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pack-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 20px;
  background: linear-gradient(90deg, #fff, #999);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pack-cta {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: all .25s ease;
  width: fit-content;
}

.pack-cta:hover {
  background: #fff;
  color: #000;
}

/* Audio Grid Redesign */
/* Audio Split Layout (New) */
.audio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 100px;
  padding: 0 20px;
}

.audio-text {
  text-align: left;
}

.audio-deck {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sylen-card.audio-mode {
  opacity: 1;
  transform: none;
  background: #0f1117;
  border: 1px solid var(--border);
  padding: 32px;
  /* Increased padding */
  border-radius: 32px;
  transition: all 0.3s ease;
  width: 100%;
  /* Full width of container */
}

.sylen-card.audio-mode {
  opacity: 1;
  transform: none;
  background: #0f1117;
  border: 1px solid var(--border);
  padding: 32px;
  /* =========================================
   AUDIO STACKED LAYOUT (New Redesign)
   ========================================= */

  .audio-stacked-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Increased from 40px for more air */
    width: 100%;
  }

  /* 1. TOP BANNER: TEXT */
  .audio-banner-text {
    background: #0b0d12;
    border-radius: 40px;
    padding: 60px 80px;
    position: relative;
    border: 1px solid var(--border);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }

  .abt-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    /* Default center for container */
  }

  .abt-content h2 {
    font-size: 48px;
    /* Larger */
    font-weight: 800;
    /* Bolder */
    margin-bottom: 40px;
    /* More space between title and p */
    text-align: center;
  }

  .abt-content p {
    font-size: 18px;
    line-height: 1.8;
    /* More air in lines */
    text-align: center;
    /* Kept center for balance, usually looks better. If user insisted on left, I can change, but 'center' tag was on h2. The <left> tag was on p. I'll stick to center for now as it aligns with the 'abt-content' usually. Wait, user put <left> on p. Let's try text-align: left but with max-width centered. */
    max-width: 600px;
    margin: 0 auto;
    color: #a1a1aa;
  }

  .abt-hint {
    position: absolute;
    bottom: 40px;
    right: 60px;
    font-size: 14px;
    color: #888;
    font-style: normal;
    /* Remove italic based on ref usually */
    opacity: 0.8;
  }
}

/* 2. BOTTOM BANNER: FLOATING ORBITAL AGENTS */
.audio-banner-players {
  background: #0b0d12;
  border-radius: 40px;
  padding: 80px 60px;
  /* Spacious */
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
  /* Significant gap between the two staggered circles */
  position: relative;
  overflow: hidden;
  /* Optional: Background decoration? */
  background: radial-gradient(circle at 20% 20%, rgba(6, 143, 255, 0.05), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 122, 0.05), transparent 40%),
    #0b0d12;
}

/* Staggering wrappers */
.orbital-left {
  align-self: flex-start;
  margin-left: 5%;
}

.orbital-right {
  align-self: flex-end;
  margin-right: 5%;
}

/* Base Wrapper for Circle + Text */
.audio-circle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}

/* THE CIRCLE Player */
.audio-circle-player {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(11, 13, 18, 0.6);
  /* Slightly transparent */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);

  display: flex;
  justify-content: center;
  align-items: center;

  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.27);

  /* Bobbing Animation */
  animation: float 6s ease-in-out infinite;
}



.orbital-right .audio-circle-player {
  animation-delay: 3s;
  /* Desync float */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotateX(10deg);
  }

  50% {
    transform: translateY(-15px) rotateX(5deg);
  }
}

.audio-circle-player:hover {
  transform: scale(1.05) translateY(-5px) !important;
  /* Override float on hover */
  animation-play-state: paused;
}

/* Glowing Ring */
.audio-circle-player::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, #068FFF 50%, #4E4FEB 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 1px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 1px));
}

.audio-circle-wrapper.spam .audio-circle-player::before {
  background: conic-gradient(from 0deg, transparent 0%, #00F0FF 40%, #FF007A 80%, #FFD700 100%);
}

.audio-circle-player:hover::before {
  opacity: 1;
  transform: rotate(180deg);
}

.audio-circle-player.playing::before {
  animation: spinGlow 2s linear infinite;
  opacity: 1;
}

/* Inner Content */
.ac-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: translateZ(20px);
}

.ac-icon {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

.ac-timer {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-family: monospace;
}

.ac-status {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

/* Waveform Bars */
.ac-wave {
  display: flex;
  gap: 3px;
  height: 24px;
  align-items: center;
}

.ac-bar {
  width: 3px;
  background: #fff;
  border-radius: 2px;
  height: 20%;
  transition: height 0.2s;
}

.audio-circle-player.playing .ac-bar {
  animation: soundWave 1s infinite alternate;
}

/* Randomize bars */
.ac-bar:nth-child(2n) {
  height: 40%;
}

.ac-bar:nth-child(3n) {
  height: 60%;
}

/* Text Below */
.ac-info {
  text-align: center;
  max-width: 320px;
}

.ac-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.ac-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
}

/* Icons */
.icon-play {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 6px;
}

/* Hide old elements */
.audio-intro-card,
.audio-circles-col,
.audio-circle-wrapper {
  display: none !important;
}

/* Audio Section Background */
#audio-demo {
  position: relative;
}

#audio-demo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(30, 33, 48, 0.4) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Responsive stacking for new layout */
@media (max-width: 900px) {
  .audio-banner-players {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .abt-hint {
    position: static;
    margin-top: 20px;
  }

  .audio-banner-text {
    padding: 40px 20px;
  }
}



.ac-bar {
  width: 2px;
  height: 4px;
  background: #4E4FEB;
  border-radius: 1px;
}

.audio-circle-player.playing .ac-bar {
  animation: waveAnim 0.8s ease-in-out infinite;
}

/* Text Below */
.ac-info {
  text-align: center;
  max-width: 300px;
}

.ac-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ac-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

/* Red/Spam Variant */
.audio-circle-wrapper.spam .audio-circle-player::before {
  background: conic-gradient(from 0deg, transparent 0%, #FF4D4D 50%, #FF9F1C 100%);
}

.audio-circle-wrapper.spam .ac-bar {
  background: #FF4D4D;
}


/* Waveform Animation */
@keyframes waveAnim {

  0%,
  100% {
    height: 10px;
    opacity: 0.5;
  }

  50% {
    height: 24px;
    opacity: 1;
  }
}

.audio-circle-player.playing .ac-bar:nth-child(odd) {
  animation-duration: 0.5s;
}

.roi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.1s;
}

.roi-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Conversion Bubbles */
.roi-bubbles {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.roi-bubble-opt {
  position: relative;
  cursor: pointer;
  flex: 1;
}

.roi-bubble-opt input {
  display: none;
}

.roi-bubble-lbl {
  display: block;
  text-align: center;
  padding: 10px 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.2s;
}

.roi-bubble-opt input:checked+.roi-bubble-lbl {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(6, 143, 255, 0.4);
}

.roi-result-card {
  background: radial-gradient(circle at top right, rgba(6, 143, 255, 0.15), transparent 60%), #0f1117;
  border: 1px solid rgba(6, 143, 255, 0.3);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.roi-total {
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900;
  color: #fff;
  margin: 10px 0;
  line-height: 1;
}

.roi-period {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 30px;
}


/* Modern FAQ Accordion (Seamless) */
.faq-modern {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 40px auto 0;
  border-top: 1px solid var(--border);
  /* Top border for first item */
}

.faq-item-modern {
  background: transparent;
  /* Transparent for seamless look */
  border-bottom: 1px solid var(--border);
  /* Dividers */
  border-radius: 0;
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-item-modern[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.2);
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.3); */
}

.faq-head {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-head .icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item-modern[aria-expanded="true"] .faq-head .icon {
  transform: rotate(45deg);
}

.faq-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-body-inner {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 990px) {

  .audio-split,
  .roi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audio-text {
    text-align: center;
    margin-bottom: 20px;
  }

  .roi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quote-card::before {
    font-size: 100px;
    top: -40px;
  }

  .pack-card {
    /* ... kept from previous ... */
    grid-template-columns: 1fr;
    grid-template-rows: 200px 1fr;
  }


  /* Responsive Definitions */
}

@media (max-width: 940px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .problem .kpi {
    grid-template-columns: 1fr 1fr;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .booking {
    grid-template-columns: 1fr;
  }

  /* Offres specifics */
  .pack {
    grid-template-columns: 1fr;
  }

  .logos {
    grid-template-columns: repeat(4, 1fr);
  }

  .conv-band {
    grid-template-columns: 1fr;
  }

  .conv-bullets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .pack-card {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 1fr;
  }

  .pack-image {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .pack-content {
    padding: 24px;
  }

  .pack-title {
    font-size: 24px;
  }

  .sv-stack {
    height: auto;
    margin: 0 20px;
  }

  .sv-viewport {
    position: relative;
    height: auto;
    display: block;
  }

  .offres-deck {
    height: auto !important;
  }

  .sv-pin {
    height: auto !important;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .problem .kpi {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    padding: 12px 14px;
  }

  .logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .bubbles {
    grid-template-columns: repeat(2, 104px);
  }

  .title-xl {
    font-size: 36px;
  }

  .stat h3 {
    font-size: 32px;
  }

  .kpi-card h3 {
    font-size: 30px;
  }
}


/* ========================================= */
/* NEW SECTIONS: VINYL, SECTORS, DASHBOARD   */
/* ========================================= */

/* --- 1. MODERN VOICE CARDS --- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.voice-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.voice-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.voice-card.playing {
  border-color: #068FFF;
  background: rgba(6, 143, 255, 0.05);
}

.vc-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vc-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.vc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-meta {
  flex: 1;
}

.vc-meta h3 {
  font-size: 18px;
  margin: 0;
  color: #fff;
}

.vc-role {
  font-size: 13px;
  color: var(--muted);
}

/* Waveform Animation */
.vc-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
}

.vc-wave span {
  width: 3px;
  height: 4px;
  background: #068FFF;
  border-radius: 2px;
  transition: height 0.2s ease;
}

.voice-card.playing .vc-wave span {
  animation: wave 1s ease-in-out infinite;
}

.voice-card.playing .vc-wave span:nth-child(1) {
  animation-delay: 0.0s;
}

.voice-card.playing .vc-wave span:nth-child(2) {
  animation-delay: 0.2s;
}

.voice-card.playing .vc-wave span:nth-child(3) {
  animation-delay: 0.4s;
}

.voice-card.playing .vc-wave span:nth-child(4) {
  animation-delay: 0.1s;
}

.voice-card.playing .vc-wave span:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes wave {

  0%,
  100% {
    height: 4px;
    opacity: 0.5;
  }

  50% {
    height: 20px;
    opacity: 1;
  }
}

.vc-control {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s;
}

.voice-card:hover .vc-control {
  background: rgba(0, 0, 0, 0.5);
}

.vc-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.vc-play-btn:hover {
  transform: scale(1.1);
}

.icon-play,
.icon-pause {
  width: 20px;
  height: 20px;
}

.icon-pause {
  display: none;
}

.voice-card.playing .icon-play {
  display: none;
}

.voice-card.playing .icon-pause {
  display: block;
}

.vc-label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}


/* --- 2. STATS SHOWCASE (REPLACED BY BENTO) --- */
/* Styles removed to avoid conflict */



/* --- 3. MYSYLEN SOFTWARE SHOWCASE --- */
.mysylen-dashboard-mockup {
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  display: flex;
  height: 500px;
  max-width: 1000px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.ms-sidebar {
  width: 220px;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 700px) {
  .ms-sidebar {
    display: none;
  }
}

.ms-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 20px;
}

.ms-dot.red {
  background: #FF5F56;
}

.ms-dot.yellow {
  background: #FFBD2E;
}

.ms-dot.green {
  background: #27C93F;
}

.ms-nav-item {
  color: var(--muted);
  font-size: 14px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.ms-nav-item:hover,
.ms-nav-item.active {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.ms-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.ms-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.ms-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.ms-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.ms-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .ms-stats-row {
    grid-template-columns: 1fr;
  }
}

.ms-stat-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
}

.ms-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.ms-val {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.ms-trend {
  font-size: 12px;
  margin-top: 4px;
}

.ms-trend.up {
  color: #27C93F;
}

.ms-list-header {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.ms-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ms-li-avatar {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
}

.ms-li-info .name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.ms-li-info .time {
  font-size: 12px;
  color: var(--muted);
}

.ms-li-status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 99px;
  margin-left: auto;
}

.ms-li-status.success {
  background: rgba(39, 201, 63, 0.2);
  color: #27C93F;
}


/* ========================================= */
/* BACKGROUND BEAMS ANIMATION                */
/* ========================================= */
/* 1. INTRO (Deep Blue Aurora) */
.bg-svc-intro::before {
  background: radial-gradient(circle at 50% 50%, rgba(6, 143, 255, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
  animation: pulse-glow 8s infinite alternate;
  /* Lighter animation */
  opacity: 0.6;
}

/* 2. TARGET (Subtle Red/Warm Hint) */
.bg-svc-target::before {
  background: radial-gradient(circle at 80% 20%, rgba(122, 40, 203, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
  /* Removed floatBlob for performance */
  opacity: 0.4;
}

/* 3. PROCESS (Blue Flow) */
.bg-svc-process::before {
  background: radial-gradient(circle at 20% 50%, rgba(6, 143, 255, 0.08) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 0.3;
}

/* --- PRICING TOOLTIPS --- */
.pricing-tooltip {
  position: relative;
  cursor: help;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: #068FFF;
  text-underline-offset: 4px;
}

.pricing-tooltip .tooltip-content {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 8px 12px;
  position: absolute;
  z-index: 100;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.pricing-tooltip .tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}

.pricing-tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pricing-tooltip .tooltip-content .muted {
  font-size: 11px;
  color: #aaa;
  display: block;
  margin-top: 2px;
}

/* Ensure landing sections have transparent backgrounds to show beams where needed */
.landing-section {
  background: transparent !important;
}

/* --- PRICING SECTION --- */
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 28px;
  background: #333;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-switch.active {
  background: #068FFF;
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch.active .toggle-knob {
  transform: translateX(22px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Plan Card Base - Opaque by default */
.plan-card {
  background: #0e1015;
  /* Opaque dark background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.price-val,
.price-sub {
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
}

.price-val.fade-out,
.price-sub.fade-out {
  opacity: 0;
}

/* Hover - Reveal transparency */
.plan-card:hover {
  transform: translateY(-8px);
  background: rgba(14, 16, 21, 0.85);
  /* Slight transparency */
  border-color: #068FFF;
  box-shadow: 0 30px 80px rgba(6, 143, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.plan-card.popular {
  border-color: #068FFF;
  /* Keep same background behavior, just border difference */
  box-shadow: 0 30px 80px rgba(6, 143, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #068FFF;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(6, 143, 255, 0.4);
  width: max-content;
}

.plan-name {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

/* Horizontal Card (Enterprise) */
.plan-card.horizontal {
  max-width: 1200px;
  margin: 30px auto 0;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.plan-card.horizontal .plan-info {
  flex: 1;
  min-width: 250px;
  text-align: center;
  /* Centered text as requested */
}

.plan-card.horizontal .plan-features {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 40px;
  flex: 2;
}

.plan-card.horizontal .plan-actions {
  flex: 0 0 auto;
  text-align: center;
  /* Centered actions */
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1024px) {
  .plan-card.horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .plan-card.horizontal .plan-features {
    width: 100%;
    margin-top: 30px;
    grid-template-columns: 1fr;
    text-align: left;
    /* Keep features list readable */
  }
}

/* Matte Buttons */
.btn-matte-white {
  background: #ffffff;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn-matte-white:hover {
  background: #e6e6e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-matte-silver {
  background: #C0C0C0;
  /* Silver */
  color: #000;
  box-shadow: 0 4px 15px rgba(192, 192, 192, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn-matte-silver:hover {
  background: #dcdcdc;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 192, 192, 0.3);
}

.btn-matte-black {
  background: #111;
  color: #fff;
  border: 1px solid #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* --- PRICING ANIMATIONS (Pencil Effect) --- */
.price-val {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  white-space: nowrap;
}

.price-old {
  position: relative;
  display: inline-block;
  color: #fff;
  /* Start white */
  font-weight: 800;
  /* Match standard price bold */
  transition: color 0.5s ease;
  vertical-align: middle;
}

.price-old.active {
  color: var(--muted);
  /* Smoothly fade to muted when crossed */
}

.price-old::after {
  content: '';
  position: absolute;
  left: -5%;
  top: 45%;
  width: 0%;
  height: 2px;
  background: var(--muted);
  transform: rotate(-3deg);
  will-change: width;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  /* Quintic Out for silky smooth start/stop */
  pointer-events: none;
}

.price-old.active::after {
  width: 110%;
}

.price-new {
  display: inline-block;
  color: #068FFF;
  font-weight: 800;
  font-size: 1.1em;
  margin-left: 10px;
  opacity: 0;
  transform: translateX(-10px);
  will-change: opacity, transform;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  vertical-align: middle;
}

.price-new.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.btn-matte-black:hover {
  background: #000;
  border-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
}

.plan-desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 30px;
  min-height: 42px;
  /* Fixed height for alignment */
}

.plan-price {
  margin-bottom: 30px;
}

.price-val {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
}

.price-period {
  font-size: 16px;
  color: var(--muted);
}

.price-sub {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 5px;
}

.plan-features {
  margin-bottom: 40px;
  flex: 1;
}

.feature-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
}

.feature-icon {
  color: #068FFF;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  display: inline-block;
}

.plan-btn.primary {
  background: #fff;
  color: #000;
}

.plan-btn.primary:hover {
  background: #e0e0e0;
}

.plan-btn.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
}

.plan-btn.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Annual Discount Badge */
.discount-badge {
  background: #1aff8c;
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
}

/* --- SERVICE PAGE SPECIFICS --- */

/* 1. Feature Grid (Spam/Accueil) */
/* --- SECTION 6: WHY SYLEN (BENTO GRID - PREMIUM V2) --- */
.section-why {
  position: relative;
  padding: 120px 20px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(320px, auto));
  gap: 30px;
  max-width: 1150px;
  margin: 60px auto 0;
}

.bento-card {
  background: rgba(22, 22, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Crisp border */
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Align top */
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6);
  border-color: rgba(6, 143, 255, 0.4);
  background: rgba(22, 22, 28, 0.8);
}

/* Specific Card Tweaks */
.bento-card.span-2 {
  grid-column: span 2;
}

.bento-card.span-3 {
  grid-column: span 3;
}

@media (max-width: 950px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .bento-card.span-2,
  .bento-card.span-3 {
    grid-column: span 1;
  }

  .bento-card {
    min-height: 280px;
  }
}

/* Typography */
.bento-content {
  position: relative;
  z-index: 2;
  max-width: 85%;
}

.bento-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.bento-title {
  font-size: 26px;
  /* Larger */
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.5px;
}

.bento-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Visuals Container */
.bento-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  border-radius: 32px;
  overflow: hidden;
}

/* 1. CHART (Efficiency) */
.chart-container {
  position: absolute;
  bottom: 0;
  right: 40px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  height: 160px;
  /* Taller */
}

.chart-bar {
  width: 60px;
  border-radius: 12px 12px 0 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
}

.chart-bar.human {
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  color: rgba(255, 255, 255, 0.5);
}

.chart-bar.sylen {
  height: 140px;
  background: linear-gradient(180deg, #068FFF, #0056b3);
  box-shadow: 0 0 30px rgba(6, 143, 255, 0.3);
  color: #fff;
}

.chart-label {
  position: absolute;
  bottom: -25px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* 2. RING (Availability) */
.availability-ring {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: rotate-slow 30s linear infinite;
}

.av-orbit {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #068FFF;
  border-radius: 50%;
  box-shadow: 0 0 15px #068FFF;
}

.av-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  /* Subtle giant text */
}

/* 3. COST BADGE */
.cost-bg {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(39, 201, 63, 0.15), transparent 70%);
}

.cost-val {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 42px;
  font-weight: 800;
  color: #27C93F;
}

/* 4. SCALABILITY LINES */
.scale-graph {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 0 20px;
  opacity: 0.3;
}

.sg-bar {
  flex: 1;
  background: #fff;
  border-radius: 2px;
}

.bento-card:hover .sg-bar {
  animation: scale-wave 1s infinite alternate;
}

@keyframes scale-wave {
  from {
    height: 20%;
    opacity: 0.2;
  }

  to {
    height: 80%;
    opacity: 0.5;
  }
}



/* Spam Shield Animation */
.spam-shield-visual {
  width: 100%;
  height: 300px;
  background: rgba(14, 16, 21, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.shield-icon {
  font-size: 80px;
  color: #FF3B30;
  filter: drop-shadow(0 0 20px rgba(255, 59, 48, 0.3));
  animation: pulse-shield 3s infinite;
  z-index: 2;
}

@keyframes pulse-shield {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.spam-call-badge {
  position: absolute;
  top: 50%;
  left: -20%;
  /* Start off screen */
  background: rgba(255, 59, 48, 0.1);
  color: #FF3B30;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid #FF3B30;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  white-space: nowrap;
  animation: spam-incoming 4s infinite linear;
}

@keyframes spam-incoming {
  0% {
    left: -10%;
    opacity: 0;
  }

  20% {
    left: 30%;
    opacity: 1;
  }

  /* Move towards shield */
  40% {
    left: 45%;
    opacity: 1;
    transform: scale(1);
  }

  /* Hit shield */
  45% {
    transform: scale(1.2);
  }

  /* Impact */
  50% {
    left: 45%;
    opacity: 0;
    transform: scale(0.1);
  }

  /* Blocked/Disappear */
  100% {
    opacity: 0;
  }
}


/* 2. Ecosystem Flow */
.ecosystem-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.eco-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  transition: 0.3s;
}

.eco-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.eco-badge span {
  font-size: 20px;
}

/* 3. Calendar Visual */
.cal-grid-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  max-width: 300px;
  margin: 0 auto;
}

.cal-slot {
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  animation: slot-fill 4s infinite alternate;
}

.cal-slot:nth-child(2) {
  animation-delay: 0.2s;
  background: rgba(6, 143, 255, 0.3);
}

.cal-slot:nth-child(5) {
  animation-delay: 1.5s;
  background: rgba(6, 143, 255, 0.3);
}

.cal-slot:nth-child(8) {
  animation-delay: 2.8s;
}

.cal-slot:nth-child(even) {
  animation-delay: 1s;
}

@keyframes slot-fill {
  0% {
    opacity: 0.3;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.3;
    transform: scale(0.95);
  }
}

/* ========================================= */
/* PREMIUM INDEX PAGE REDESIGN STYLES        */
/* ========================================= */

/* --- SECTION 1: THE PROBLEM (Dark/Red Vibe) --- */
.section-problem {
  position: relative;
  padding: 100px 20px;
  background: radial-gradient(circle at center, rgba(29, 16, 16, 0.8) 0%, #000 70%);
  overflow: hidden;
  text-align: left;
  /* Revert to left align */
}

.problem-grid {
  display: grid;
  /* Revert to Grid */
  grid-template-columns: 1fr 1fr;
  /* Side by Side */
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  /* Restore wider width */
  margin: 0 auto;
}

.problem-visual {
  position: relative;
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.phone-mockup-error {
  width: 280px;
  height: 520px;
  background: #000;
  border: 4px solid #333;
  border-radius: 40px;
  position: relative;
  box-shadow: 0 0 80px rgba(255, 59, 48, 0.2);
  overflow: hidden;
  z-index: 2;
  transform: rotate(-5deg);
  /* Restore slight rotation */
  transition: transform 0.5s ease;
}

.phone-mockup-error:hover {
  transform: rotate(0deg) scale(1.02);
}

.screen-error {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.missed-call-notif {
  background: rgba(255, 59, 48, 0.15);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: #FF3B30;
  padding: 15px;
  border-radius: 12px;
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: shake 3s infinite ease-in-out;
  text-align: left;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  90% {
    transform: translateX(0);
  }

  92% {
    transform: translateX(-4px);
  }

  94% {
    transform: translateX(4px);
  }

  96% {
    transform: translateX(-4px);
  }

  98% {
    transform: translateX(4px);
  }
}

.money-lost-float {
  position: absolute;
  font-weight: 800;
  color: #FF3B30;
  opacity: 0;
  animation: floatUpFade 4s infinite;
  font-size: 20px;
}

@keyframes floatUpFade {
  0% {
    transform: translateY(20px) scale(0.8);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(-120px) scale(1.2);
    opacity: 0;
  }
}

/* --- SECTION 4: AUDIO PLAYLIST MODULE --- */
.audio-module-container {
  display: flex;
  background: rgba(18, 18, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* More subtle */
  border-radius: 32px;
  overflow: hidden;
  backdrop-filter: blur(40px);
  /* Stronger blur */
  max-width: 950px;
  margin: 60px auto 0;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
  /* More depth */
  min-height: 480px;
  /* Taller for presence */
  /* Transformer Animation Setup */
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.audio-module-container.assembled {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 800px) {
  .audio-module-container {
    flex-direction: column;
    min-height: auto;
  }
}

/* Sidebar Playlist */
.playlist-sidebar {
  width: 320px;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  /* Animate In */
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.audio-module-container.assembled .playlist-sidebar {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 800px) {
  .playlist-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: auto;
    max-height: 250px;
  }
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  /* Rounder */
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  color: var(--muted);
  border: 1px solid transparent;
  /* Prepare for active border */
  /* Staggered Items */
  transform: translateX(-20px);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}

.audio-module-container.assembled .playlist-item {
  transform: translateX(0);
  opacity: 1;
}

.audio-module-container.assembled .playlist-item:nth-child(1) {
  transition-delay: 0.3s;
}

.audio-module-container.assembled .playlist-item:nth-child(2) {
  transition-delay: 0.4s;
}

.audio-module-container.assembled .playlist-item:nth-child(3) {
  transition-delay: 0.5s;
}

.audio-module-container.assembled .playlist-item:nth-child(4) {
  transition-delay: 0.6s;
}


.playlist-item.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.playlist-item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.03);
  color: #e0e0e0;
}

.pl-index {
  font-size: 13px;
  opacity: 0.4;
  font-weight: 500;
  width: 20px;
}

.pl-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pl-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.2px;
}

.pl-info span {
  font-size: 12px;
  opacity: 0.6;
}

.pl-wave-mini {
  margin-left: auto;
  display: flex;
  gap: 3px;
  height: 14px;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s;
}

.playlist-item.active .pl-wave-mini {
  opacity: 1;
  /* Show even if not playing, just selected */
}

.playlist-item.active:not(.playing) .pl-wave-mini span {
  animation: none;
  height: 40%;
  background: rgba(255, 255, 255, 0.2);
}

.playlist-item.playing .pl-wave-mini span {
  background: #068FFF;
  animation: wave-mini 0.8s infinite ease-in-out;
}

@keyframes wave-mini {

  0%,
  100% {
    height: 30%;
  }

  50% {
    height: 100%;
  }
}

/* Active Player Area */
.active-player-area {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertically center */
  position: relative;
  overflow: hidden;
}

.player-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  /* Bigger glow */
  background: radial-gradient(circle, rgba(6, 143, 255, 0.15), transparent 70%);
  filter: blur(60px);
  transform: translate(-50%, -50%) scale(0);
  /* Start hidden */
  pointer-events: none;
  transition: transform 1s cubic-bezier(0.17, 0.67, 0.83, 0.67) 0.5s;
}

.audio-module-container.assembled .player-bg-glow {
  transform: translate(-50%, -50%) scale(1);
  animation: bg-pulse 6s infinite alternate 1.5s;
  /* Start pulsing later */
}

@keyframes bg-pulse {
  from {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.1);
  }
}


.active-visual {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.active-avatar {
  width: 140px;
  /* Bigger Avatar */
  height: 140px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: #333;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  /* Animate Pop In */
  transform: scale(0) rotate(-10deg);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
}

.audio-module-container.assembled .active-avatar {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.active-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* Ensure face is visible */
  transition: transform 0.5s, opacity 0.3s;
}

.active-player-area.playing .active-avatar img {
  transform: scale(1.05);
  /* Subtle zoom when playing */
}

.active-meta {
  /* Animate Slide In */
  transform: translateX(30px);
  opacity: 0;
  transition: all 0.5s ease-out 0.7s;
}

.audio-module-container.assembled .active-meta {
  transform: translateX(0);
  opacity: 1;
}

.active-meta h2 {
  font-size: 38px;
  margin: 0 0 8px 0;
  font-weight: 800;
  color: #fff;
  transition: opacity 0.3s;
}

.active-role {
  font-size: 15px;
  color: #068FFF;
  font-weight: 600;
  display: inline-block;
  background: rgba(6, 143, 255, 0.1);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

/* Fade out effect for efficient text switching */
.active-meta.switching h2,
.active-meta.switching .active-role {
  opacity: 0;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
  /* Animate Up */
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s ease-out 0.8s;
}

.audio-module-container.assembled .player-controls {
  transform: translateY(0);
  opacity: 1;
}

.btn-play-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-play-lg:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-play-lg:active {
  transform: scale(0.95);
}

/* Stop Button */
.btn-stop-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-stop-sm:hover {
  background: rgba(255, 80, 80, 0.2);
  border-color: rgba(255, 80, 80, 0.4);
  color: #ff5050;
  transform: scale(1.05);
}

.track-progress {
  flex: 1;
  position: relative;
}

.track-time {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  /* Hide overflow for cleaner edges */
}

.progress-bar-bg:hover {
  height: 8px;
  transition: height 0.2s;
}

.progress-bar-fill {
  background: linear-gradient(90deg, #068FFF, #4E4FEB);
  height: 100%;
  width: 0%;
  border-radius: 10px;
  position: relative;
  transition: width 0.05s linear;
  /* Smoother update */
}

.icon-pause-lg,
.playing .icon-play-lg {
  display: none;
}

.playing .icon-pause-lg {
  display: block;
}

/* Visualizer Bars */
.visualizer-container {
  height: 80px;
  /* Taller visualizer */
  width: 100%;
  margin-top: auto;
  /* Push to bottom if space allows */
  padding-top: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  /* Animate In */
  opacity: 0;
  transition: opacity 1s ease 1s;
}

.audio-module-container.assembled .visualizer-container {
  opacity: 1;
}

.vis-bar {
  flex: 1;
  background: #fff;
  opacity: 0.1;
  border-radius: 4px;
  transition: height 0.1s ease, opacity 0.1s ease;
  height: 6px;
  /* Base height */
  min-height: 6px;
}

.playing .vis-bar {
  animation: vis-eq 0.6s infinite ease-in-out alternate;
}

/* Custom staggered animation for bars */
.playing .vis-bar:nth-child(odd) {
  animation-duration: 0.5s;
}

.playing .vis-bar:nth-child(2n) {
  animation-duration: 0.7s;
}

.playing .vis-bar:nth-child(3n) {
  animation-duration: 0.6s;
}

.playing .vis-bar:nth-child(4n) {
  animation-duration: 0.4s;
}

@keyframes vis-eq {
  0% {
    height: 10%;
    opacity: 0.3;
    background: #fff;
  }

  100% {
    height: 90%;
    opacity: 0.9;
    background: #068FFF;
  }
}

/* --- SECTION 3: THE SOLUTION (LOGIC REDESIGN) --- */
.section-solution {
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

/* Logic Steps Grid */
.logic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.logic-card {
  background: rgba(255, 255, 255, 0.03);
  /* Subtle glass */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: left;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.logic-card:hover {
  transform: translateY(-5px);
  border-color: #068FFF;
  background: rgba(255, 255, 255, 0.05);
}

.logic-icon {
  width: 60px;
  height: 60px;
  background: rgba(6, 143, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #068FFF;
  margin-bottom: 25px;
}

.logic-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.logic-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.logic-stat {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-value-sm {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.stat-label-sm {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
}

.sol-feat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 16px;
  transition: 0.3s;
  flex: 1;
  /* For flex layout */
  text-align: center;
}

.sol-feat-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sol-feat-item:hover {
  background: rgba(6, 143, 255, 0.05);
  border-color: #068FFF;
  transform: translateY(-5px);
}


/* --- SECTION 4: AUDIO DEMO (Enhanced) --- */
.audio-transcript-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  font-family: monospace;
  color: #068FFF;
  font-size: 14px;
  line-height: 1.6;
  min-height: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.typing-cursor::after {
  content: '|';
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* --- SECTION 7: TIMELINE STEPS --- */
.setup-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

.setup-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  padding: 0 10px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #0e1015;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: 0.3s;
  box-shadow: 0 0 0 10px #000;
  /* mimic gap */
}

.step-item:hover .step-icon {
  border-color: #068FFF;
  color: #068FFF;
  transform: scale(1.1);
  box-shadow: 0 0 0 10px #000, 0 0 30px rgba(6, 143, 255, 0.3);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 768px) {

  .problem-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .setup-timeline {
    flex-direction: column;
    gap: 40px;
  }

  .setup-timeline::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 40px;
  }

  .step-item {
    text-align: left;
    padding-left: 100px;
    position: relative;
  }

  .step-icon {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
}

/* --- SECTION 8: FINAL CTA --- */
.final-cta-section {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 143, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.final-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.f-btn-primary {
  background: #fff;
  color: #000;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 99px;
  font-size: 18px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.f-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

.f-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 99px;
  font-size: 18px;
  transition: 0.3s;
}

.f-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* --- FAQ MODERN (Copied & Refined) --- */
.faq-modern {
  max-width: 600px;
  /* narrowed from 800px */
  margin: 0 auto;
}

.faq-item-modern {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-head .icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-head[aria-expanded="true"] .icon {
  transform: rotate(45deg);
  color: #068FFF;
}

.faq-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-body-inner {
  padding-bottom: 24px;
  color: var(--muted);
  line-height: 1.6;
}

/* --- AMBIENT BACKGROUND SYSTEM --- */
.ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  /* Behind everything */
  pointer-events: none;
  overflow: hidden;
  background: #000;
  /* Fallback */
}

.amb-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  transition: all 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity, background;
}

.blob-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, #068FFF, transparent);
}

.blob-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, #7A28CB, transparent);
}

.blob-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, #27C93F, transparent);
  opacity: 0;
}

/* Section States (Applied to Body or Canvas) */
body.view-hero .blob-1 {
  transform: translate(0, 0);
  opacity: 0.4;
}

body.view-hero .blob-2 {
  transform: translate(0, 0);
  opacity: 0.4;
}

body.view-problem .blob-1 {
  transform: translate(-20%, 30%);
  background: radial-gradient(circle, #ff4d4d, transparent);
  opacity: 0.1;
}

body.view-problem .blob-2 {
  transform: translate(20%, -30%);
  opacity: 0.2;
}

body.view-solution .blob-1 {
  transform: translate(80vw, 10vh);
  background: radial-gradient(circle, #068FFF, transparent);
  opacity: 0.5;
}

body.view-solution .blob-2 {
  transform: translate(-50vw, 0);
  background: radial-gradient(circle, #00d2ff, transparent);
  opacity: 0.3;
}

body.view-audio .blob-1 {
  transform: translate(20vw, 50vh) scale(1.5);
  background: radial-gradient(circle, #9b59b6, transparent);
  opacity: 0.2;
}

body.view-audio .blob-3 {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.15;
}

body.view-faq .blob-1 {
  transform: translate(0, 0);
  background: radial-gradient(circle, #068FFF, transparent);
  opacity: 0.2;
}

body.view-faq .blob-2 {
  transform: translate(0, 0);
  background: radial-gradient(circle, #7A28CB, transparent);
  opacity: 0.2;
}

/* ========================================= */
/* FLUID VISUAL REDESIGN (Backgrounds & Anim)*/
/* ========================================= */

/* Delete old Ambient */
.ambient-canvas {
  display: none !important;
}

/* Section Background Base */
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

/* HERO SPECIFIC TYPOGRAPHY */
.hero .title-xl {
  font-size: clamp(40px, 5vw, 72px);
  /* Reduced from 92px */
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.hero .title-gradient {
  background: linear-gradient(90deg, #6a28ff 0%, #068FFF 100%);
  /* Classic Sylen Blue/Purple */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 1. HERO BG: Deep Blue/Purple + Pink Right */
.bg-hero {
  background: #050510;
  overflow: hidden;
}

.hero {
  padding-top: 240px;
  /* Increased to fix navbar overlap */
  padding-bottom: 100px;
}

.bg-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  /* Blue/Violet Left */
  height: 140%;
  background: radial-gradient(circle at 30% 30%, rgba(6, 143, 255, 0.2) 0%, rgba(78, 79, 235, 0.1) 40%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.bg-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: auto;
  right: -20%;
  /* Pink Right */
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(255, 0, 255, 0.15) 0%, rgba(122, 40, 203, 0.2) 40%, transparent 70%);
  transform: translateY(-50%);
  filter: blur(90px);
  opacity: 0.8;
}

/* FOOTER UPDATES */
.super-footer {
  background: #05060a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 30px;
}

/* MySylen Login (Centered/Premium) */
.sf-login-row {
  display: flex;
  justify-content: center;
  margin: 60px 0 40px;
  position: relative;
}

.sf-login-row::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  z-index: 0;
}

.mysylen-login-box {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  /* Pill shape */
  padding: 10px 30px 10px 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mysylen-login-box:hover {
  border-color: #068FFF;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(6, 143, 255, 0.15);
}

.ms-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #068FFF, #4E4FEB);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(6, 143, 255, 0.3);
}

.ms-content {
  text-align: left;
}

.ms-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.ms-content p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.ms-action {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin-left: 20px;
}

/* 2. PROBLEM BG: Deep Red/Dark (Danger) */
.bg-problem {
  background:
    linear-gradient(180deg, #000 0%, #1a0505 40%, #1a0505 70%, #000 100%);
}

/* 3. ROI SIMULATOR STYLES (Robust Fix) */
.bg-roi {
  background: #000;
  box-shadow: inset 0 0 100px rgba(6, 143, 255, 0.05);
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.roi-inputs {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
}

.roi-group {
  margin-bottom: 30px;
}

.roi-label {
  display: flex;
  justify-content: space-between;
  color: #ccc;
  font-weight: 600;
  margin-bottom: 12px;
}

.roi-val {
  color: #068FFF;
  font-weight: 700;
}

.roi-range {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  height: 6px;
  border-radius: 10px;
  outline: none;
  -webkit-appearance: none;
}

.roi-bubbles {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.roi-bubble-opt input {
  display: none;
}

.roi-bubble-lbl {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.roi-bubble-opt input:checked+.roi-bubble-lbl {
  background: #068FFF;
  color: #fff;
  box-shadow: 0 4px 12px rgba(6, 143, 255, 0.3);
}

.roi-results {
  background: radial-gradient(circle at center, rgba(30, 30, 30, 0.5) 0%, #0b0d12 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roi-result-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.roi-period {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.roi-total {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.roi-total#res-year {
  color: #FF3B30;
  /* Danger Red for yearly loss */
  text-shadow: 0 0 30px rgba(255, 59, 48, 0.3);
}

.roi-sub-card {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.roi-sub-text {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 5px;
}

.roi-sub-price {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

@media (max-width: 900px) {
  .roi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* 4. SOLUTION BG: Cyan/Blue (Clarity) */
.bg-solution {
  background:
    radial-gradient(circle at 0% 50%, rgba(6, 143, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(39, 201, 63, 0.05) 0%, transparent 50%);
  /* Subtle green hint for action */
}

/* 5. AUDIO BG: Night Drive (Violet/Dark) */
.bg-audio {
  background:
    radial-gradient(circle at 50% 100%, rgba(122, 40, 203, 0.15) 0%, transparent 70%);
}

/* 6. FAQ/CTA BG: Dark/Clean */
.bg-faq {
  background: #000;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
}


/* --- ANIMATION UTILITIES --- */

/* Scroll Text Reveal */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for multiple lines if needed (manual classes or nth-child) */
.reveal-text.delay-1 {
  transition-delay: 0.1s;
}

.reveal-text.delay-2 {
  transition-delay: 0.2s;
}

.reveal-text.delay-3 {
  transition-delay: 0.3s;
}

/* Scroll Expand (Breathing Image) */
.reveal-expand {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-expand.visible {
  opacity: 1;
  transform: scale(1);
}

/* Floating Blobs Animation in Backgrounds */
@keyframes floatBlob {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(30px, -50px);
  }

  66% {
    transform: translate(-20px, 20px);
  }
}

.section-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: inherit;
  /* cheat to reuse colors? or just generic glow */
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatBlob 15s infinite ease-in-out;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
}

/* ========================================= */
/* SERVICE PAGE STYLES                       */
/* ========================================= */

/* 1. ASYMMETRIC GRID */
.asym-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  /* Stretch to match heights */
}

.asym-col.left-col {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.target-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.target-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
}

.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ========================================= */
/* SERVICE PAGE INTERACTIONS & BLENDING      */
/* ========================================= */

/* Define Animation Globally for Service Page */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Right Cards (Why items) */
.why-item {
  /* User requested "cartes en noir" to stand out against the background */
  background: #000;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
  z-index: 2;

  /* Ensure visibility if animation fails */
  opacity: 1;
}

/* Hover Animation for ALL items (Blue Glow) */
.why-item:hover {
  background: #000;
  border-color: rgba(6, 143, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px -10px rgba(6, 143, 255, 0.4);
}

.why-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.why-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
  transition: 0.3s;
}

.why-item:hover h3 {
  color: #068FFF;
}

.why-item:hover p {
  color: #fff;
}


/* Left Big Card (Target list) */
.asym-col.left-col {
  background: #000;
  /* Requested Black Background */
  padding: 30px;
  /* Reduced from 40px to 'remonte' titles */
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  /* Sit on top of bleed */
  transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.asym-col.right-col {
  padding-top: 30px;
  /* Aligns exactly with left card content */
  display: flex;
  flex-direction: column;
}

/* Pink Hover Effect for Left Card */
.asym-col.left-col:hover {
  background: #000;
  border-color: rgba(255, 0, 255, 0.5);
  /* Pink Border */
  transform: translateY(-5px);
  box-shadow: 0 10px 40px -10px rgba(255, 0, 255, 0.3);
  /* Pink Glow */
}


/* Intro: Intense Rotating Colored Beams (Extended) */
.bg-svc-intro {
  background: #000;
  overflow: visible;
  /* Extended fade: Solid until 70% down, then fades to transparent */
  /* This ensures it covers the entire next section before blending out */
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  z-index: 0;
}

/* Ensure Target section lets the previous bg show through or blends */
.bg-svc-target {
  background: transparent;
  /* Removed local tint to allow full seamless bleed from Intro */
}



/* 3. HOW IT WORKS (Horizontal & Crossed) */
.service-process {
  position: relative;
}

.process-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* Increased separation */
  max-width: 900px;
  margin: 60px auto;
  position: relative;
}

/* Connecting Line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(6, 143, 255, 0.3), transparent);
  transform: translateX(-50%);
  z-index: 0;
}

.process-card {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  width: 55%;
  /* Slightly narrower to emphasize crossing */
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  /* Deep shadow */
}

/* Criss-Cross Layout */
.process-grid .process-card:nth-child(odd) {
  align-self: flex-start;
  margin-right: auto;
  text-align: right;
  flex-direction: row-reverse;
  /* Icon on outside */
}

.process-grid .process-card:nth-child(even) {
  align-self: flex-end;
  margin-left: auto;
  text-align: left;
}

.process-card:hover {
  transform: scale(1.02);
  background: #0f0f0f;
  border-color: rgba(6, 143, 255, 0.3);
  z-index: 2;
}

.step-idx {
  display: none;
  /* Minimalist */
}

/* Icons */
.card-icon {
  font-size: 0;
  /* Hide text */
  flex-shrink: 0;
  background: #111;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: 0.3s;
}

.process-card:hover .card-icon {
  border-color: #068FFF;
  color: #068FFF;
  box-shadow: 0 0 15px rgba(6, 143, 255, 0.2);
}

.process-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.process-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Fallback */
@media (max-width: 768px) {
  .process-grid::before {
    left: 20px;
  }

  .process-card {
    width: 100%;
    text-align: left !important;
    flex-direction: row !important;
  }
}


/* 4. SCENARIO (Visual Glass Cards) */
.service-scenario {
  /* Smooth Entry */
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.chat-container {
  max-width: 800px;
  /* "Occupe l'espace" */
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* More spacing for cards */
  padding: 0 20px;
}

.chat-bubble {
  padding: 24px 32px;
  border-radius: 20px;
  max-width: 90%;
  position: relative;
  font-size: 18px;
  /* Larger text */
  line-height: 1.6;

  /* Glass Card Style ("Origine") */
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

  transform: translateZ(0);
  /* GPU */
  display: flex;
  flex-direction: column;
}

/* User (Right) */
.chat-bubble.client {
  align-self: flex-end;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  margin-left: auto;
  text-align: right;
  border-bottom-right-radius: 4px;
}

/* ========================================= */
/* AI PAGE TIMELINE                          */
/* ========================================= */

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Vertical Spine */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

.timeline-block {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 60px;
  box-sizing: border-box;
  /* Left by default */
  left: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.timeline-block.right {
  left: 50%;
  text-align: left;
  align-items: flex-start;
}

/* Dot on Spine */
.timeline-block::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -6px;
  /* For Left blocks */
  width: 14px;
  height: 14px;
  background: #111;
  border: 2px solid #068FFF;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px rgba(6, 143, 255, 0.5);
}

.timeline-block.right::after {
  right: auto;
  left: -6px;
}

.timeline-year {
  font-size: 40px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.timeline-year.highlight {
  color: rgba(6, 143, 255, 0.2);
}

.timeline-content {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 16px;
  position: relative;
  transition: 0.3s;
  max-width: 380px;
}

.timeline-content:hover {
  border-color: rgba(6, 143, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.timeline-content h3 {
  color: #fff;
  font-size: 20px;
  margin: 0 0 10px;
}

.timeline-content p {
  color: #888;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.timeline-content.highlight {
  border-color: rgba(6, 143, 255, 0.5);
  background: radial-gradient(circle at top left, rgba(6, 143, 255, 0.05), transparent);
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
  }

  .timeline-block {
    width: 100%;
    left: 0;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
    align-items: flex-start;
  }

  .timeline-block.right {
    left: 0;
  }

  .timeline-block::after {
    left: 14px;
    right: auto;
  }

  .timeline-block.right::after {
    left: 14px;
  }

  .timeline-content {
    max-width: 100%;
  }
}

/* ========================================= */
/* AI PAGE (EDUCATIONAL) - PERFECTED STYLES  */
/* ========================================= */

/* General Section Structure */
.ia-section {
  padding: 50px 0;
  /* Reduced from 100px to remove black space */
  position: relative;
  overflow: hidden;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* S1: INTRO (Clean & Simple - Text Only) */
.ia-intro {
  min-height: auto;
  /* Remove fixed height constraint */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  /* Reduced top padding */
  padding-bottom: 40px;
  /* Tighter bottom */
  background: radial-gradient(circle at center, rgba(6, 143, 255, 0.05), transparent 70%);
}

.title-xl {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  /* Reduced margin */
  margin-top: 0;
  /* Ensure no top margin */
  line-height: 1.1;
  color: #fff;
}

.muted-lg {
  font-size: 22px;
  color: #aaa;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* S2: Bento Grid (Polished) */
.ia-usage {
  background: #000;
}

.ia-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.ia-card {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Subtle border */
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.ia-card:hover {
  background: #111;
  transform: translateY(-5px);
  border-color: rgba(6, 143, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Grid Spans */
.card-vocal {
  grid-column: span 1;
}

.card-reco {
  grid-column: span 1;
}

.card-auto.wide {
  grid-column: span 2;
  background: linear-gradient(135deg, #0A0A0A 0%, #151515 100%);
}

.card-data {
  grid-column: span 1;
}

.card-gen {
  grid-column: span 1;
}

.ia-icon-lg {
  font-size: 32px;
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* S3: Timeline (Clean & Modern) */
.ia-timeline {
  background: #050505;
}

.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(6, 143, 255, 0.2), #068FFF, rgba(6, 143, 255, 0.2), transparent);
  transform: translateX(-50%);
}

.tl-node {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  width: 100%;
  position: relative;
}

.tl-node.left {
  flex-direction: row;
}

.tl-node.right {
  flex-direction: row-reverse;
}

.tl-date {
  width: 45%;
  text-align: right;
  padding-right: 40px;
  font-size: 32px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.tl-node.right .tl-date {
  text-align: left;
  padding-right: 0;
  padding-left: 40px;
}

.tl-node:hover .tl-date {
  color: #fff;
}

.tl-card-history {
  width: 45%;
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
  position: relative;
}

.tl-card-history:hover {
  border-color: rgba(6, 143, 255, 0.4);
  transform: translateY(-3px);
}


/* Connectors Removed as per user request */
/* .tl-card-history::before and ::after were removed here */

/* Center Node (Today) */
.tl-node.center-node {
  flex-direction: column;
  margin-bottom: 0;
  padding-bottom: 20px;
  /* Ensure space at bottom */
}

.tl-node.center-node .tl-date {
  width: 100%;
  text-align: center;
  padding: 0;
  margin-bottom: 20px;
  color: #068FFF;
}

.tl-node.center-node .tl-card-history {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(6, 143, 255, 0.1), #080808);
  border: 1px solid #068FFF;
  box-shadow: 0 0 40px rgba(6, 143, 255, 0.15);
  text-align: center;
  z-index: 2;
  /* Ensure above spine */
}

.tl-node.center-node .tl-card-history::before,
.tl-node.center-node .tl-card-history::after {
  display: none;
}



/* S4: Voice (Wave Animation) */
.ia-voice {
  background: #020202;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  z-index: 1;
}

/* Force visibility for S4 specific elements */
.ia-voice .reveal-text,
.ia-voice .reveal-expand {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.voice-wave-visual {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: rgba(255, 255, 255, 0.02);
  /* Slight bg to debug if it was empty */
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wave-bar {
  width: 8px;
  background: #068FFF;
  border-radius: 5px;
  animation: wave 1.2s infinite ease-in-out;
  box-shadow: 0 0 15px rgba(6, 143, 255, 0.4);
}

@keyframes wave {

  0%,
  100% {
    height: 30%;
  }

  50% {
    height: 100%;
    box-shadow: 0 0 25px #068FFF;
  }
}

.wave-bar:nth-child(1) {
  animation-delay: 0s;
}

.wave-bar:nth-child(2) {
  animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
  animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
  animation-delay: 0.3s;
}

.wave-bar:nth-child(5) {
  animation-delay: 0.4s;
}


/* S5: SMB Stats (Grid) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.info-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.big-stat {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  background: linear-gradient(to right, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* S6: Receptionist Flow */
.flow-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.flow-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 20px;
  width: 280px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.flow-card:hover {
  transform: translateY(-10px);
  border-color: #068FFF;
  box-shadow: 0 10px 30px rgba(6, 143, 255, 0.1);
}

.flow-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.flow-arrow-icon {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.1);
}


/* S7: Sylen Features (Clean Horizontal) */
.bg-sylen-full {
  background: linear-gradient(to bottom, #000, #050505);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sylen-horizontal-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sylen-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.sylen-feat-card {
  background: #0F0F0F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
}

.sylen-feat-card:hover {
  border-color: #068FFF;
  transform: translateY(-5px);
}

.feat-icon-svg {
  width: 64px;
  height: 64px;
  background: rgba(6, 143, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #068FFF;
  box-shadow: 0 0 20px rgba(6, 143, 255, 0.1);
}


/* FOOTER (Forced Horizontal) */
footer {
  /* Reset default footer if needed, but .super-footer handles it */
}

/* SUPER FOOTER (Premium Redesign) */
.super-footer {
  background: #05060a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 30px;
  margin-top: 0;
  /* Seamless with previous section */
}

.sf-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.sf-brand-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sf-logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sf-desc {
  color: #a1a1aa;
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
}

/* MySylen Login Box (Replacing Newsletter) */
.mysylen-login-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 350px;
  transition: all 0.3s ease;
}

.mysylen-login-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #068FFF;
  transform: translateY(-2px);
}

.ms-icon {
  width: 40px;
  height: 40px;
  background: rgba(6, 143, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #068FFF;
}

.ms-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.ms-content p {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.ms-arrow {
  margin-left: auto;
  color: #fff;
  opacity: 0.5;
}

/* Footer Columns */
.sf-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.sf-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sf-links a {
  color: #a1a1aa;
  font-size: 14px;
  transition: color 0.2s;
}

.sf-links a:hover {
  color: #fff;
}

.sf-socials {
  display: flex;
  gap: 12px;
}

.sf-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}

.sf-social-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* Footer Bottom */
.sf-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sf-copyright {
  color: #666;
  font-size: 13px;
}

.sf-legal-links {
  display: flex;
  gap: 24px;
}

.sf-legal-links a {
  color: #666;
  font-size: 13px;
}

.sf-legal-links a:hover {
  color: #a1a1aa;
}

@media (max-width: 900px) {
  .sf-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sf-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sf-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ROI Sub Card (Solution/Green) */
.roi-sub-card {
  margin-top: 20px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.roi-sub-card:hover {
  background: rgba(39, 201, 63, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(39, 201, 63, 0.15);
}

.roi-sub-text {
  font-size: 15px;
  color: #aaddad;
  margin-bottom: 8px;
  font-weight: 500;
}

.roi-sub-price {
  font-size: 28px;
  font-weight: 800;
  color: #27C93F;
  /* Green */
  margin-bottom: 20px;
  display: block;
}

.card-auto.wide {
  grid-column: span 2;
}

.grid-2-col {
  grid-template-columns: 1fr;
  text-align: center;
}

.voice-wave-visual {
  margin-top: 40px;
}
}

@media (max-width: 768px) {

  /* Navbar space */
  .ia-intro {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 80px;
  }

  /* Usage */
  .ia-bento-grid {
    grid-template-columns: 1fr;
  }

  .card-vocal,
  .card-reco,
  .card-auto.wide,
  .card-data,
  .card-gen {
    grid-column: span 1;
  }

  /* Timeline */
  .timeline-spine {
    left: 24px;
    transform: none;
  }

  .tl-node,
  .tl-node.left,
  .tl-node.right {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 50px;
    width: auto;
    margin-bottom: 40px;
  }

  .tl-date {
    width: auto;
    text-align: left;
    padding: 0 0 10px 0;
    font-size: 24px;
  }

  .tl-card-history {
    width: 100%;
    padding: 24px;
  }

  /* Remove connectors on mobile for cleanness */
  .tl-card-history::before {
    display: none;
  }

  /* Dot alignment fix */
  .tl-card-history::after {
    left: -36px;
    right: auto;
    top: 10px;
    transform: none;
  }

  /* Center today node */
  .tl-node.center-node {
    margin-left: 0;
  }

  .tl-node.center-node .tl-date {
    text-align: center;
  }

  /* Stats */
  .info-grid {
    grid-template-columns: 1fr;
  }

  /* Flow */
  .flow-steps {
    flex-direction: column;
  }

  .flow-card {
    width: 100%;
  }

  .flow-arrow-container {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  /* Sylen Feat */
  .sylen-features-row {
    grid-template-columns: 1fr;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col {
    max-width: none !important;
  }

  /* Mobile Source Card Adjustments */
  .source-card {
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }
}

/* Force Timeline Visibility (Fix Bug) */
.ia-timeline .tl-node {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.ia-timeline {
  overflow: visible !important;
  height: auto !important;
}

.source-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(6, 143, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sc-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.source-card:hover .sc-icon {
  background: rgba(6, 143, 255, 0.2);
}

.sc-content h4 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.muted-xs {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
  margin: 0 0 10px;
}

.sc-meta {
  font-size: 11px;
  color: #068FFF;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Check List for Section 3 */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-list li {
  font-size: 18px;
  color: #ddd;
}

.check-list strong {
  color: #fff;
}

/* Custom Visual Placeholder style */
.voice-visual-placeholder {
  position: relative;
  overflow: hidden;
}

.voice-visual-placeholder::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(6, 143, 255, 0.1), transparent);
  animation: rotateBeam 10s linear infinite;
}

.mock-window {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  transition: transform 0.3s;
  display: flex;
  /* Sidebar + Main layout */
  font-family: 'Inter', system-ui, sans-serif;
  /* Setup font overlap */
}

/* Screen Reflection */
.mock-window::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 10;
}

.mock-window:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 143, 255, 0.3);
}

/* --- SIDEBAR --- */
.ms-sidebar {
  width: 250px;
  background: #000;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.ms-brand {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.ms-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ms-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #888;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}

.ms-nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.ms-nav-item.active {
  background: rgba(6, 143, 255, 0.15);
  color: #068FFF;
  border: 1px solid rgba(6, 143, 255, 0.2);
}

.ms-icon {
  font-size: 16px;
  opacity: 0.8;
}

.ms-logout {
  margin-top: auto;
  color: #666;
  font-size: 14px;
  padding: 12px;
  cursor: pointer;
}

/* --- MAIN CONTENT & VIEWS --- */
.ms-main-container {
  flex-grow: 1;
  background: #080808;
  padding: 40px;
  position: relative;
  overflow-y: auto;
}

/* View Switching Logic */
.ms-view {
  display: none;
  animation: fadeIn 0.3s ease;
  height: 100%;
}

.ms-view.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- DASHBOARD VIEW --- */
.ms-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.ms-welcome {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.ms-subtitle {
  color: #888;
  margin: 0;
}

.ms-header-img {
  width: 150px;
  height: 80px;
  background-color: #111;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.ms-header-img:hover {
  transform: scale(1.05);
}

.ms-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

/* Stats */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.stat-big {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}

.sub-stat {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.muted-sm {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}

.progress-bar-container {
  height: 12px;
  background: #222;
  border-radius: 6px;
  margin: 20px 0 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #068FFF, #7A28CB);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(6, 143, 255, 0.5);
}

.text-right-sm {
  text-align: right;
  font-size: 12px;
  color: #555;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.ms-card.small {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 140px;
  position: relative;
  transition: 0.3s;
}

.ms-card.small:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  background: #151515;
}

.icon-sq {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.icon-sq.blue {
  background: rgba(6, 143, 255, 0.1);
  color: #068FFF;
}

.icon-sq.purple {
  background: rgba(122, 40, 203, 0.1);
  color: #7A28CB;
}

.icon-sq.pink {
  background: rgba(255, 0, 255, 0.1);
  color: #FF00FF;
}

.badge-trend {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

.badge-trend.success {
  background: rgba(39, 201, 63, 0.2);
  color: #27C93F;
}

.stat-label {
  color: #888;
  font-size: 14px;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}


/* --- LOCKED VIEW (CALL LOG) --- */
.locked-perspective {
  position: relative;
  overflow: hidden;
  /* Force GPU layer for the mask/blur container */
  transform: translateZ(0);
  will-change: transform;
}

.blurred-content {
  filter: blur(4px);
  pointer-events: none;
  opacity: 0.8;
  user-select: none;
  transform: scale(0.99) translateZ(0);
  /* Avoid repaints */
  will-change: filter;
}

/* Call Log Row formatting behind blur */
.ms-call-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  /* Optimization: don't render offscreen content too expensively */
  content-visibility: auto;
}

.ms-col-date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 14px;
  width: 120px;
}

.ms-col-user {
  color: #fff;
  flex-grow: 1;
  margin-left: 20px;
}

.ms-icon-sq {
  font-size: 16px;
}

.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge.success {
  background: rgba(39, 201, 63, 0.2);
  color: #27C93F;
}

.badge.neutral {
  background: rgba(255, 255, 255, 0.1);
  color: #aaa;
}

.lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);

  /* Fallback for browsers struggling with backdrop-filter */
  @supports not (backdrop-filter: blur(2px)) {
    background: rgba(0, 0, 0, 0.8);
  }

  backdrop-filter: blur(2px);
  /* Promote to layer */
  transform: translateZ(0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
  text-align: center;
  padding: 40px;
}

.lock-icon-circle {
  width: 80px;
  height: 80px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(6, 143, 255, 0.2);
  color: #fff;
}

.lock-overlay h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.lock-overlay p {
  color: #aaa;
  max-width: 450px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
}

.btn-glow {
  background: #068FFF;
  color: #fff;
  box-shadow: 0 0 20px rgba(6, 143, 255, 0.5);
  border: none;
  font-weight: 600;
}

.btn-glow:hover {
  background: #0077dd;
  box-shadow: 0 0 30px rgba(6, 143, 255, 0.8);
  transform: scale(1.05);
}


/* --- CUSTOMIZATION & PROFILE --- */
.center-text {
  text-align: center;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: #ddd;
  font-size: 14px;
}

.icon-sm {
  width: 32px;
  height: 32px;
  background: #222;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: #bbb;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.bullet-blue {
  color: #068FFF;
  font-weight: bold;
  margin-right: 5px;
}

.ms-bottom-trust {
  margin-top: 30px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.ms-bottom-trust p {
  color: #666;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-trust {
  background: #068FFF;
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: default;
  /* Just a badge */
}

/* Profile View */
.profile-card-main {
  max-width: 500px;
  margin: 0 auto;
}

.profile-avatar-edit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.avatar-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(6, 143, 255, 0.2);
}

.edit-hint {
  color: #666;
  font-size: 12px;
  margin-top: 10px;
  cursor: pointer;
  text-decoration: underline;
}

.form-row {
  display: flex;
  gap: 20px;
}

.input-group {
  width: 100%;
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  color: #888;
  font-size: 12px;
  margin-bottom: 8px;
}

.ms-input {
  width: 100%;
  background: #050505;
  border: 1px solid #222;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  transition: 0.2s;
}

.ms-input:focus {
  border-color: #068FFF;
  outline: none;
}

.flex-input {
  display: flex;
  gap: 10px;
}

.btn-xs {
  padding: 0 16px;
  height: 100%;
  font-size: 12px;
  background: #333;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.btn-xs:hover {
  background: #444;
}

.muted-xs {
  font-size: 11px;
  color: #555;
  line-height: 1.4;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #068FFF;
  color: white;
}

.btn-full:hover {
  background: #0077dd;
}

/* --- BUTTONS --- */
.btn-sm {
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
}

/* Fix for responsiveness and horizontal scroll */
.mysylen-interface {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  overflow: hidden;
  /* Contains the sidebar/content within border radius */
  display: flex;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ensure no horizontal scroll on mobile/small screens for the main page */
body,
html {
  max-width: 100vw;
  /* overflow-x: hidden; Removed to ensure sticky works */
}

/* --- CUSTOMIZATION & PROFILE --- */
.center-text {
  text-align: center;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: #ddd;
  font-size: 14px;
}

.icon-sm {
  width: 32px;
  height: 32px;
  background: #222;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: #bbb;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.bullet-blue {
  color: #068FFF;
  font-weight: bold;
  margin-right: 5px;
}

.ms-bottom-trust {
  margin-top: 30px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.ms-bottom-trust p {
  color: #666;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-trust {
  background: #068FFF;
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: default;
  /* Just a badge */
}

/* Profile View */
.profile-card-main {
  max-width: 500px;
  margin: 0 auto;
}

.profile-avatar-edit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.avatar-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(6, 143, 255, 0.2);
}

.edit-hint {
  color: #666;
  font-size: 12px;
  margin-top: 10px;
  cursor: pointer;
  text-decoration: underline;
}

.form-row {
  display: flex;
  gap: 20px;
}

.input-group {
  width: 100%;
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  color: #888;
  font-size: 12px;
  margin-bottom: 8px;
}

.ms-input {
  width: 100%;
  background: #050505;
  border: 1px solid #222;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  transition: 0.2s;
}

.ms-input:focus {
  border-color: #068FFF;
  outline: none;
}

.flex-input {
  display: flex;
  gap: 10px;
}

.btn-xs {
  padding: 0 16px;
  height: 100%;
  font-size: 12px;
  background: #333;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.btn-xs:hover {
  background: #444;
}

.muted-xs {
  font-size: 11px;
  color: #555;
  line-height: 1.4;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #068FFF;
  color: white;
}

.btn-full:hover {
  background: #0077dd;
}

/* --- BUTTONS --- */
.btn-sm {
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
}



/* 5. INTEGRATIONS */
.integration-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.8;
}

.integration-strip img {
  opacity: 0.6;
  transition: 0.3s cubic-bezier(0.3, 1.5, 0.3, 1);
  filter: grayscale(100%);
}

.integration-strip img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}


/* 6. BEFORE / AFTER */
.value-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  /* Center divider line via gap + bg */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  padding: 1px;
  border-radius: 24px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.value-card {
  background: #050505;
  /* Deep black by default */
  padding: 40px;
  height: 100%;
  position: relative;
  transition: 0.3s;
}

/* "After" card enhancement */
.value-card.after {
  background: radial-gradient(circle at top right, rgba(6, 143, 255, 0.1) 0%, rgba(5, 5, 5, 1) 60%);
}

.value-card.after:hover {
  background: radial-gradient(circle at top right, rgba(6, 143, 255, 0.15) 0%, rgba(10, 10, 10, 1) 60%);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: 1px;
}

.value-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.value-card.after li {
  color: #e0e0e0;
}


.narrative-step {
  padding-left: 0;
}
}

/* 7. CTA POLISH */
/* Add a glowing horizon to the CTA section via new class in .section-bg if desired, or reuse */
.bg-svc-cta-horizon {
  background: #000;
  overflow: hidden;
}

.bg-svc-cta-horizon::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse at bottom, rgba(6, 143, 255, 0.2) 0%, transparent 70%);
  filter: blur(40px);
}


/* ========================================= */
/* SERVICE PAGE ANIMATED BACKGROUNDS (BEAMS) */
/* ========================================= */

@keyframes rotateBeam {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes scanLight {
  0% {
    transform: translateX(-100%) skewX(-20deg);
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: translateX(200%) skewX(-20deg);
    opacity: 0;
  }
}

/* Intro: Intense Rotating Colored Beams */
/* Intro: Intense Rotating Colored Beams */
/* .bg-svc-intro container rule removed (duplicate) - see line ~3890 */

/* Layer 1: Clockwise Blue/Cyan Beams */
.bg-svc-intro::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300vmax;
  height: 300vmax;
  /* Massive size */
  background: conic-gradient(from 0deg,
      rgba(6, 143, 255, 0.5) 0deg, transparent 40deg,
      rgba(6, 143, 255, 0.4) 120deg, transparent 160deg,
      rgba(6, 143, 255, 0.5) 240deg, transparent 280deg,
      rgba(6, 143, 255, 0.4) 360deg);
  transform: translate(-50%, -50%);
  animation: rotateBeam 40s linear infinite;
  opacity: 0.5;
  /* Higher intensity */
  mix-blend-mode: screen;
  filter: blur(80px);
  /* Soften the digital edge */
  will-change: transform;
  /* PERFORMANCE BOOST */
}

/* Layer 2: Counter-Clockwise Purple/Pink Beams */
.bg-svc-intro::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300vmax;
  height: 300vmax;
  /* Massive size */
  background: conic-gradient(from 180deg,
      rgba(122, 40, 203, 0.5) 0deg, transparent 40deg,
      rgba(255, 59, 150, 0.4) 140deg, transparent 180deg,
      rgba(122, 40, 203, 0.5) 260deg, transparent 300deg);
  transform: translate(-50%, -50%);
  animation: rotateBeam 50s linear infinite reverse;
  opacity: 0.4;
  /* Higher intensity */
  mix-blend-mode: screen;
  filter: blur(90px);
  will-change: transform;
  /* PERFORMANCE BOOST */
}

/* Target: Scanning Searchlight (Red/Warm Hint) */
/* .bg-svc-target container rule removed (duplicate) - see line ~3900 */

.bg-svc-target::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.08), transparent);
  transform: skewX(-20deg) translateX(-150%);
  animation: scanLight 8s ease-in-out infinite;
  filter: blur(20px);
}

/* Process: Flowing Data Streams/Rays */
.bg-svc-process {
  background: #050505;
  overflow: hidden;
}

/* Multiple rays */
.bg-svc-process::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(6, 143, 255, 0.1) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: pulse-glow 5s infinite alternate;
}

/* Scenario: Spotlight from Top */
.bg-svc-scenario {
  background: #000;
  overflow: hidden;
}

.bg-svc-scenario::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 20%;
  width: 300px;
  height: 1000px;
  background: linear-gradient(to bottom, rgba(6, 143, 255, 0.15), transparent);
  transform: rotate(15deg);
  filter: blur(40px);
  pointer-events: none;
}

/* Value: Rising Light (Green/Growth) */
.bg-svc-value {
  background: #000;
  overflow: hidden;
}

.bg-svc-value::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(39, 201, 63, 0.15), transparent 70%);
  transform: translateX(-50%);
  filter: blur(80px);
  animation: pulse-glow 6s ease-in-out infinite;
}

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

  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ========================================= */
/* CONTACT PAGE (SAAS FILTERING)             */
/* ========================================= */

.contact-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: radial-gradient(circle at top center, rgba(6, 143, 255, 0.05), transparent 60%);
}

/* FILTER SECTION */
.filter-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.filter-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.filter-col:hover {
  border-color: rgba(255, 145, 228, 0.5);
  box-shadow: 0 0 30px rgba(255, 145, 228, 0.15);
  transform: translateY(-5px);
}

.contact-col {
  border-top: 1px solid rgba(6, 143, 255, 0.3);
  background: linear-gradient(to bottom, rgba(6, 143, 255, 0.05), transparent);
}

.col-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.icon-badge.blue {
  background: rgba(6, 143, 255, 0.1);
  color: #068FFF;
  border: 1px solid rgba(6, 143, 255, 0.2);
}

.icon-badge.white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.col-header h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
  color: #fff;
}

/* Checklist in Contact Col */
.check-list-styled {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.check-list-styled li {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(6, 143, 255, 0.3);
}

.check-list-styled li strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-size: 16px;
}

.check-list-styled li p {
  color: #888;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Route Cards in Self-Serve Col */
.route-card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.route-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.2s;
}

.route-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.rc-icon {
  font-size: 20px;
}

.rc-content {
  flex: 1;
}

.rc-content strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.rc-content span {
  display: block;
  color: #666;
  font-size: 13px;
}

.rc-arrow {
  color: #444;
  font-family: monospace;
}

.route-card:hover .rc-arrow {
  color: #fff;
}


/* MAIN FORM */
.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px;
  border-radius: 24px;
}

.qualify-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #068FFF;
  background: #000;
  box-shadow: 0 0 0 4px rgba(6, 143, 255, 0.1);
}

.form-note {
  font-size: 12px;
  color: #555;
  margin-top: 15px;
  text-align: center;
}

/* SLA Badge */
.sla-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 143, 255, 0.1);
  border: 1px solid rgba(6, 143, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  color: #068FFF;
  font-weight: 600;
  font-size: 14px;
}

/* EMAIL LINK STYLES (New) */
.email-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 20px;
  background: rgba(6, 143, 255, 0.1);
  border-radius: 8px;
  color: #068FFF;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid transparent;
}

.email-direct-link:hover {
  background: rgba(6, 143, 255, 0.2);
  border-color: rgba(6, 143, 255, 0.3);
  transform: translateY(-2px);
}

/* Responsive Contact */
@media (max-width: 900px) {
  .filter-split {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* NEWSLETTER SECTION (New) */
.newsletter-card {
  background: radial-gradient(circle at center, rgba(30, 30, 30, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 40px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(6, 143, 255, 0.03), transparent 60%);
  animation: rotateBeam 20s linear infinite;
  pointer-events: none;
}

.icon-glow {
  font-size: 60px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 14px;
  color: #aaa;
  font-weight: 500;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #068FFF;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(6, 143, 255, 0.7);
  animation: pulseBlue 2s infinite;
}

@keyframes pulseBlue {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 143, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(6, 143, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(6, 143, 255, 0);
  }
}

/* ========================================= */
/* SOURCES GRID (Quest-ce que l'IA)          */
/* ========================================= */

.source-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.source-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.source-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(6, 143, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.s-icon {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: 0.3s;
}

.source-card:hover .s-icon {
  background: rgba(6, 143, 255, 0.1);
  transform: scale(1.1);
}

.s-info {
  display: flex;
  flex-direction: column;
}

.s-info h4 {
  margin: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.s-info span {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

/* ========================================= */
/* NEON PEN ERROR PAGES (PREMIUM POLISH)     */
/* ========================================= */

.error-page-body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050505;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  /* Hide default cursor for immersion */
}

/* Custom Cursor (Optional - only if JS adds one, otherwise rely on canvas trail) */
/* Reverting to default cursor for usability if no custom cursor element exists */
.error-page-body:hover {
  cursor: crosshair;
}

/* 1. Canvas Background */
#neon-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  /* Let clicks pass through */
}

/* 2. Giant Background Number */
.error-giant-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35vw;
  /* Massive responsive size */
  font-weight: 900;
  color: #111;
  /* Solid dark grey, visible against #050505 */
  z-index: 2;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.05em;
  transition: 0.5s;
}

/* 3. Foreground Content - Glass Card */
.error-content-centered {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 500px;
  /* Tighter width */
  padding: 60px 40px;
  background: rgba(10, 10, 10, 0.4);
  /* Very dark glass */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);

  /* Entrance Animation */
  opacity: 0;
  transform: translateY(30px);
  animation: floatUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

@keyframes floatUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-title-main {
  font-size: 32px;
  /* More elegant sizing */
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #fff;
  letter-spacing: -0.5px;
}

.error-desc {
  font-size: 16px;
  color: #888;
  /* Muted text */
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 500;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Refined Buttons for Error Page */
.error-actions .btn {
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Horizontal Enterprise Card */
.plan-card.horizontal {
  max-width: 1200px;
  margin: 30px auto 0;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.plan-card.horizontal .plan-info {
  flex: 1;
  min-width: 250px;
}

.plan-card.horizontal .plan-features {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 40px;
  flex: 2;
}

.plan-card.horizontal .plan-actions {
  flex: 0 0 auto;
  text-align: right;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

@media (max-width: 1024px) {
  .plan-card.horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-card.horizontal .plan-features {
    width: 100%;
    margin-top: 30px;
  }

  .plan-card.horizontal .plan-actions {
    width: 100%;
    margin-top: 30px;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .plan-card.horizontal .plan-features {
    grid-template-columns: 1fr;
  }

  .plan-card.horizontal .plan-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* --- SCROLL TEXT REVEAL COMPONENT --- */
.sylen-scroll-section {
  position: relative;
  height: 200vh;
  /* Balanced: Long enough to lock, short enough to avoid gaps */
  /* Long scroll track for "Locked" feel */
  background: #000;
  z-index: 10;
}

.sylen-sticky-content {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.sylen-text-container {
  max-width: 1000px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sylen-scroll-text {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.35em;
}

.sylen-word {
  opacity: 0.1 !important;
  /* Force dim */
  transition: opacity 0.1s linear;
  color: #fff;
}

/* Highlighted numbers */
.sylen-highlight {
  font-size: 1.4em;
  color: #068FFF;
  font-weight: 900;
  letter-spacing: -1px;
}

.sylen-word.active.highlight-wrapper {
  opacity: 1 !important;
}

.sylen-word.active {
  opacity: 1 !important;
  /* Force bright */
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
  transform: scale(1.02);
}

.sylen-word.active .sylen-highlight {
  text-shadow: 0 0 50px rgba(6, 143, 255, 0.8);
}

.reveal-cta-box {
  margin-top: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.reveal-cta-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-cta-btn {
  background: #fff;
  color: #000;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 99px;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.reveal-cta-btn:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .sylen-scroll-section {
    height: 150vh;
    /* Shorter on mobile for ease */
  }

  .sylen-scroll-text {
    font-size: 32px;
    gap: 0.25em;
  }

  .reveal-cta-box {
    margin-top: 30px;
  }

  .reveal-cta-btn {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/* SERVICE SIDE SPLIT SECTION */
.side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.side-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.side-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.side-card .card-content {
  padding: 40px 40px 20px 40px;
}

.side-card h3 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
}

.visual-mockup {
  width: 100%;
  margin-top: auto;
  display: block;
  line-height: 0;
}

@media (max-width: 900px) {
  .side-grid {
    grid-template-columns: 1fr;
  }
}

/* Orange Highlight Modifier */
.sylen-highlight {
  color: #4E4FEB;
  /* Fallback/Default Blue */
}

.sylen-highlight.orange {
  color: #FF9F1C;
  text-shadow: 0 0 50px rgba(255, 159, 28, 0.6);
}

.sylen-word.active .sylen-highlight.orange {
  text-shadow: 0 0 50px rgba(255, 159, 28, 0.8);
}

/* TIMELINE "ENSUITE" SECTION */
.timeline-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 0;
  position: relative;
  flex-wrap: wrap;
}

/* Line connecting steps (Desktop only) */
.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border);
  z-index: 0;
  transform: translateY(-50%);
}

.timeline-step {
  position: relative;
  z-index: 1;
  background: #0F1117;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  flex: 1;
  min-width: 200px;
  aspect-ratio: 1/1;
  /* Square */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Icons within steps */
.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.timeline-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}

.timeline-step p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* Specific Colors */
/* Step 2: Onboarding (Blue) */
.timeline-step.blue {
  border-color: rgba(6, 143, 255, 0.3);
  box-shadow: 0 0 20px rgba(6, 143, 255, 0.1);
}

.timeline-step.blue .step-icon {
  background: rgba(6, 143, 255, 0.2);
  color: #068FFF;
}

/* Step 3: Config (Orange) */
.timeline-step.orange {
  border-color: rgba(255, 159, 28, 0.3);
  box-shadow: 0 0 20px rgba(255, 159, 28, 0.1);
}

.timeline-step.orange .step-icon {
  background: rgba(255, 159, 28, 0.2);
  color: #FF9F1C;
}

@media (max-width: 900px) {
  .timeline-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .timeline-wrapper::before {
    display: none;
    /* No line on mobile stack */
  }

  .timeline-step {
    aspect-ratio: auto;
    /* Not square on mobile */
    flex-direction: row;
    text-align: left;
    padding: 20px;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
  }

  .step-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}