/* ============================================
   HALUAN DIGITAL NETWORK — Design System
   Premium & Dynamic Brand Colored Landing Page
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #C2185B; /* Deeper, richer premium brand magenta with perfect readability */
  --primary-light: #FCE4EC;
  --secondary: #00BCD4;
  --secondary-light: #E0F7FA;
  --dark: #05080F; /* Deeper dark navy/black */
  --text: #1F2937; /* Deeper body text charcoal gray */
  --text-light: #4B5563; /* Deeper sub-text slate gray */
  --border: #E5E7EB;
  --bg: #FFFFFF;
  --bg-subtle: #F9FAFB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-glow: 0 12px 30px rgba(0,188,212,0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: var(--dark); line-height: 1.25; font-weight: 700; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }
section.bg-subtle { background: var(--bg-subtle); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  max-width: 700px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center .section-title,
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.85) 0%, rgba(194, 24, 91, 0.75) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  box-shadow: 
    0 8px 32px 0 rgba(233, 30, 99, 0.22),
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -1px 1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s ease-in-out;
  opacity: 0;
}
.btn-primary:hover::before {
  left: 125%;
  opacity: 1;
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.95) 0%, rgba(194, 24, 91, 0.85) 100%);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 
    0 12px 36px 0 rgba(233, 30, 99, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px) scale(1.02);
  color: #fff;
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.85) 0%, rgba(0, 131, 143, 0.75) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  box-shadow: 
    0 8px 32px 0 rgba(0, 188, 212, 0.22),
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -1px 1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s ease-in-out;
  opacity: 0;
}
.btn-secondary:hover::before {
  left: 125%;
  opacity: 1;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.95) 0%, rgba(0, 131, 143, 0.85) 100%);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 
    0 12px 36px 0 rgba(0, 188, 212, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px) scale(1.02);
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--dark);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(233, 30, 99, 0.05);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.1);
}

.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* --- Navbar (VibeUI nv-5 & nv-6 Floating Glass Pill Style) --- */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  padding: 14px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.45); /* Elegant glass translucency */
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55); /* Polish reflection outline */
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.04), 
    0 1px 3px rgba(0, 0, 0, 0.01),
    inset 0 1px 1px rgba(255, 255, 255, 0.85),
    inset 0 -1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  top: 12px;
  background: rgba(255, 255, 255, 0.7); /* Slightly firmer white tint on scroll */
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 
    0 14px 45px rgba(0, 0, 0, 0.07), 
    0 1px 3px rgba(0, 0, 0, 0.02),
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 -1px 1px rgba(255, 255, 255, 0.3);
  padding: 10px 24px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 0;
}

.navbar-logo img {
  height: 32px;
  width: auto;
  transition: var(--transition);
}
.navbar.scrolled .navbar-logo img { height: 28px; }

.navbar-menu { display: flex; align-items: center; gap: 36px; }

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

.navbar-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
}
.navbar-links a:hover { color: var(--dark); }
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.navbar-links a:hover::after { width: 100%; }

.navbar-cta .btn { padding: 10px 20px; font-size: 0.85rem; }

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

