/* ===== GLOBAL VARIABLES ===== */
:root {
  --primary: #0385E5;
  --primary-light: #9FDDFF;
  --dark: #041D39;
  --dark-alt: #0A2540;
  --gray-light: #F4F6F8;
  --gray: #C4C4C7;
  --gray-dark: #4A5568;
  --white: #FFFFFF;
  
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(4,29,57,0.05);
  --shadow-md: 0 8px 30px rgba(4,29,57,0.08);
  --shadow-lg: 0 20px 50px rgba(4,29,57,0.15);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --max-width: 1200px;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; position: relative; }
body {
  font-family: var(--font-body);
  background-color: #f8fafc; /* Distinct background for framing */
  color: var(--dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--dark); line-height: 1.15; font-weight: 700; margin-bottom: 0.5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); line-height: 1.1; }
h4 { font-size: clamp(1.1rem, 3vw, 1.25rem); }
a { text-decoration: none; color: inherit; }
p { font-size: 1.125rem; color: var(--gray-dark); margin-bottom: 1.5rem; }

img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(16px, 5vw, 24px); width: 100%; }
.text-center { text-align: center; }
.text-light-blue { 
  background: hsla(201, 100%, 81%, 1);
  background: linear-gradient(360deg, hsla(201, 100%, 81%, 1) 0%, hsla(217, 100%, 50%, 1) 100%);
  background: -moz-linear-gradient(360deg, hsla(201, 100%, 81%, 1) 0%, hsla(217, 100%, 50%, 1) 100%);
  background: -webkit-linear-gradient(360deg, hsla(201, 100%, 81%, 1) 0%, hsla(217, 100%, 50%, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#9FDDFF", endColorstr="#0061FF", GradientType=1 );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
  overflow: visible;
}

@media (max-width: 768px) {
  .text-light-blue {
    display: inline;
    padding-bottom: 0;
    margin-bottom: 0;
    background-clip: text;
    -webkit-background-clip: text;
  }
}
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.pb-6 { padding-bottom: 5rem; }
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.bg-light-alt { background: var(--white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: var(--transition);
  border: none;
}
.btn svg { width: 18px; height: 18px; }
.btn-dark-solid {
  background: #18181A; color: var(--white);
}
.btn-dark-solid:hover { background: #000; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.btn-glass {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-glass-dark {
  background: rgba(255,255,255,0.15); color: var(--white);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2);
}
.btn-glass-dark:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ===== HEADER (PILL) ===== */
.header {
  position: fixed; top: 24px; left: 0; width: 100%; z-index: 1000;
  padding: 0 24px;
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto;
  background: var(--white); border-radius: 50px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px 8px 12px;
  box-shadow: 0 4px 20px rgba(4,29,57,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.header.scrolled { top: 16px; }
.header.scrolled .header-inner { box-shadow: 0 8px 30px rgba(4,29,57,0.12); }
.logo { display: inline-block; position: relative; width: 120px; height: 32px; margin-left: 0; margin-top: 4px; }
.logo img { position: absolute; top: 50%; left: 0; width: 100%; height: auto; transform: translateY(-50%) scale(1.3); transform-origin: left center; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--gray-dark);
  transition: var(--transition); display: inline-flex; align-items: center;
}
.nav-links a::after {
  content: " "; display: inline-block; width: 5px; height: 5px;
  border-right: 1.5px solid var(--gray-dark); border-bottom: 1.5px solid var(--gray-dark);
  transform: rotate(45deg) translateY(-2px); margin-left: 8px; transition: var(--transition);
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { border-color: var(--dark); }

.btn-dark-pill {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center;
  background: #1a1a1c; color: var(--white);
  padding: 12px 28px 12px 52px; border-radius: 50px; font-weight: 500; font-size: 0.95rem;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-dark-pill:hover { background: #000; padding: 12px 52px 12px 28px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.btn-icon-circle {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; background: var(--white); color: var(--dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-icon-circle svg { width: 14px; height: 14px; }
.btn-dark-pill:hover .btn-icon-circle, .btn-slide:hover .btn-icon-circle { 
  left: calc(100% - 40px); 
}

.btn-primary-pill {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--white);
  padding: 12px 28px 12px 52px; border-radius: 50px; font-weight: 500; font-size: 0.95rem;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-primary-pill:hover { background: #026dc2; padding: 12px 52px 12px 28px; box-shadow: 0 8px 20px rgba(3, 133, 229, 0.25); }

/* Global button slide animation class */
.btn-slide {
  position: relative; overflow: hidden;
  padding: 12px 28px 12px 52px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-slide:hover {
  padding: 12px 52px 12px 28px;
}
.btn-slide.w-full {
  padding-left: 0; padding-right: 0;
}
.btn-slide.w-full span.btn-text {
  display: inline-block; padding-left: 32px; padding-right: 0;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-slide.w-full:hover span.btn-text {
  padding-left: 0; padding-right: 32px;
}


.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; margin-right: 16px;
}
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ===== 1. HERO SECTION ===== */
.hero-wrapper {
  padding: 12px;
  background: var(--white);
}
.hero-centered {
  padding: 180px 0 80px 0;
  background: linear-gradient(135deg, #021b4a 0%, #0d4a86 50%, #1cb1ec 100%);
  border-radius: 40px;
  color: var(--white); text-align: center; position: relative; overflow: hidden;
  width: 100%;
}
.hero-title { 
  font-size: clamp(2.2rem, 9vw, 4rem); 
  font-weight: 850; 
  letter-spacing: -0.04em; 
  line-height: 1.2; 
  margin-bottom: clamp(16px, 4vw, 24px); 
  color: var(--white); 
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.desktop-br { display: block; content: ""; margin-bottom: 0; }
@media (max-width: 768px) {
  .desktop-br { display: none; }
}
.hero-desc { font-size: clamp(1rem, 2.5vw, 1.15rem); color: rgba(255,255,255,0.85); line-height: 1.6; max-width: 680px; margin: 0 auto; margin-bottom: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 600;
  color: var(--primary-light); margin-bottom: 30px; backdrop-filter: blur(10px);
}
.badge-svg { width: 16px; height: 16px; color: var(--primary-light); }
.hero-cta-group { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; position: relative; z-index: 10; }

/* Fan of Cards in Hero */
.hero-visual { position: relative; height: 520px; display: flex; justify-content: center; pointer-events: none; margin-bottom: -180px; margin-top: 100px; }
.card-fan-container { position: relative; width: 340px; height: 500px; perspective: 1500px; }

.rotating-bg-cards {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  transform-origin: center center;
  animation: swayFan 4s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes swayFan { 0% { transform: rotate(-5deg) translateY(20px); } 100% { transform: rotate(5deg) translateY(20px); } }

.rb-card {
  position: absolute; top: 50%; left: 50%; width: 280px; height: 440px;
  margin-left: -140px; margin-top: -200px; transform-origin: 50% 320px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.15); border-radius: 20px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
}
.rb-card-1 { transform: rotate(-35deg); opacity: 0.1; }
.rb-card-2 { transform: rotate(-18deg); opacity: 0.3; }
.rb-card-3 { transform: rotate(0deg); opacity: 0.6; }
.rb-card-4 { transform: rotate(18deg); opacity: 0.3; }
.rb-card-5 { transform: rotate(35deg); opacity: 0.1; }

/* Center Code-based Musician Profile Card */
.musician-profile-card {
  position: absolute; top: 50%; left: 50%; width: 350px; height: 540px;
  margin-left: -175px; margin-top: -240px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.05);
  overflow: hidden;
  pointer-events: auto;
}

.mpc-glow {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(3, 133, 229, 0.15) 0%, transparent 50%);
  pointer-events: none;
  animation: mpcGlowRotate 10s linear infinite;
}
@keyframes mpcGlowRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.mpc-header { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; position: relative; z-index: 2; }
.mpc-avatar-wrap { position: relative; width: 72px; height: 72px; flex-shrink: 0; }
.mpc-avatar { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; border: 2px solid var(--white); position: relative; }
.mpc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.live-status { position: absolute; bottom: -4px; right: -4px; background: #FF3366; color: white; font-size: 8px; font-weight: 800; padding: 2px 6px; border-radius: 4px; border: 1.5px solid #0d1117; }
.mpc-avatar-ring { position: absolute; inset: -6px; border: 1px solid rgba(3, 133, 229, 0.5); border-radius: 50%; animation: mpcPulse 2s infinite; }
@keyframes mpcPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.15); opacity: 0; } }

.mpc-ident h3 { color: white; font-size: 1.4rem; margin: 0; display: flex; align-items: center; gap: 6px; }
.v-badge svg { width: 16px; height: 16px; color: #0385E5; }
.mpc-ident p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }

.mpc-stats { display: flex; gap: 24px; margin-bottom: 32px; position: relative; z-index: 2; }
.mpc-stat { display: flex; flex-direction: column; }
.mpc-stat .val { color: white; font-size: 1.1rem; font-weight: 700; }
.mpc-stat .lbl { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.mpc-player { background: rgba(255,255,255,0.05); border-radius: 20px; padding: 20px; margin-bottom: 32px; position: relative; z-index: 2; }
.player-top { display: flex; justify-content: space-between; margin-bottom: 12px; }
.track-info { color: white; font-size: 0.85rem; font-weight: 600; }
.time { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.progress-bar { width: 100%; height: 5px; background: rgba(255,255,255,0.1); border-radius: 10px; margin-bottom: 16px; overflow: hidden; }
.progress-fill { width: 75%; height: 100%; background: var(--primary); border-radius: 10px; }
.player-btns { display: flex; justify-content: center; gap: 20px; align-items: center; }
.p-btn { background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; padding: 0; transition: var(--transition); }
.p-btn svg { width: 18px; height: 18px; }
.p-btn:hover { color: white; transform: scale(1.1); }
.p-btn.play { width: 44px; height: 44px; background: var(--white); color: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.p-btn.play svg { width: 20px; height: 20px; margin-left: 2px; }
.p-btn.play:hover { background: var(--primary-light); transform: scale(1.05); }

.mpc-socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 32px; position: relative; z-index: 2; }
.s-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
.s-link svg { width: 18px; height: 18px; }
.s-link:hover { background: rgba(3, 133, 229, 0.2); color: var(--primary-light); transform: translateY(-3px); }

.mpc-footer { position: relative; z-index: 2; }
.btn-mpc-follow { width: 100%; background: var(--primary); color: white; border: none; padding: 14px; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); box-shadow: 0 10px 20px rgba(3, 133, 229, 0.3); }
.btn-mpc-follow:hover { background: #0274cb; transform: translateY(-2px); box-shadow: 0 15px 30px rgba(3, 133, 229, 0.4); }

/* ===== 2. TRUST SECTION ===== */
.trust-section { padding: 50px 0; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.03); position: relative; overflow: hidden; }
.trust-title { max-width: var(--max-width); margin: 0 auto; text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; }
.marquee-wrapper { position: relative; width: 100%; display: flex; overflow: hidden; }
.marquee-wrapper::before, .marquee-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 15vw; z-index: 2; pointer-events: none; }
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.marquee-track { display: flex; width: max-content; animation: scrollMarquee 40s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-content { display: flex; align-items: center; gap: 70px; padding-right: 70px; }
.t-logo { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 1.15rem; color: var(--gray-dark); opacity: 0.6; transition: var(--transition); white-space: nowrap; cursor: default; }
.t-logo svg { color: var(--primary); transition: var(--transition); }
.t-logo:hover { opacity: 1; color: var(--dark); }

@keyframes scrollMarquee { 
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION WRAPPERS ===== */
.section { padding: 100px 0; }
.pt-0 { padding-top: 0; }
.pb-40 { padding-bottom: 40px; }
.badge-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(3,133,229,0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(3,133,229,0.15);
}
.badge-blue svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.badge-dark svg { width: 14px; height: 14px; color: #fff; flex-shrink: 0; }
.section-header.light .badge-blue {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.section-header.light .badge-blue svg { color: var(--white); }
.section-header { margin-bottom: 50px; }
.section-header h2 { font-size: 2.8rem; letter-spacing: -0.02em; }
.section-header.center { text-align: center; max-width: 650px; margin-left: auto; margin-right: auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }

/* ===== 3. LARGE DARK CARD ===== */
.large-dark-card {
  background: linear-gradient(135deg, var(--dark), var(--dark-alt));
  border-radius: var(--radius-xl); padding: 60px; color: var(--white);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 30px 60px rgba(4,29,57,0.2);
}
.ldc-content { max-width: 500px; position: relative; z-index: 2; margin-bottom: 80px; }
.ldc-content h2 { color: var(--white); font-size: 3rem; }
.ldc-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.btn-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); border: 2px solid var(--white); }
.ldc-visual {
  position: absolute; right: 0; top: 0; width: 65%; height: 100%;
  pointer-events: none; overflow: hidden;
}
/* visual abstraction matching the transition from traditional to digital */
.silhouette-graphic {
  position: absolute; right: 0; bottom: 0; width: 100%; height: 100%;
  background: url('assets/broken-cards-bg.jpg') 75% center/cover no-repeat;
  opacity: 0.8;
  mask-image: linear-gradient(to left, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
}
.silhouette-graphic::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(3,133,229,0.2) 100%);
  mix-blend-mode: overlay;
}
.ldc-stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px); padding: 24px; border-radius: var(--radius-lg);
  position: relative; z-index: 2; margin-top: auto;
}
.stat h4 { font-size: 2rem; color: var(--white); margin-bottom: 4px; }
.stat p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; font-weight: 500; }

/* ===== 4. SPLIT GRID (Make Networking Easy) ===== */
.split-grid-box { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sg-item-box { display: flex; gap: 20px; margin-bottom: 30px; background: var(--white); padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.02); transition: var(--transition); }
.sg-item-box:hover { transform: translateX(10px); box-shadow: var(--shadow-md); border-color: rgba(3,133,229,0.1); }
@media (max-width: 768px) {
  .sg-item-box:hover { transform: translateX(4px); }
}
.sg-icon-box {
  width: 48px; height: 48px; border-radius: 12px; background: var(--primary);
  color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sg-text h4 { margin-bottom: 8px; }
.sg-text p { font-size: 1rem; margin: 0; }

.interactive-features-panel {
  position: relative; height: 500px; background: linear-gradient(135deg, #1A1C23, #0D0E15);
  border-radius: var(--radius-xl); display: flex; justify-content: center; align-items: center;
  overflow: visible; box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}
.ifp-circle-grid {
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px; background-position: center center;
  position: relative; overflow: hidden;
}
.moving-dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary-light); box-shadow: 0 0 10px var(--primary-light), 0 0 20px var(--primary);
  top: 50%; left: 50%; margin: -3px 0 0 -3px;
}
.dot-1 { animation: orbitDot 15s linear infinite; }
.dot-2 { animation: orbitDot 20s linear infinite reverse; }
@keyframes orbitDot {
  0% { transform: rotate(0deg) translateX(190px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(190px) rotate(-360deg); }
}

.ifp-center-qr {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 130px; height: 130px; background: var(--white); border-radius: 20px;
  padding: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr);
  gap: 6px; z-index: 10; overflow: hidden;
}
.qr-block { background: #111; border-radius: 4px; width: 100%; height: 100%; display: block; }
.qr-block.empty { background: transparent; }

.qr-scanner-line {
  position: absolute; left: 0; width: 100%; height: 3px;
  background: var(--primary); box-shadow: 0 0 15px var(--primary-light), 0 0 30px var(--primary);
  animation: scanUpDown 2s ease-in-out infinite alternate;
  z-index: 11;
}
@keyframes scanUpDown {
  0% { top: 10px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 116px; opacity: 0; }
}

.feature-badge {
  position: absolute; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); padding: 10px 16px 10px 10px; border-radius: 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); color: white; width: max-content;
  z-index: 12; pointer-events: none;
}
.fb-icon {
  width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fb-icon svg { width: 18px; height: 18px; color: white; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fb-text { font-weight: 500; font-size: 0.95rem; line-height: 1; }

.bg-blue { background: #3B82F6; box-shadow: 0 4px 15px rgba(59,130,246,0.4); }
.bg-orange { background: #F59E0B; box-shadow: 0 4px 15px rgba(245,158,11,0.4); }
.bg-light-blue { background: #38BDF8; box-shadow: 0 4px 15px rgba(56,189,248,0.4); }
.bg-purple { background: #8B5CF6; box-shadow: 0 4px 15px rgba(139,92,246,0.4); }
.bg-pink { background: #EC4899; box-shadow: 0 4px 15px rgba(236,72,153,0.4); }
.bg-green { background: #22C55E; box-shadow: 0 4px 15px rgba(34,197,94,0.4); }

.badge-1 { top: 15%; left: 0px; animation: floatBadge 6s infinite ease-in-out alternate; }
.badge-2 { top: 45%; left: -30px; animation: floatBadge 5s infinite ease-in-out alternate-reverse; }
.badge-3 { bottom: 15%; left: 20px; animation: floatBadge 7s infinite ease-in-out alternate; }
.badge-4 { top: 20%; right: 20px; animation: floatBadge 5.5s infinite ease-in-out alternate-reverse; }
.badge-5 { top: 48%; right: -20px; animation: floatBadge 6.5s infinite ease-in-out alternate; }
.badge-6 { bottom: 15%; right: 10px; animation: floatBadge 4s infinite ease-in-out alternate-reverse; }

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* ===== 5. FEATURES 2x2 GRID ===== */
.bg-deep-navy {
  background: linear-gradient(180deg, var(--gray-light) 0%, #092b5f 20%, #061c40 100%);
  color: var(--white);
}
.grid-2x2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.f-card-large {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); padding: 40px; display: flex; flex-direction: column; overflow: hidden;
  position: relative; transition: var(--transition);
}
.f-card-large:hover { transform: translateY(-5px); background: rgba(255,255,255,0.05); }
.fcl-header h4 { color: var(--white); font-size: 1.5rem; }
.fcl-header p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.fcl-visual {
  flex-grow: 1; min-height: 200px; margin-top: 30px; border-radius: var(--radius-lg);
  background: rgba(0,0,0,0.3); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
  gap: 12px;
}
/* specific card visuals */
.chart-bg { background: linear-gradient(45deg, rgba(3,133,229,0.1), transparent); }
.pulse-line { width: 80%; height: 60px; border-bottom: 2px solid var(--primary-light); background: linear-gradient(180deg, rgba(159,221,255,0.1), transparent); clip-path: polygon(0 40%, 20% 60%, 40% 20%, 60% 80%, 80% 30%, 100% 50%, 100% 100%, 0 100%); position: relative; bottom: -30px; }
.rocket-bg { background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05)); }
.rocket-icon {
  width: 100px; height: 100px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 40px rgba(3,133,229,0.4);
}
.shield-circle { width: 80px; height: 80px; border: 2px solid rgba(159,221,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.shield-circle::before, .shield-circle::after { content: ''; position: absolute; border: 1px solid rgba(159,221,255,0.1); border-radius: 50%; }
.shield-circle::before { inset: -20px; } .shield-circle::after { inset: -40px; }
.mock-input { background: white; padding: 10px 20px; border-radius: 20px; color: var(--dark); font-weight: 500; font-family: monospace; }
.mock-btn { background: var(--primary); padding: 10px 30px; border-radius: 20px; color: white; font-weight: 600; }

/* Social Icons Tile Layout */
.socials-tile-visual {
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px !important;
}
.social-tile-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
}
.social-tile {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.social-tile svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}
.st-whatsapp:hover { background: #25D366; border-color: #25D366; color: white; box-shadow: 0 0 20px rgba(37, 211, 102, 0.3); }
.st-instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }
.st-facebook:hover { background: #1877F2; border-color: #1877F2; }
.st-linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.st-x:hover { background: #000; border-color: #333; }
.center-btn { display: flex; justify-content: center; }

/* ===== 6. USE CASES BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 24px;
}
.bento-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}
.bento-icon {
  width: 48px;
  height: 48px;
  background: var(--dark-alt); /* Deep dark blue */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.bento-icon svg { width: 22px; height: 22px; color: white; }
.bento-icon.bg-white { background: var(--white); }
.bento-icon.text-dark svg { color: var(--dark-alt); }

.bento-card h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-alt);
  margin-bottom: 12px;
}
.bento-card p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Modifier Classes */
.bento-tall {
  grid-column: 4;
  grid-row: 1 / span 2;
  background: url('assets/portfolio-bg.jpg') center/cover no-repeat;
  color: white;
  justify-content: flex-end;
  padding: 40px;
}
.bento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(4,29,57,0.95) 100%);
  z-index: 1;
}
.bento-tall .bento-content { position: relative; z-index: 2; }
.bento-tall h4 { color: white; font-size: 1.5rem; }
.bento-tall p { color: rgba(255,255,255,0.8); }

.bento-wide {
  grid-column: 2 / span 2;
  flex-direction: row;
  align-items: center;
  background: var(--dark-alt);
  color: white;
  padding: 0;
  gap: 0;
}
.bento-wide .bento-content {
  flex: 1;
  padding: 40px;
}
.bento-wide h4 { color: white; font-size: 1.4rem; }
.bento-wide p { color: rgba(255,255,255,0.7); }
.bento-wide-visual {
  flex: 1;
  height: 100%;
  background: url('assets/conferences-bg.jpg') center/cover no-repeat;
  position: relative;
}
.mock-qr-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(3,133,229,0.4));
  mix-blend-mode: overlay;
}
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 20px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-explore:hover {
  background: white; color: var(--dark-alt);
}

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-tall { grid-column: 1 / span 2; grid-row: auto; min-height: 300px; }
  .bento-wide { grid-column: 1 / span 2; flex-direction: column; }
  .bento-wide-visual { width: 100%; min-height: 200px; }
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-tall, .bento-wide { grid-column: 1; }
}

/* ===== 7. FAQ ===== */
.faq-hero-card {
  background: linear-gradient(135deg, #021b4a 0%, #0d4a86 50%, #1cb1ec 100%);
  border-radius: 40px;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.faq-hero-card .faq-left h2 { color: var(--white); }
.faq-hero-card .faq-left p { color: rgba(255,255,255,0.8); }
.faq-hero-card .faq-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  padding: 24px;
  cursor: pointer;
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.faq-hero-card .faq-question { color: var(--white); font-weight: 600; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; }
.faq-hero-card .faq-question svg { stroke: rgba(255,255,255,0.7); }
.faq-hero-card .faq-answer { color: rgba(255,255,255,0.75); }

.split-faq { display: flex; gap: 60px; }
.faq-left { flex: 1; }
.faq-right { flex: 1.5; }
.faq-item {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md); margin-bottom: 16px; padding: 24px;
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.faq-question { font-weight: 600; font-size: 1.1rem; color: var(--dark); display: flex; justify-content: space-between; align-items: center; }
.faq-answer { display: none; margin-top: 16px; color: var(--gray-dark); }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .arrow { transform: rotate(45deg); color: var(--primary); }

/* ===== FINAL CTA ===== */
.final-cta-block .container { position: relative; z-index: 2; }
.vibrant-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 80px; border-radius: var(--radius-xl); text-align: center; color: var(--white);
  box-shadow: 0 30px 60px rgba(3,133,229,0.3); position: relative; overflow: hidden;
}
.vibrant-cta::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.vibrant-cta h2 { color: var(--white); font-size: 3rem; position: relative; z-index: 2; margin-bottom: 16px; }
.vibrant-cta p { color: rgba(255,255,255,0.9); font-size: 1.25rem; font-weight: 500; margin-bottom: 40px; position: relative; z-index: 2; }
.cta-actions { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 2; }

/* ===== 7. PRICING SECTION ===== */
.pricing-section {
  background: var(--gray-light);
}
.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.toggle-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-dark);
  transition: var(--transition);
}
.toggle-label.active {
  color: var(--dark);
}
.pricing-toggle {
  width: 60px;
  height: 32px;
  background: var(--dark);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.pricing-toggle .toggle-circle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}
.pricing-toggle.yearly .toggle-circle {
  left: 32px;
}
.save-badge {
  background: var(--primary-light);
  color: var(--dark);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-left: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(3,133,229,0.1);
}
.pricing-card.featured {
  background: var(--dark);
  color: var(--white);
  border: none;
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(4,29,57,0.2);
  z-index: 2;
}
.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}
.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.pc-header {
  margin-bottom: 32px;
}
.plan-name {
  font-weight: 700;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 16px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
}
.pricing-amount .amount {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
}
.pricing-amount .period {
  font-size: 1rem;
  color: var(--gray-dark);
}
.featured .pricing-amount .period {
  color: rgba(255,255,255,0.6);
}
.plan-desc {
  font-size: 1rem;
  margin-bottom: 0;
}

.pc-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 500;
}
.pc-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}
.pc-features li.disabled {
  color: rgba(0,0,0,0.3);
  text-decoration: line-through;
}
.pc-features li.disabled svg {
  color: rgba(0,0,0,0.3);
}

.pricing-card .btn-glass-dark {
  background: var(--dark-alt); /* Make it solid dark on the white cards */
  color: white;
  border: none;
  backdrop-filter: none;
}
.pricing-card .btn-glass-dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.pc-footer .w-full {
  width: 100%;
}

/* ===== FOOTER ===== */
.footer { background: #111; color: var(--white); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { margin-bottom: 20px; margin-left: 0; }
.footer-brand p { color: rgba(255,255,255,0.5); margin-top: 16px; }
.footer-links h4 { color: var(--white); margin-bottom: 24px; font-size: 1.1rem; }
.footer-links a { display: block; color: rgba(255,255,255,0.5); margin-bottom: 12px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); }

/* ===== ANIMATIONS REVEAL INTERSECTION OBSERVER ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Directional variants */
.reveal.left { transform: translateX(-40px); }
.reveal.left.active { transform: translateX(0); }
.reveal.right { transform: translateX(40px); }
.reveal.right.active { transform: translateX(0); }

/* Zoom variant like GSAP scale bounce */
.reveal.zoom { transform: scale(0.9); opacity: 0; transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1); }
.reveal.zoom.active { transform: scale(1); opacity: 1; }

