/* ==========================================================================
   FLIPCUT CREATION - LUXURY WHITE MODE DESIGN SYSTEM
   Ultra-Premium Creative Video Agency & Production Studio
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* --- DESIGN TOKENS (LUXURY WHITE / LIGHT THEME DEFAULT) --- */
:root {
  /* Canvas & Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;
  --bg-surface: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --bg-glass: rgba(255, 255, 255, 0.75);
  --bg-glass-strong: rgba(255, 255, 255, 0.92);
  --bg-elevated: #FFFFFF;
  --bg-accent-subtle: #EEF2FF;
  --bg-table-highlight: rgba(99, 102, 241, 0.04);

  /* Text & Hierarchy */
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-dim: #94A3B8;
  --text-inverse: #FFFFFF;

  /* Brand Accents & Iridescent Gradients */
  --brand-cyan: #00D2FF;
  --brand-blue: #2563EB;
  --brand-indigo: #4F46E5;
  --brand-violet: #7C3AED;
  --brand-purple: #9333EA;

  /* Gradient Combinations */
  --grad-brand: linear-gradient(135deg, #00D2FF 0%, #2563EB 35%, #7C3AED 75%, #9333EA 100%);
  --grad-brand-horizontal: linear-gradient(90deg, #00D2FF 0%, #3B82F6 40%, #7C3AED 80%, #9333EA 100%);
  --grad-text: linear-gradient(135deg, #0F172A 0%, #2563EB 60%, #7C3AED 100%);
  --grad-accent-text: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #9333EA 100%);
  --grad-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
  --grad-glow: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.12) 0%, rgba(255, 255, 255, 0) 70%);

  /* Borders & Dividers */
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-medium: rgba(15, 23, 42, 0.14);
  --border-glow: rgba(99, 102, 241, 0.28);
  --border-glass: rgba(255, 255, 255, 0.8);

  /* Shadows (Multi-layered ambient diffusion) */
  --shadow-subtle: 0 2px 8px -2px rgba(15, 23, 42, 0.04), 0 1px 4px -1px rgba(15, 23, 42, 0.03);
  --shadow-card: 0 12px 30px -10px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 22px 45px -12px rgba(37, 99, 235, 0.12), 0 8px 20px -4px rgba(15, 23, 42, 0.04);
  --shadow-luxury: 0 30px 70px -15px rgba(37, 99, 235, 0.15), 0 10px 30px -8px rgba(124, 58, 237, 0.08);
  --shadow-glow: 0 0 35px rgba(99, 102, 241, 0.22);

  /* Typography (Clean, Normal & Ultra-Readable) */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --max-width: 1280px;
  --nav-height: 80px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- OPTIONAL DARK MODE (TOGGLEABLE) --- */
[data-theme="dark"] {
  --bg-primary: #070913;
  --bg-secondary: #0D1122;
  --bg-tertiary: #141A30;
  --bg-surface: #10162B;
  --bg-card: rgba(16, 22, 43, 0.85);
  --bg-card-hover: rgba(22, 30, 58, 0.95);
  --bg-glass: rgba(13, 17, 34, 0.8);
  --bg-glass-strong: rgba(13, 17, 34, 0.95);
  --bg-elevated: #161E38;
  --bg-accent-subtle: rgba(99, 102, 241, 0.12);
  --bg-table-highlight: rgba(99, 102, 241, 0.08);

  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --text-inverse: #0F172A;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-glow: rgba(124, 58, 237, 0.4);
  --border-glass: rgba(255, 255, 255, 0.1);

  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(99, 102, 241, 0.25);
  --shadow-luxury: 0 35px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(124, 58, 237, 0.25);

  --grad-text: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 50%, #C084FC 100%);
  --grad-surface: linear-gradient(180deg, rgba(16, 22, 43, 0.9) 0%, rgba(13, 17, 34, 0.9) 100%);
}

/* --- RESET & BASE STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

/* Ambient Background Luxury Glow Orbs */
.bg-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  max-width: 100vw;
  overflow: hidden;
  transition: opacity 0.5s ease;
}

.orb-1 {
  top: -100px;
  right: 0;
  width: min(500px, 85vw);
  height: min(500px, 85vw);
  background: radial-gradient(circle, rgba(0, 210, 255, 0.15), rgba(59, 130, 246, 0.1), transparent 70%);
}

.orb-2 {
  top: 400px;
  left: 0;
  width: min(550px, 85vw);
  height: min(550px, 85vw);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12), rgba(147, 51, 234, 0.08), transparent 70%);
}

.orb-3 {
  top: 1800px;
  right: 0;
  width: min(550px, 85vw);
  height: min(550px, 85vw);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), rgba(0, 210, 255, 0.08), transparent 70%);
}

.orb-4 {
  bottom: 800px;
  left: 0;
  width: min(600px, 85vw);
  height: min(600px, 85vw);
  background: radial-gradient(circle, rgba(147, 51, 234, 0.1), rgba(59, 130, 246, 0.06), transparent 70%);
}

/* Subtle Geometric Grid Mesh Overlay */
.bg-grid-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, var(--border-subtle) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-subtle) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