/* --- Hero (VibeUI hr-6 Dual Column with Floating elements) --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  /* Glowing mesh gradient background under soft-white */
  background: 
    radial-gradient(circle at 75% 20%, rgba(0, 188, 212, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(233, 30, 99, 0.04) 0%, transparent 45%),
    linear-gradient(135deg, #FAFBFD 0%, #FFFFFF 50%, #F5F7FA 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .accent { color: var(--primary); }

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Visual (Floating Mockups / VibeUI hr-6 style) */
.hero-visual {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base floating card layout */
.floating-card {
  background: rgba(255, 255, 255, 0.55); /* Elegant glassmorphic translucency */
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7); /* Frosted outline */
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 
    0 8px 32px 0 rgba(31, 38, 135, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.85);
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, z-index 0.1s;
  user-select: none;
  z-index: 2;
}

.floating-card:hover {
  transform: translateY(-12px) scale(1.04) rotate(0.5deg) !important;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 2px rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
  z-index: 10; /* Bring to front when hovered */
}

/* Card 1: Active Status (Static Indicator) */
.card-status {
  top: 5%;
  left: 0%;
  width: 220px;
  animation: float-status 6s ease-in-out infinite alternate;
}

.card-status-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.status-indicator {
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 8px #10B981;
  animation: pulse-emerald 2s infinite alternate;
}

.status-indicator::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #10B981;
  opacity: 0;
  animation: ripple-emerald 2s cubic-bezier(0.25, 0, 0, 1) infinite;
}

@keyframes pulse-emerald {
  0% { box-shadow: 0 0 2px rgba(16, 185, 129, 0.4); }
  100% { box-shadow: 0 0 10px 3px rgba(16, 185, 129, 0.8); }
}

@keyframes ripple-emerald {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.status-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
}

.card-status-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.status-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.status-uptime {
  font-size: 0.75rem;
  color: #10B981;
  font-weight: 600;
}

/* Card 2: Sales Machine */
.card-sales {
  top: 42%;
  right: 0%;
  width: 210px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float-sales 8s ease-in-out infinite alternate;
}

.card-sales-icon {
  font-size: 1.8rem;
  background: var(--primary-light);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.card-sales:hover .card-sales-icon {
  transform: scale(1.18) translateY(-3px) rotate(5deg);
}

.card-sales-info {
  display: flex;
  flex-direction: column;
}

.sales-title {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.sales-value {
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, #FF5A7F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card 3: Creator Stack */
.card-creators {
  bottom: 5%;
  left: 4%;
  width: 230px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float-creators 7s ease-in-out infinite alternate-reverse;
}

.creators-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-left: -10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.avatar:first-child { margin-left: 0; }
.av-1 { background: #FCE4EC; color: #E91E63; }
.av-2 { background: #E0F7FA; color: #00BCD4; }
.av-3 { background: #FEF3C7; color: #D97706; }

.card-creators:hover .avatar {
  margin-left: -4px;
}
.card-creators:hover .avatar:first-child {
  margin-left: 0;
}

.card-creators:hover .av-1 { transform: scale(1.1) rotate(-5deg); }
.card-creators:hover .av-2 { transform: scale(1.1) rotate(0deg); }
.card-creators:hover .av-3 { transform: scale(1.1) rotate(5deg); }

.creators-text {
  display: flex;
  flex-direction: column;
}

.creators-count {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.creators-sub {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* Float Animations */
@keyframes float-status {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1.5deg); }
}

@keyframes float-sales {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(12px) rotate(-1.5deg); }
}

@keyframes float-creators {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-14px) rotate(1.2deg); }
}

/* Stats Strip Grid */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
  line-height: 1.4;
}

/* --- Trust Section (Redesigned Centered Grid) --- */
.trust-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-media {
  margin-bottom: 64px;
}

.trust-subtitle {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.trust-subtitle .asterisk {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.media-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 60px;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  filter: none;
  user-select: none;
}

.logo-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent !important;
}

.logo-item svg {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Specific styling for Liputan 6 SVG to render in authentic color */
.media-logo svg text {
  fill: #0A0E17;
}

.media-logo svg rect {
  fill: #F05A24;
}

.media-logo svg text[fill="#fff"] {
  fill: #FFFFFF;
}

/* Custom Facetology Text Logo Styling */
.facetology-logo {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.05em;
  color: var(--dark);
  text-transform: lowercase;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-item:hover {
  transform: translateY(-4px) scale(1.08);
}

/* Brands row layouts */
.brands-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px 64px;
  flex-wrap: wrap;
}

.logo-item:hover .facetology-logo {
  color: var(--primary);
}

/* Sizing adjustments for specific assets (Enlarged and Color Preserved) */
.logo-item img[src*="skin1004"] {
  max-height: 65px;
}

.logo-item img[src*="glad2glow"] {
  max-height: 60px;
  border-radius: 8px;
}

.logo-item img[src*="kumparan"] {
  max-height: 52px;
}

.logo-item img[src*="beritasatu"] {
  max-height: 60px;
}

.logo-item img[src*="mediaindonesia"] {
  max-height: 56px;
}

.logo-item img[src*="tribunnews"] {
  max-height: 56px;
}

.logo-item img[src*="viva"] {
  max-height: 58px;
}

.logo-item img[src*="bytedance"] {
  max-height: 48px;
}

.logo-item img[src*="tiktok"] {
  max-height: 58px;
}

.logo-item img[src*="shopee"] {
  max-height: 58px;
}

.logo-item img[src*="huawei"] {
  max-height: 58px;
}

.logo-item img[src*="telkom"] {
  max-height: 68px;
}

.logo-item img[src*="bri"] {
  max-height: 66px;
}

.logo-item img[src*="jwmarriott"] {
  max-height: 60px;
}

.logo-item img[src*="ritzcarlton"] {
  max-height: 68px;
}

.logo-item img[src*="scora"] {
  max-height: 60px;
}

.logo-item img[src*="kahf"] {
  max-height: 66px;
}

.logo-item img[src*="olike"] {
  max-height: 66px;
}

.logo-item img[src*="makeover"] {
  max-height: 52px;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .media-row {
    gap: 30px 48px;
  }
  .brands-row {
    gap: 30px 48px;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 60px 0;
  }
  
  .featured-media {
    margin-bottom: 48px;
  }
  
  .brands-grid {
    gap: 24px;
  }
  
  .brands-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 36px;
  }
  
  .logo-item {
    opacity: 1; /* Keep logos at 100% opacity on all devices */
  }
}

@media (max-width: 480px) {
  .media-row {
    gap: 20px 24px;
  }
  .brands-row {
    gap: 20px 24px;
  }
  
  .logo-item img {
    max-height: 38px; /* Make logos much larger on mobile screens */
  }
  
  .logo-item img[src*="skin1004"] {
    max-height: 42px;
  }
  
  .logo-item svg {
    transform: scale(0.9);
  }
}

/* --- Card Grids --- */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.card-icon.pink { background: var(--primary-light); color: var(--primary); }
.card-icon.cyan { background: var(--secondary-light); color: var(--secondary); }

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.card .metric {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
}

/* --- Pillar Cards (Who We Are) --- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
  perspective: 1200px; /* Enable perspective for 3D tilt effects */
}

.pillar-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d; /* Keep child items in 3D space */
  will-change: transform;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(233,30,99,0.05) 0%, rgba(0,188,212,0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.pillar-card:hover {
  background: #ffffff;
  border-color: rgba(233,30,99,0.3);
  box-shadow: 0 20px 40px rgba(10,14,23,0.08), 0 0 20px rgba(0,188,212,0.05);
}

.pillar-card:hover::before {
  opacity: 1;
}

/* 4D Glare reflection effect */
.pillar-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255,255,255,0.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.pillar-card:hover .pillar-glare {
  opacity: 1;
}

.pillar-image-wrapper {
  width: 130px;
  height: 130px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(35px); /* Lift illustration out of the card in 3D */
  transform-style: preserve-3d;
  cursor: pointer;
}

.pillar-3d-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
}

.pillar-card:hover .pillar-3d-image {
  transform: scale(1.08) translateZ(10px);
  filter: drop-shadow(0 12px 24px rgba(233,30,99,0.15));
}

/* 3D Spin animation when clicked */
.pillar-3d-image.spin-3d {
  animation: spin3D 0.8s cubic-bezier(0.2, 0.85, 0.35, 1.2) forwards;
}

@keyframes spin3D {
  0% { transform: scale(1.08) translateZ(10px) rotateY(0deg); }
  50% { transform: scale(1.25) translateZ(30px) rotateY(180deg); }
  100% { transform: scale(1.08) translateZ(10px) rotateY(360deg); }
}

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transform: translateZ(20px);
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transform: translateZ(15px);
  margin-bottom: 20px;
}

/* Hologram statistic overlay appearing after click */
.pillar-hologram {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
  transform: translateZ(25px);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px dashed rgba(233, 30, 99, 0.15);
  padding-top: 0;
}

.pillar-card.show-hologram .pillar-hologram {
  opacity: 1;
  max-height: 80px;
  padding-top: 16px;
  margin-top: 16px;
}

.hologram-stats {
  flex: 1;
  background: rgba(233, 30, 99, 0.03);
  border: 1px solid rgba(233, 30, 99, 0.1);
  border-radius: var(--radius-sm);
  padding: 8px;
  text-align: center;
  transition: background 0.3s ease;
}
.pillar-card[data-pillar="distribution"] .hologram-stats {
  background: rgba(0, 188, 212, 0.03);
  border-color: rgba(0, 188, 212, 0.1);
}
.hologram-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  display: block;
}
.hologram-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-top: 2px;
}
.pillar-card[data-pillar="distribution"] .hologram-value {
  color: var(--secondary);
}