/* Slide up longer */
.reveal.slide-up { transform: translateY(60px); }
.reveal.slide-up.active { transform: translateY(0); }

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-inner { padding: 8px 10px 8px 24px; }
  .logo { transform: scale(0.9); transform-origin: left center; }
  .nav { gap: 20px; }
  .nav-links { gap: 16px; }
  .hero-centered h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .large-dark-card { padding: 40px; }
  .ldc-content { margin-bottom: 300px; }
  .ldc-visual { top: auto; bottom: 0; width: 100%; height: 300px; }
  .ldc-stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .split-grid-box { grid-template-columns: 1fr; gap: 0; padding: 0 10px; }
  .sg-left { width: 100%; display: flex; flex-direction: column; gap: 16px; }
  .sg-right { width: 100%; margin-top: 20px; }
  .feature-badge { display: none !important; }
  .interactive-features-panel {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    height: 240px !important;
    transform: translateX(-50%) scale(clamp(0.65, 85vw / 500px, 0.8));
    position: relative;
    left: 50%;
    margin: 0; 
  }
  .sg-item-box { padding: 20px 16px; width: 100%; box-sizing: border-box; margin-bottom: 0px; }
  .section { padding: 50px 0; }
  #features { padding-top: 30px; }
  .features-4 .section-header { margin-bottom: 24px; }
}
/* ===== FINAL INTEGRATED CTA ===== */
.final-integrated-cta {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 24px;
  background: var(--gray-light);
}