/* Typography Presets */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--grad-brand-horizontal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-alt {
  background: var(--grad-accent-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Pill Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-accent-subtle);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-indigo);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-subtle);
  backdrop-filter: blur(10px);
}

.badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Section Header Structure */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-header .section-subtitle,
.section-subtitle {
  display: inline-block;
  color: var(--brand-indigo);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 18px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Sections Global Spacing */
section {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

/* --- BUTTONS & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: var(--grad-brand-horizontal);
  color: #FFFFFF;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4), 0 0 15px rgba(124, 58, 237, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px -5px rgba(37, 99, 235, 0.5), 0 0 25px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--brand-indigo);
  background: var(--bg-accent-subtle);
  color: var(--brand-indigo);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -5px rgba(37, 211, 102, 0.45);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   NAVIGATION BAR (Frosted Luxury Crystal Glass)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: height var(--transition-smooth), background var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.site-header.scrolled {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-medium);
  box-shadow: var(--shadow-card);
  height: 72px;
}

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

.brand-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.brand-logo-img {
  height: var(--brand-logo-height, 65px);
  max-height: 140px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(99, 102, 241, 0.15));
  transition: transform var(--transition-bounce), height 0.2s ease;
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-brand-horizontal);
  border-radius: var(--radius-pill);
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-indigo);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-subtle);
}

.theme-toggle-btn:hover {
  color: var(--brand-indigo);
  border-color: var(--border-glow);
  transform: rotate(15deg);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (High-Converting Editorial Layout)
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-wrap {
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
}

.hero-stat-item .stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Hero Showcase Card (Simulated Video Editing Monitor) */
.hero-visual-wrap {
  position: relative;
}

.hero-video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-luxury);
  backdrop-filter: blur(20px);
  position: relative;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-video-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-6px);
  box-shadow: var(--shadow-hover), var(--shadow-glow);
}

.video-screen-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-video-card:hover .video-screen-frame img {
  transform: scale(1.03);
}

.play-pulse-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: var(--grad-brand-horizontal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.4rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.6);
  cursor: pointer;
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.play-pulse-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

/* Timeline scrubber HUD */
.video-hud-bar {
  margin-top: 14px;
  padding: 8px 12px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hud-track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.hud-progress-track {
  width: 100%;
  height: 6px;
  background: var(--border-medium);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.hud-progress-fill {
  width: 68%;
  height: 100%;
  background: var(--grad-brand-horizontal);
  border-radius: 3px;
  animation: pulseBar 3s ease-in-out infinite alternate;
}

@keyframes pulseBar {
  0% {
    width: 45%;
  }

  100% {
    width: 85%;
  }
}

/* Floating HUD Tag Badges */
.floating-tag {
  position: absolute;
  padding: 10px 18px;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  z-index: 2;
  animation: floatUpDown 4s ease-in-out infinite alternate;
}

.tag-top-left {
  top: -20px;
  left: -25px;
  animation-delay: 0s;
}

.tag-bottom-right {
  bottom: -20px;
  right: -25px;
  animation-delay: 2s;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* ==========================================================================
   SECTION 1: ABOUT FLIPCUT CREATION (PHILOSOPHY & 3 PILLARS)
   ========================================================================== */
.about-section {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-brand-horizontal);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-glow);
}

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

.card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--bg-accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--brand-indigo);
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
}

.about-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.about-card p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   DAILY CREATIVE IMAGE & TEXT PROMPT SPOTLIGHT
   ========================================================================== */
.daily-prompt-section {
  position: relative;
}

.daily-prompt-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Featured / Latest Daily Prompt Master Card */
.daily-prompt-card-featured {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-luxury);
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.daily-prompt-card-featured:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-indigo);
}

.prompt-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-medium);
  background: #000;
  cursor: pointer;
}

.prompt-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.prompt-image-wrap:hover img {
  transform: scale(1.04);
}

.prompt-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.prompt-badge-tag i {
  color: #F59E0B;
}

.prompt-date-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(99, 102, 241, 0.9);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  z-index: 3;
}

.prompt-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prompt-header-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.prompt-spotlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #F59E0B;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.prompt-title-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
}

.prompt-box-card {
  background: var(--bg-tertiary);
  border: 1.5px dashed var(--border-glow);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  position: relative;
  transition: all var(--transition-fast);
}

.prompt-box-card:hover {
  background: var(--bg-accent-subtle);
  border-color: var(--brand-indigo);
}

.prompt-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.prompt-box-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.prompt-copy-quick-btn {
  background: transparent;
  border: none;
  color: var(--brand-indigo);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
}

.prompt-copy-quick-btn:hover {
  background: rgba(99, 102, 241, 0.12);
}

.prompt-text-display {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  word-break: break-word;
  user-select: all;
}

.prompt-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn-copy-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-brand-horizontal);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
  transition: all var(--transition-fast);
}

.btn-copy-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.45);
}

.btn-copy-main.copied {
  background: #10B981;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-use-style {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-use-style:hover {
  background: var(--bg-tertiary);
  border-color: var(--brand-indigo);
  color: var(--brand-indigo);
}