/* Kinetik click-particles */
.click-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  animation: particleFloat 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes particleFloat {
  0% {
    transform: translate(-50%, -50%) scale(1) translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0) translate(var(--dx), var(--dy));
    opacity: 0;
  }
}

/* Differentiators */
.diff-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.diff-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.diff-item:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.diff-image-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-image-mini {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.06));
}

.diff-item:hover .diff-image-mini {
  transform: translateY(-4px) scale(1.08) rotate(3deg);
  filter: drop-shadow(0 8px 16px rgba(0,188,212,0.12));
}

.diff-item h4 { font-size: 0.95rem; margin-bottom: 6px; }
.diff-item p { font-size: 0.8rem; color: var(--text-light); }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card .service-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #94A3B8; /* Deeper and highly prominent gray for much stronger visual contrast */
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .service-num { color: rgba(156, 12, 56, 0.35); } /* Richer deep brand magenta hover shadow */

.service-card h3 { 
  font-size: 1.05rem; 
  margin-bottom: 8px; 
  color: var(--dark); 
  font-weight: 700; 
}
.service-card p { 
  font-size: 0.88rem; 
  color: #111827; /* Absolute high-contrast deep text for flawless reading */
  line-height: 1.6;
  margin-bottom: 14px; 
}

.service-card .metric {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px;
  background: #FCD8E4; /* Specific deep magenta soft backdrop for these columns only */
  color: #9C0D38; /* Specific deep premium brand magenta for perfect high-contrast reading inside this column */
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50px;
}