.final-integrated-cta::before { display: none; }

/* Overlay not needed */
.ficta-gradient-overlay {
  display: none;
}

.coming-soon-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ===== SUB-PAGE THEME ===== */
.sub-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #021b4a 0%, #0d4a86 50%, #1cb1ec 100%);
  color: var(--white);
  text-align: center;
  border-radius: 0 0 40px 40px;
}
.sub-hero h1 { color: var(--white); margin-bottom: 16px; }
.sub-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

.rich-content {
  padding: 80px 0;
  background: var(--white);
}
.rich-content-inner {
  max-width: 800px;
  margin: 0 auto;
}
.rich-content h2, .rich-content h3 { margin-top: 40px; margin-bottom: 20px; }
.rich-content p { margin-bottom: 20px; line-height: 1.8; color: var(--gray-dark); }
.rich-content ul { margin-bottom: 30px; padding-left: 20px; }
.rich-content li { margin-bottom: 10px; color: var(--gray-dark); }

@media (max-width: 768px) {
  .sub-hero { padding: 100px 24px 40px; border-radius: 0 0 24px 24px; }
  .rich-content { padding: 40px 0; }
}

.ficta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.ficta-content h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}

.ficta-content p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 36px;
}

/* Reduce gap between Pricing and FAQ */
#pricing { padding-bottom: 80px; }
#faq { padding-top: 20px; padding-bottom: 0; padding-left: 12px; padding-right: 12px; }