/* Multi-card Grid for Past Daily Prompts */
.daily-prompt-history-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.daily-prompt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.daily-prompt-card-compact {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.daily-prompt-card-compact:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}

.prompt-compact-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.prompt-compact-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prompt-compact-thumb:hover img {
  transform: scale(1.05);
}

.prompt-compact-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.prompt-compact-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.35;
}

.prompt-compact-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  background: var(--bg-tertiary);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-body);
}

.prompt-compact-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 960px) {
  .daily-prompt-card-featured {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
}

/* ==========================================================================
   SECTION 3: CORE SERVICE OFFERINGS (INTERACTIVE GRID)
   ========================================================================== */
.services-section {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-glow);
}

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

.service-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--bg-accent-subtle);
  color: var(--brand-indigo);
}

.service-box h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.service-features-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   SECTION 4: 5-STEP SEAMLESS CREATIVE WORKFLOW
   ========================================================================== */
.workflow-section {
  position: relative;
}

.workflow-steps-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.workflow-step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  transition: all var(--transition-smooth);
}

.workflow-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-indigo);
  box-shadow: var(--shadow-hover);
}

.step-number-bubble {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--grad-brand-horizontal);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.workflow-step-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.workflow-step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 5: PORTFOLIO & INTERACTIVE BEFORE/AFTER SLIDER
   ========================================================================== */
.portfolio-section {
  background: var(--bg-secondary);
}

/* Category Filter Tabs */
.portfolio-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-subtle);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--grad-brand-horizontal);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 8px 20px -3px rgba(37, 99, 235, 0.35);
}

/* Portfolio Grid Layout */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
  justify-content: center;
}

.portfolio-mobile-slider-cue {
  display: none !important;
}

.portfolio-mobile-scroll-strip {
  display: contents !important;
}

.portfolio-grid.vertical-mode {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.portfolio-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-glow);
}

.portfolio-media-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b0f19;
  overflow: hidden;
}

.portfolio-item.is-vertical {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 10px 30px -10px rgba(124, 58, 237, 0.2);
}

.portfolio-item.is-vertical .portfolio-media-thumb {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-height: none;
}

.portfolio-media-thumb img,
.portfolio-media-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-media-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.portfolio-item.is-vertical:hover {
  border-color: var(--brand-violet);
  box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.35);
}

.portfolio-thumb-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.portfolio-thumb-pill i {
  color: var(--brand-indigo);
  font-size: 0.75rem;
}

.reel-live-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(239, 68, 68, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.4);
}

.reel-live-dot {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

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

  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

.reel-sound-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 6;
  transition: all var(--transition-fast);
}

.reel-sound-btn:hover {
  background: var(--brand-indigo);
  transform: scale(1.1);
}

.vertical-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-item:hover .portfolio-media-thumb img,
.portfolio-item:hover .portfolio-media-thumb video {
  transform: scale(1.04);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.play-badge-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--brand-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform var(--transition-bounce);
}

.portfolio-item:hover .play-badge-icon {
  transform: scale(1);
}

.portfolio-info {
  padding: 22px 24px;
}

.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-indigo);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

.portfolio-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.portfolio-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  margin-top: 12px;
}

/* ==========================================================================
   INTERACTIVE BEFORE & AFTER COMPARISON SLIDER (DaVinci Resolve Grade)
   ========================================================================== */
.before-after-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-luxury);
  margin-top: 40px;
}

.slider-headline-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.slider-headline-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.comparison-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: ew-resize;
  background: #000;
}

.comparison-slider-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.img-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.img-before-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
}

.slider-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: var(--brand-indigo);
  font-size: 1.1rem;
}

.badge-label-before,
.badge-label-after {
  position: absolute;
  bottom: 20px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
  z-index: 4;
}

.badge-label-before {
  left: 20px;
  background: rgba(15, 23, 42, 0.75);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-label-after {
  right: 20px;
  background: var(--grad-brand-horizontal);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/* ==========================================================================
   SECTION 6 & 7: WHY CHOOSE US & SOFTWARE TECH STACK
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.why-feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.why-feature-box:hover {
  border-color: var(--brand-indigo);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.why-feature-box .why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
}

.why-feature-box h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.why-feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Tech Stack Badges */
.tech-stack-wrap {
  text-align: center;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-subtle);
}

.tech-stack-wrap h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.tech-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tech-badge-item {
  padding: 10px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   SECTION 8: TABLE 2 - PRICING PLANS & RETAINER PACKAGES
   ========================================================================== */
.pricing-section {
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-plan-tabs {
  display: none;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured-card,
.pricing-card.featured-plan {
  border: 2px solid var(--brand-violet);
  background: var(--bg-surface);
  box-shadow: var(--shadow-luxury);
  transform: scale(1.03);
}

.pricing-card.featured-card:hover,
.pricing-card.featured-plan:hover {
  transform: scale(1.05) translateY(-6px);
}

.popular-badge,
.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand-horizontal);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
  white-space: nowrap;
  z-index: 10;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-price-wrap .price-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
}

.pricing-price-wrap .price-period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-feature-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   SECTION 9: TESTIMONIALS & SOCIAL PROOF
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-brand-horizontal);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
}