/* --- Ecosystem (VibeUI ft-2 Asymmetric Bento Grid) --- */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.eco-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.eco-card img {
  height: 44px;
  width: auto;
  max-width: 120px;
  margin-bottom: 16px;
  object-fit: contain;
  background: transparent !important;
  transition: var(--transition);
}

.eco-card h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--dark); }
.eco-card .eco-role { font-size: 0.75rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.eco-card p { font-size: 0.8rem; color: var(--text-light); }

/* Hover effects */
.eco-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: var(--secondary);
  box-shadow: var(--shadow-glow);
}

.eco-card:hover img {
  transform: scale(1.05);
}

/* Bento Sizing Classes */
.eco-card-lg {
  grid-column: span 6;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 32px;
  padding: 36px;
}

.eco-card-lg .eco-card-logo {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  justify-content: center;
}

.eco-card-lg img {
  height: 56px;
  margin-bottom: 0;
}

.eco-card-lg .eco-card-info {
  display: flex;
  flex-direction: column;
}

.eco-card-lg h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.eco-card-lg .eco-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 4px;
}

.eco-card-lg .eco-details {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.5;
}

.eco-card-md {
  grid-column: span 4;
}

/* --- Case Studies --- */
.case-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.case-tab {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--bg);
  color: var(--text-light);
  transition: var(--transition);
  font-family: inherit;
}
.case-tab.active, .case-tab:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.case-card {
  display: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.case-card.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.case-card .case-meta { font-size: 0.8rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.case-card h3 { font-size: 1.6rem; margin-bottom: 16px; }
.case-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.case-card .case-result {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0;
}
.case-card blockquote {
  font-style: italic;
  color: var(--text-light);
  padding-left: 16px;
  border-left: 3px solid var(--primary-light);
  margin-top: 16px;
  font-size: 0.9rem;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}
.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -8px rgba(194, 24, 91, 0.12);
}

.testimonial-content {
  flex-grow: 1;
}

.testimonial-card .stars { color: #FBBF24; margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card .author { font-size: 0.9rem; font-weight: 700; color: var(--dark); line-height: 1.2; }
.testimonial-card .company { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }

.testimonial-brand-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 36px;
  max-width: 90px;
}

.testimonial-brand-logo img {
  max-height: 32px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.9;
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-brand-logo img {
  opacity: 1;
  transform: scale(1.06);
}

/* --- Interactive ROI Calculator (VibeUI pr-5 Style) --- */
.calc-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.calc-slider-wrapper {
  margin-bottom: 40px;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calc-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.calc-primary-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

/* Custom Styled Range Slider */
.custom-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #E5E7EB;
  outline: none;
  margin: 12px 0;
  transition: background 0.3s;
}

.custom-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
  transition: transform 0.1s, background-color 0.2s;
}

.custom-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.custom-range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
  transition: transform 0.1s;
}