@media (max-width: 768px) {
  .final-integrated-cta { padding: 50px 24px; }
  .ficta-content h2 { font-size: 2.5rem; }
  .ficta-content p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .header { padding: 0 16px; top: 20px; transition: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 8px 10px 8px 10px; border-radius: 100px; }
  .logo { transform: scale(0.85); transform-origin: left center; margin-left: 0; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; width: calc(100% - 24px);
    background: var(--white); padding: 32px 24px; box-shadow: var(--shadow-lg);
    border-radius: 24px; gap: 20px; margin-top: 12px;
    position: absolute; left: 12px; top: 100%;
    z-index: 1000; text-align: left;
  }
  .nav.open .nav-links { display: flex; flex-direction: column; gap: 8px; }
  .nav.open .nav-links a { 
    font-size: 1.1rem; 
    padding: 12px 0; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    width: 100%;
    justify-content: flex-start;
  }
  .nav.open .nav-links a::after { display: none; }
  
  .nav.open .nav-cta { display: flex; width: 100%; margin-top: 8px; }
  .nav.open .nav-cta .btn-dark-pill { 
    width: 100%; 
    justify-content: center; 
    padding: 16px; 
    font-size: 1rem;
    border-radius: 20px;
  }
  
  .hero-wrapper { padding: 8px 8px 0; }
  .hero-centered { padding: 84px 12px 20px; border-radius: 24px; }
  .hero-title { 
    font-size: clamp(2rem, 10vw, 2.5rem);
    letter-spacing: -0.03em; 
    line-height: 1.25; 
    margin-bottom: 20px; 
    width: 100%;
  }
  .hero-desc { font-size: 1rem; margin-bottom: 24px; padding: 0 10px; }
  .hero-badge { font-size: 0.8rem; padding: 8px 16px; gap: 10px; }
  .btn-glass { display: none; }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-cta-group .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .hero-visual {
    display: flex;
    height: 280px;
    margin-bottom: -60px;
    margin-top: 20px;
  }
  .card-fan-container {
    transform: scale(0.52);
    transform-origin: top center;
  }
  
  .grid-2x2 { grid-template-columns: 1fr; }
  .use-case-row { grid-template-columns: 1fr; }
  .vibrant-cta { padding: 40px 24px; }
  .vibrant-cta h2 { font-size: 2rem; }
  .cta-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Large Dark Card mobile fixes */
  .large-dark-card {
    padding: 40px 24px;
    text-align: center;
  }
  .ldc-content {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .ldc-content h2 {
    font-size: 2.2rem;
  }
  .ldc-visual {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    opacity: 0.5;
  }
  .silhouette-graphic {
    mask-image: linear-gradient(to top, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 50%, transparent 100%);
  }
  .ldc-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px 16px;
    margin-top: 30px;
  }
  .stat h4 {
    font-size: 1.5rem;
  }

  /* Pricing mobile fixes */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .pricing-card {
    padding: 28px 24px;
  }
  .pricing-card.featured {
    transform: none;
    order: -1; /* Show featured card first on mobile */
  }
  .pricing-toggle-wrapper {
    flex-wrap: wrap;
    gap: 12px;
  }
  .section-header h2 {
    white-space: normal !important;
    font-size: 2rem;
  }
  .pricing-amount .amount {
    font-size: 2.8rem;
  }
  .split-faq {
    flex-direction: column;
    gap: 24px;
  }
  .faq-hero-card {
    border-radius: 24px;
    padding: 40px 0;
  }
  #faq {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 768px) {
  .reveal.left, .reveal.right { transform: translateY(20px); }
  .reveal.left.active, .reveal.right.active { transform: translateY(0); }
}
@media (max-width: 360px) {
  .hero-title { font-size: 1.85rem; line-height: 1.3; }
  .hero-desc { font-size: 0.95rem; }
  .stat h4 { font-size: 1.4rem; }
  .pricing-amount .amount { font-size: 2.4rem; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(2, 27, 74, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(28, 177, 236, 0.4);
}

.back-to-top svg {
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
}


/* ===== CONTACT PAGE PREMIUM REDESIGN ===== */
.contact-section {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-premium {
  background: #18191b;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.contact-card-premium:hover {
  transform: translateY(-5px);
}

.contact-card-premium::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--glow-color, rgba(28, 177, 236, 0.5)) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
  opacity: 0.8;
}

.contact-card-premium .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-premium h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  color: #fff; /* Force white for visibility */
}