.author-info h4 {
  font-size: 1rem;
}

.author-info span {
  font-size: 0.82rem;
  color: var(--brand-indigo);
  font-weight: 600;
}

/* ==========================================================================
   SECTION 10: REAL-TIME DYNAMIC PROJECT COST CALCULATOR
   ========================================================================== */
.calculator-section {
  background: var(--bg-secondary);
}

.calculator-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-luxury);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.calc-group {
  margin-bottom: 32px;
}

.calc-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: block;
}

/* Format selector pills */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.format-option {
  position: relative;
}

.format-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.format-card-label {
  display: block;
  padding: 16px;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.format-card-label h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.format-card-label span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.format-option input[type="radio"]:checked+.format-card-label {
  border-color: var(--brand-indigo);
  background: var(--bg-accent-subtle);
  box-shadow: 0 0 0 1px var(--brand-indigo);
}

/* Range Slider */
.slider-value-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text-primary);
}

.calc-range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border-medium);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-indigo);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
  border: 2px solid #FFF;
}

.calc-step-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border-medium);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.calc-step-btn:hover {
  background: var(--brand-indigo);
  color: #FFFFFF;
  border-color: var(--brand-indigo);
  transform: scale(1.08);
}

.calc-qty-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.calc-preset-btn {
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-medium);
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calc-preset-btn:hover {
  border-color: var(--brand-indigo);
  color: var(--brand-indigo);
}

/* Checkbox Add-ons */
.addons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background var(--transition-fast);
}

.addon-checkbox-label:hover {
  background: var(--bg-accent-subtle);
}

.addon-checkbox-label input {
  margin-right: 10px;
  accent-color: var(--brand-indigo);
  width: 18px;
  height: 18px;
}

/* Calculator Summary Box */
.calc-summary-panel {
  background: var(--grad-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.summary-heading {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.summary-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 24px 0;
  padding-top: 16px;
  border-top: 2px solid var(--border-medium);
}

.summary-total-row .total-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.summary-total-row .total-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--brand-indigo);
}

/* ==========================================================================
   SECTION 11: PROJECT INQUIRY FORM & FAQ ACCORDION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-card);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-medium);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--brand-indigo);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-actions-row {
  display: flex;
  gap: 14px;
  width: 100%;
}

.contact-actions-row .btn {
  flex: 1;
  white-space: nowrap;
}

/* FAQ Accordion */
.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
}

.faq-chevron {
  font-size: 1.2rem;
  color: var(--brand-indigo);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER (Ultra-Modern Editorial Luxury)
   ========================================================================== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-info p {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-indigo);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ==========================================================================
   MODAL & TOAST NOTIFICATION STYLES
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-box {
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.input-highlight-error {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.35) !important;
  animation: shakeInput 0.4s ease;
}

@keyframes shakeInput {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.validation-guide-box {
  background: rgba(239, 68, 68, 0.08);
  border: 1.5px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: left;
  margin-bottom: 16px;
}

.validation-guide-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.4;
  text-align: left;
}

.validation-guide-item:last-child {
  margin-bottom: 0;
}

/* Responsive Medium-Compact Ticket Pass Modal */
.ticket-pass-modal-box {
  max-width: 450px !important;
  width: 92% !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  text-align: center !important;
  padding: 22px 20px !important;
  background: var(--bg-card) !important;
  border-radius: var(--radius-lg) !important;
  border: 1.5px solid #10B981 !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55) !important;
}

.ticket-pass-icon-badge {
  width: 52px;
  height: 52px;
  background: rgba(16, 185, 129, 0.12);
  border: 1.5px solid #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.5rem;
  color: #10B981;
}

.ticket-pass-title {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--text-primary);
  font-weight: 800;
}