.custom-range-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
}

.slider-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 0 4px;
}

/* Results Grid */
.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.calc-result-box {
  background: #FAFBFD;
  border: 1px solid #ECEFF5;
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.calc-result-box:hover {
  background: #ffffff;
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.calc-box-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.calc-box-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.calc-result-box:first-child .calc-box-val {
  color: var(--primary);
}

.calc-box-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

.calc-cta-wrapper {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.calc-cta-wrapper p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* --- Process Timeline --- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

.process-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { font-size: 0.8rem; color: var(--text-light); }

.process-connector {
  position: absolute;
  top: 47px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 2px;
  background: var(--border);
}
.process-step:last-child .process-connector { display: none; }

/* --- Creator Section (Deep Navy / Monochrome Contrast - Retained) --- */
.creator-section {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.creator-section .section-label { color: var(--secondary); }
.creator-section .section-label::before { background: var(--secondary); }
.creator-section .section-title { color: #fff; }
.creator-section .section-desc { color: rgba(255,255,255,0.7); }

.creator-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.creator-pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}
.creator-pillar:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--secondary);
  transform: translateY(-4px);
}

.creator-pillar .cp-icon { font-size: 2rem; margin-bottom: 16px; }
.creator-pillar h3 { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.creator-pillar p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

.creator-showcase {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}
.creator-showcase p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.creator-showcase strong { color: var(--secondary); }

.creator-section .btn-secondary {
  background: var(--secondary);
  color: #fff;
}
.creator-section .btn-secondary:hover {
  background: #0097A7;
  box-shadow: 0 8px 24px rgba(0,188,212,0.25);
}

.creator-section .trust-logos img {
  filter: grayscale(100%) brightness(0) invert(1) !important;
}

/* --- FAQ Accordion (VibeUI fq-1 Single Column Layout) --- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: var(--transition);
}

.faq-trigger span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  padding-right: 24px;
  transition: var(--transition);
}

.faq-trigger:hover span {
  color: var(--primary);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Elegant CSS Plus/Minus Indicator */
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-light);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;
}

/* Horizontal line */
.faq-icon::before {
  width: 16px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  width: 2px;
  height: 16px;
}

.faq-trigger:hover .faq-icon::before,
.faq-trigger:hover .faq-icon::after {
  background: var(--primary);
}

/* When expanded, turn plus to minus (rotate/scale out vertical line) */
.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg) scaleY(0);
}
.faq-trigger[aria-expanded="true"] .faq-icon::before {
  transform: rotate(180deg);
  background: var(--primary);
}
.faq-trigger[aria-expanded="true"] span {
  color: var(--primary);
}