.contact-card-premium p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* Form Styling */
.contact-form-wrapper {
  background: white;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-group-p {
  margin-bottom: 24px;
}

.form-group-p label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: #1a1a1c;
  margin-bottom: 10px;
}

.form-group-p .form-control-p {
  width: 100%;
  padding: 14px 20px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group-p .form-control-p:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(28, 177, 236, 0.1);
}

/* Map Section */
.map-container-p {
  width: 100%;
  height: 450px;
  border-radius: 32px;
  overflow: hidden;
  margin-top: 60px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container-p iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
}

/* Bottom Banner */
.bottom-cta-banner {
  margin-top: 80px;
  background: white;
  border-radius: 32px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
}

.bc-content {
  max-width: 500px;
}

.bc-content .badge-yellow {
  display: inline-block;
  background: #fef9c3;
  color: #854d0e;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.bc-content h3 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.bc-content p {
  color: #64748b;
  font-size: 1rem;
}

.bc-form {
  display: flex;
  gap: 12px;
  background: #f8fafc;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid #eef2f6;
}

.bc-form input {
  background: transparent;
  border: none;
  padding: 10px 16px;
  font-family: inherit;
  outline: none;
  width: 240px;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-card-premium {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-form-wrapper {
    padding: 32px 20px;
    border-radius: 24px;
  }
  .contact-section {
    padding: 60px 0;
  }
  .bottom-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .bc-form {
    flex-direction: column;
    width: 100%;
  }
  .bc-form input {
    width: 100%;
  }
}

/* Support Quick Links */
.support-faq-shorthand {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.support-faq-shorthand h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1c;
}

.support-faq-shorthand ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-faq-shorthand ul li a {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.support-faq-shorthand ul li a:hover {
  transform: translateX(5px);
  color: var(--dark);
}

.office-location-heading {
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