.ticket-pass-subtitle {
  color: var(--text-secondary);
  font-size: 0.84rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.ticket-pass-uid-card {
  background: rgba(99, 102, 241, 0.1);
  border: 1px dashed var(--brand-indigo);
  border-radius: 8px;
  padding: 7px 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Ultra-Luxury VIP Boarding Pass Ticket UI */
.vip-boarding-ticket {
  background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 60%, #090d16 100%);
  border: 1.5px solid rgba(129, 140, 248, 0.4);
  border-radius: 14px;
  padding: 0;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.15);
  text-align: left;
}

.vip-ticket-header {
  background: linear-gradient(90deg, #312E81, #4338CA, #1E1B4B);
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-ticket-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: #FCD34D;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

.vip-ticket-body {
  padding: 12px 14px;
}

.ticket-notch-left, .ticket-notch-right {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--bg-card);
  border-radius: 50%;
  bottom: 28px;
  z-index: 5;
}

.ticket-notch-left {
  left: -7px;
  border-right: 1.5px solid rgba(129, 140, 248, 0.4);
}

.ticket-notch-right {
  right: -7px;
  border-left: 1.5px solid rgba(129, 140, 248, 0.4);
}

.vip-ticket-footer {
  background: rgba(15, 23, 42, 0.85);
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vip-barcode-strip {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 14px;
  opacity: 0.7;
}

.vip-barcode-strip span {
  display: inline-block;
  height: 100%;
  background: #FFF;
  width: 2px;
}

.vip-barcode-strip span:nth-child(2n) {
  width: 3px;
}

.vip-barcode-strip span:nth-child(3n) {
  width: 1px;
}

.vip-barcode-strip span:nth-child(5n) {
  width: 4px;
}

.ticket-pass-details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.ticket-pass-details-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ticket-pass-wa-guide {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid #25D366;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
  text-align: left;
}

@media (max-width: 480px) {
  .ticket-pass-modal-box {
    padding: 16px 12px !important;
    max-width: 95% !important;
    max-height: 88vh !important;
    border-radius: var(--radius-md) !important;
  }
  .ticket-pass-icon-badge {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
  .ticket-pass-title {
    font-size: 1.12rem;
  }
  .ticket-pass-subtitle {
    font-size: 0.78rem;
    margin-bottom: 8px;
  }
  .ticket-pass-uid-card {
    padding: 5px 10px;
    margin-bottom: 8px;
  }
  .ticket-pass-details-card {
    padding: 8px 10px;
    margin-bottom: 8px;
    font-size: 0.76rem;
  }
  .ticket-pass-details-row {
    padding: 3px 0;
  }
  .ticket-pass-wa-guide {
    padding: 6px 10px;
    margin-bottom: 10px;
    font-size: 0.74rem;
  }
}

.toast-box {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--brand-indigo);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-primary);
  transform: translateY(120%);
  opacity: 0;
  transition: all var(--transition-smooth);
  z-index: 3000;
}

.toast-box.show {
  transform: translateY(0);
  opacity: 1;
}

/* Floating Back-To-Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 900;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: var(--grad-brand-horizontal);
  color: #FFF;
  transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    text-align: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-grid,
  .services-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-steps-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator-card,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px !important;
  }

  :root {
    --nav-height: 74px;
  }

  section {
    padding: 38px 0 !important;
  }

  .site-header {
    height: 74px !important;
  }

  .nav-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    gap: 6px !important;
    height: 100%;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .nav-links,
  .nav-actions .btn-primary {
    display: none !important;
  }

  .brand-logo-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
  }

  .brand-logo-img {
    height: min(var(--brand-logo-height, 50px), 52px) !important;
    max-height: 58px !important;
    max-width: 190px !important;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px !important;
    flex-shrink: 0;
  }

  .theme-toggle-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border-radius: 50% !important;
    flex-shrink: 0;
    font-size: 0.9rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    background: var(--bg-surface);
    border: 1px solid var(--border-medium);
    color: var(--text-primary);
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border-radius: 10px !important;
    background: var(--bg-surface);
    border: 1px solid var(--border-medium);
    color: var(--text-primary);
    font-size: 1.05rem !important;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: var(--shadow-subtle);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: all var(--transition-fast);
  }

  .mobile-menu-btn:active,
  .theme-toggle-btn:active {
    transform: scale(0.92);
    border-color: var(--brand-indigo);
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 16px) !important;
    padding-bottom: 40px !important;
    overflow: hidden;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-badge-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
    width: 100%;
  }

  .hero-badge-wrap .badge-pill {
    font-size: 0.78rem;
    padding: 5px 14px;
    text-align: center;
    max-width: 100%;
    line-height: 1.35;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(1.7rem, 6.2vw, 2.25rem) !important;
    line-height: 1.22;
    text-align: center;
    margin: 0 auto 14px !important;
    max-width: 100%;
    word-break: break-word;
  }

  .hero-description {
    font-size: 0.94rem !important;
    text-align: center;
    line-height: 1.58;
    margin: 0 auto 20px !important;
    max-width: 95%;
    color: var(--text-secondary);
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 24px !important;
    gap: 10px;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.9rem;
    border-radius: 9999px;
  }

  .hero-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
    width: 100%;
    max-width: 310px;
    margin: 0 auto 24px !important;
    padding-top: 18px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
  }

  .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-stat-item .stat-number {
    font-size: 1.55rem !important;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2px;
  }

  .hero-stat-item .stat-label {
    font-size: 0.74rem !important;
    color: var(--text-muted);
  }

  .hero-visual-wrap {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    position: relative;
  }

  .hero-video-card {
    transform: none !important;
    box-shadow: var(--shadow-card);
    padding: 10px;
    border-radius: 16px;
  }

  .floating-tag {
    position: absolute;
    z-index: 5;
    padding: 5px 10px;
    font-size: 0.7rem;
    border-radius: 8px;
    backdrop-filter: blur(12px);
  }

  .floating-tag.tag-top-left {
    top: 8px;
    left: 8px;
  }

  .floating-tag.tag-bottom-right {
    bottom: 8px;
    right: 8px;
  }

  .section-header {
    margin-bottom: 32px !important;
  }

  .section-title {
    font-size: clamp(1.55rem, 5.5vw, 2rem) !important;
    line-height: 1.22;
    text-align: center;
  }

  .section-subtitle {
    font-size: 0.74rem !important;
    padding: 4px 12px;
  }

  .section-desc {
    font-size: 0.9rem !important;
    text-align: center;
  }

  /* 1. Who We Are - Compact Stack */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .about-card {
    padding: 14px 14px !important;
    border-radius: 14px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
    text-align: left !important;
  }

  .about-card .card-icon-wrap {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    font-size: 1.15rem !important;
    border-radius: 10px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .about-card h3 {
    font-size: 0.98rem !important;
    margin-bottom: 3px !important;
    line-height: 1.25 !important;
  }

  .about-card p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    color: var(--text-secondary) !important;
  }

  /* 2. Core Services - Compact Card View */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .service-box {
    padding: 16px 14px !important;
    border-radius: 14px !important;
    gap: 8px !important;
  }

  .service-header {
    margin-bottom: 6px !important;
  }

  .service-badge {
    font-size: 0.68rem !important;
    padding: 3px 8px !important;
  }

  .service-box h3 {
    font-size: 1.05rem !important;
    margin-bottom: 4px !important;
  }

  .service-box p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
  }

  .service-features-list {
    margin-bottom: 12px !important;
    gap: 6px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .service-features-list li {
    font-size: 0.76rem !important;
    gap: 5px !important;
  }

  .service-box .btn {
    padding: 9px 16px !important;
    font-size: 0.82rem !important;
    width: 100% !important;
    border-radius: 9999px !important;
  }

  /* 3. How We Work - 2-Column Compact Grid */
  .workflow-steps-track {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  .workflow-step-card {
    padding: 14px 10px !important;
    border-radius: 12px !important;
    text-align: center !important;
  }

  .workflow-step-card:last-child {
    grid-column: span 2 !important;
  }

  .step-number-bubble {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.82rem !important;
    margin: 0 auto 6px !important;
  }

  .workflow-step-card h4 {
    font-size: 0.88rem !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
  }

  .workflow-step-card p {
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
  }

  .portfolio-filter-bar {
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
  }

  .filter-btn {
    padding: 7px 15px;
    font-size: 0.8rem;
  }

  .portfolio-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-bottom: 36px !important;
    width: 100% !important;
  }

  .portfolio-first-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    border-radius: 18px !important;
  }

  .portfolio-first-item.is-vertical {
    max-width: 275px !important;
    margin: 0 auto !important;
  }

  .portfolio-mobile-slider-cue {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 0;
  }

  .portfolio-mobile-scroll-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px !important;
    padding: 4px 4px 14px 4px !important;
    width: 100% !important;
    scrollbar-width: thin;
  }

  .portfolio-thumb-pill {
    top: 10px !important;
    left: 10px !important;
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
  }

  .portfolio-mobile-scroll-strip .portfolio-thumb-pill {
    top: 8px !important;
    left: 8px !important;
    font-size: 0.62rem !important;
    padding: 2px 7px !important;
  }

  .portfolio-first-item .portfolio-info {
    padding: 16px 18px !important;
  }

  .portfolio-first-item .portfolio-tag {
    font-size: 0.72rem !important;
    margin-bottom: 4px !important;
  }

  .portfolio-first-item .portfolio-title,
  .portfolio-first-item .portfolio-info h3 {
    font-size: 1.05rem !important;
    margin-bottom: 8px !important;
  }

  .portfolio-mobile-scroll-strip .portfolio-item {
    flex: 0 0 215px !important;
    min-width: 215px !important;
    max-width: 225px !important;
    scroll-snap-align: start;
    border-radius: 16px !important;
    margin: 0 !important;
  }

  .portfolio-mobile-scroll-strip .portfolio-item.is-vertical {
    flex: 0 0 190px !important;
    min-width: 190px !important;
    max-width: 200px !important;
  }

  .portfolio-mobile-scroll-strip .portfolio-item .portfolio-info {
    padding: 12px 14px !important;
  }

  .portfolio-mobile-scroll-strip .portfolio-item .portfolio-tag {
    font-size: 0.65rem !important;
    margin-bottom: 4px !important;
  }

  .portfolio-mobile-scroll-strip .portfolio-item .portfolio-title,
  .portfolio-mobile-scroll-strip .portfolio-item .portfolio-info h3 {
    font-size: 0.88rem !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 6px !important;
  }

  .portfolio-mobile-scroll-strip .portfolio-item .portfolio-stats {
    gap: 8px !important;
    font-size: 0.7rem !important;
  }

  .daily-prompt-card-featured {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 14px;
    border-radius: 16px;
  }

  .prompt-actions-row {
    flex-direction: column;
    gap: 10px;
  }

  .prompt-actions-row .btn-copy-main,
  .prompt-actions-row .btn-use-style {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.88rem;
  }

  .daily-prompts-history-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px !important;
    padding-bottom: 10px !important;
  }

  .daily-prompts-history-grid .prompt-history-card {
    min-width: 250px !important;
    max-width: 270px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start;
  }

  .format-grid,
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  /* 4. Why Choose FlipCut - 2x2 Grid */
  .why-us-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .why-feature-box {
    padding: 14px 10px !important;
    border-radius: 12px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .why-feature-box .why-icon {
    font-size: 1.35rem !important;
    margin-bottom: 6px !important;
  }

  .why-feature-box h4 {
    font-size: 0.88rem !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
  }

  .why-feature-box p {
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
  }

  .tech-stack-wrap {
    padding: 14px 10px !important;
    border-radius: 14px !important;
    margin-top: 0 !important;
  }

  .tech-stack-wrap h4 {
    font-size: 0.84rem !important;
    margin-bottom: 10px !important;
  }

  .tech-badges-row {
    gap: 6px !important;
    justify-content: center !important;
  }

  .tech-badge-item {
    padding: 5px 9px !important;
    font-size: 0.7rem !important;
    border-radius: 8px !important;
  }

  .pricing-plan-tabs {
    display: flex !important;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-pill);
    padding: 4px;
    margin: 0 auto 20px auto;
    max-width: 330px;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .plan-tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 6px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    white-space: nowrap;
  }

  .plan-tab-btn.active {
    background: var(--grad-brand-horizontal);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    font-weight: 700;
  }

  .pricing-grid {
    display: block !important;
    margin: 0 auto !important;
    max-width: 360px !important;
  }

  .pricing-card {
    display: none !important; /* Only active tab card shows on mobile */
    padding: 22px 18px 18px !important;
    border-radius: 20px !important;
    transform: none !important;
    box-shadow: var(--shadow-card) !important;
  }

  .pricing-card.is-active-mobile {
    display: flex !important;
    flex-direction: column !important;
    animation: fadeInScale 0.25s ease-out;
  }

  .pricing-header h3 {
    font-size: 1.25rem !important;
    margin-bottom: 4px !important;
  }

  .pricing-header p {
    font-size: 0.82rem !important;
    margin-bottom: 12px !important;
  }

  .pricing-price-wrap {
    margin-bottom: 14px !important;
    padding-bottom: 14px !important;
  }

  .pricing-price-wrap .price-amount {
    font-size: 2.1rem !important;
  }

  .pricing-feature-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 18px !important;
  }

  .pricing-feature-list li {
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .popular-badge,
  .pricing-badge-popular {
    top: -12px !important;
    padding: 4px 14px !important;
    font-size: 0.68rem !important;
  }

  .testimonials-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px !important;
    padding-bottom: 10px !important;
  }

  .testimonials-grid .testimonial-card {
    min-width: 270px !important;
    max-width: 290px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start;
    padding: 16px 14px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px !important;
  }

  .contact-form-box {
    padding: 20px 14px !important;
    border-radius: 16px !important;
  }

  .contact-actions-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .contact-actions-row .btn {
    width: 100% !important;
    justify-content: center;
    padding: 13px 20px !important;
    font-size: 0.92rem;
    border-radius: 9999px;
  }

  .footer-top-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 14px !important;
  }

  .footer-brand-info {
    grid-column: span 2 !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand-info p {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    max-width: 320px;
    margin: 8px auto 0;
  }

  .footer-col:last-child {
    grid-column: span 2 !important;
  }

  .footer-links li a {
    font-size: 0.82rem !important;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 0.78rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .brand-logo-img {
    max-height: 140px;
    max-width: 200px;
  }

  .hero-title {
    font-size: 1.65rem !important;
  }

  .hero-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
    max-width: 290px;
  }

  .hero-stat-item .stat-number {
    font-size: 1.4rem !important;
  }

  .service-box,
  .pricing-card,
  .testimonial-card {
    padding: 18px 14px;
  }

  .portfolio-item.is-vertical {
    max-width: 255px;
  }

  .contact-form-box {
    padding: 18px 14px;
  }

  .mobile-floating-wa {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
    width: 46px;
    height: 46px;
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER & BACKDROP
   ========================================================================== */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  touch-action: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-medium);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-subtle);
  gap: 12px;
}