/* Smooth Accordion Expanding */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 8px 24px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Final CTA (Split-Screen Dual Color Panel) --- */
.final-cta { padding: 80px 0; }

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.cta-panel {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta-panel.brand { background: #FFF0F3; }
.cta-panel.creator { background: #E0F7FA; }

.cta-panel h3 { font-size: 1.4rem; margin-bottom: 12px; }
.cta-panel p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 24px; }
.cta-panel .btn { align-self: flex-start; }

.cta-tertiary {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.cta-tertiary a { color: var(--primary); font-weight: 600; }
.cta-tertiary a:hover { text-decoration: underline; }

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
  filter: grayscale(100%) brightness(0) invert(1) !important;
  background: transparent !important;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 24px; }

/* --- Mobile Nav (hidden on desktop) --- */
.mobile-nav { display: none; }
.mobile-overlay { display: none; }

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { height: 380px; }
  .card-status { left: 4%; top: 5%; }
  .card-sales { right: 4%; top: 42%; }
  .card-creators { left: 6%; bottom: 5%; }
  
  .services-grid, .diff-strip { grid-template-columns: repeat(2, 1fr); }
  .eco-grid { grid-template-columns: repeat(2, 1fr); } /* Fallback Grid */
  .eco-card-lg { grid-column: span 2; }
  .eco-card-md { grid-column: span 1; }

  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .case-card.active { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .navbar { width: calc(100% - 24px); top: 12px; }
  .navbar-links, .navbar-cta { display: none; }
  .mobile-toggle { display: flex; }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.75); /* Frosted white glass drawer */
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 999;
    padding: 80px 32px 32px;
    transition: var(--transition);
    border-left: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
  }
  .mobile-nav.active { right: 0; }
  .mobile-nav a { display: block; padding: 12px 0; font-size: 1rem; color: var(--dark); border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  .mobile-nav .btn { width: 100%; justify-content: center; margin-top: 16px; }
  .mobile-overlay { position: fixed; inset: 0; background: rgba(10, 14, 23, 0.15); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 998; display: none; }
  .mobile-overlay.active { display: block; }

  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  
  .hero-visual { height: 320px; }
  .card-status { width: 185px; font-size: 0.85rem; left: 3%; top: 4%; }
  .card-sales { width: 180px; right: 3%; top: 38%; }
  .card-creators { width: 200px; left: 4%; bottom: 4%; }

  .stats-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { border-top: 1px solid var(--border); }

  .pillar-grid, .creator-pillars, .testimonial-grid { grid-template-columns: 1fr; }
  .services-grid, .diff-strip { grid-template-columns: 1fr; }
  
  /* Eco bento on mobile: all take 1 column */
  .eco-grid { grid-template-columns: 1fr; gap: 16px; }
  .eco-card-lg { grid-column: span 1; flex-direction: column; text-align: center; gap: 16px; padding: 28px; }
  .eco-card-lg .eco-card-logo { width: auto; }
  .eco-card-md { grid-column: span 1; }

  .calc-card { padding: 24px; }
  .calc-results-grid { grid-template-columns: 1fr; gap: 16px; }
  .calc-primary-val { font-size: 1.3rem; }

  .process-timeline { grid-template-columns: 1fr; }
  .process-connector { display: none; }
  .cta-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .case-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
}

@media (max-width: 480px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stats-strip .stat-item:nth-child(3) { border-right: none; }
  .stats-strip .stat-item:nth-child(4) { border-right: 1px solid var(--border); }

  .trust-marquee { margin: 0 -12px; }
  .marquee-track { gap: 36px; }
  
  .hero-visual { display: none; } /* Hide floating elements on extremely small screens */
  
  .footer-grid { grid-template-columns: 1fr; }
}