.mobile-brand-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mobile-nav-close {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-nav-close:active {
  transform: scale(0.9);
  background: var(--brand-indigo);
  color: #fff;
}

.mobile-nav-links {
  list-style: none;
  padding: 16px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: all var(--transition-fast);
}

.mobile-nav-link i {
  font-size: 1.15rem;
  width: 24px;
  text-align: center;
}

.mobile-nav-link:active,
.mobile-nav-link:hover {
  background: var(--bg-tertiary);
  color: var(--brand-indigo);
  transform: translateX(4px);
}

.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-surface);
}

.mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.why-section,
.testimonials-section,
.contact-section {
  position: relative;
}

.calc-inputs-col {
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   MOBILE FLOATING QUICK WHATSAPP BUTTON
   ========================================================================== */
.mobile-floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 900;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatingBounce 3s ease-in-out infinite;
}

.mobile-floating-wa:hover,
.mobile-floating-wa:active {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.mobile-wa-tooltip {
  display: none;
}

@keyframes floatingBounce {

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

  50% {
    transform: translateY(-6px);
  }
}

/* iOS input zoom fix (ensures 16px min on mobile devices) */
@media (max-width: 768px) {

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="url"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ==========================================================================
   TOP ANNOUNCEMENT & OFFER STATIC BANNER (Above Header Luxury Bar)
   ========================================================================== */
:root {
  --top-ann-height: 40px;
}

html.has-announcement .site-header,
body.has-announcement .site-header {
  top: var(--top-ann-height, 40px) !important;
}

html.has-announcement .hero-section,
body.has-announcement .hero-section {
  padding-top: calc(var(--nav-height) + var(--top-ann-height, 40px) + 24px) !important;
}

html.has-announcement .webinar-hero-section,
body.has-announcement .webinar-hero-section {
  padding-top: calc(var(--nav-height) + var(--top-ann-height, 40px) + 20px) !important;
}

.top-announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--top-ann-height, 40px);
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
  color: #ffffff;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 1050;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  transition: all var(--transition-smooth);
}

.top-announcement-bar.is-hidden {
  display: none !important;
}

.top-announcement-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.announcement-content-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  justify-content: center;
  text-align: center;
}

.announcement-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-pill);
  padding: 2px 9px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
  color: #fff;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: livePulse 1.5s infinite ease-in-out;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.announcement-text {
  color: #ffffff;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.announcement-text strong {
  color: #fef08a;
  font-weight: 800;
}

.announcement-action-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.announcement-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  color: #4338ca !important;
  font-weight: 700;
  font-size: 0.76rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.announcement-cta-btn:hover {
  transform: translateY(-1px) scale(1.02);
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.announcement-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 2px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color var(--transition-fast);
}

.announcement-close-btn:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  :root {
    --top-ann-height: 34px;
  }
  .top-announcement-bar {
    height: var(--top-ann-height, 34px);
  }
  html.has-announcement .site-header,
  body.has-announcement .site-header {
    top: var(--top-ann-height, 34px) !important;
  }
  html.has-announcement .webinar-hero-section,
  body.has-announcement .webinar-hero-section,
  html.has-announcement .hero-section,
  body.has-announcement .hero-section {
    padding-top: calc(var(--nav-height) + var(--top-ann-height, 34px) + 12px) !important;
  }
  .top-announcement-container {
    padding-left: 8px !important;
    padding-right: 8px !important;
    gap: 6px;
    justify-content: center;
  }
  .announcement-content-wrap {
    gap: 6px;
    justify-content: center;
  }
  .announcement-live-badge {
    font-size: 0.65rem;
    padding: 1px 7px;
  }
  .announcement-text {
    font-size: 0.74rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
  }
  .announcement-cta-btn {
    padding: 3px 8px;
    font-size: 0.7rem;
  }
  .announcement-close-btn {
    display: none;
  }
}

/* ==========================================================================
   VIP USER PROFILE HEADER BADGE & FLOATING CARD (Post-Registration Engine)
   ========================================================================== */
.user-profile-badge-wrap {
  position: relative;
  display: inline-block;
}

.user-profile-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99, 102, 241, 0.1);
  border: 1.5px solid rgba(99, 102, 241, 0.35);
  border-radius: 40px;
  padding: 6px 14px 6px 8px;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}

.user-profile-pill-btn:hover {
  background: rgba(99, 102, 241, 0.18);
  border-color: var(--brand-indigo);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.user-avatar-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-indigo), #ec4899);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.user-profile-pill-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.user-uid-label {
  font-family: monospace;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brand-indigo);
}

.user-pass-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pill-chevron {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.user-profile-badge-wrap.active .pill-chevron {
  transform: rotate(180deg);
}

/* Floating VIP Profile Dropdown Card */
.user-profile-card-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 320px;
  background: rgba(15, 23, 42, 0.95);
  border: 1.5px solid rgba(99, 102, 241, 0.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 102, 241, 0.2);
  backdrop-filter: blur(24px);
  padding: 20px;
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.user-profile-badge-wrap.active .user-profile-card-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.profile-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 14px;
}

.profile-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid #10B981;
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.profile-card-title-group h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.2;
}

.profile-vip-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #F59E0B;
  display: flex;
  align-items: center;
  gap: 4px;
}

.profile-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.85rem;
}

.profile-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.profile-detail-row .detail-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-detail-row .detail-value {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
  word-break: break-all;
}

.profile-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 768px) {
  .user-profile-badge-wrap {
    flex-shrink: 0;
    max-width: 135px;
  }

  .user-profile-pill-btn {
    padding: 3px 8px 3px 4px !important;
    gap: 5px !important;
    max-width: 135px !important;
    box-sizing: border-box !important;
  }

  .user-avatar-circle {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.7rem !important;
    flex-shrink: 0 !important;
  }

  .user-profile-pill-info {
    max-width: 80px;
    overflow: hidden;
  }

  .user-uid-label {
    font-size: 0.7rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 1.1;
  }

  .user-pass-badge {
    font-size: 0.58rem !important;
    line-height: 1;
    white-space: nowrap;
  }

  .pill-chevron {
    font-size: 0.65rem !important;
    margin-left: 0 !important;
  }

  .user-profile-card-dropdown {
    right: -48px !important;
    width: calc(100vw - 20px) !important;
    max-width: 320px !important;
  }
}