/* ============================================
   LUXR DIGITAL — Cinematic Dark Premium Theme
   ============================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --primary: #ff6a00;
  --primary-light: #ff8c42;
  --primary-dark: #e65c00;
  --gold: #ffb347;
  --gold-dim: #c78b30;
  --neon-glow: rgba(255, 106, 0, 0.5);
  --neon-glow-soft: rgba(255, 106, 0, 0.15);
  --neon-glow-xs: rgba(255, 106, 0, 0.08);
  --gradient-primary: linear-gradient(135deg, #ff6a00, #ffb347);
  --gradient-warm: linear-gradient(135deg, #ff6a00, #ff8c42, #ffb347);
  --gradient-hero: radial-gradient(ellipse at 30% 20%, rgba(255,106,0,0.12) 0%, transparent 50%),
                   radial-gradient(ellipse at 70% 80%, rgba(255,179,71,0.06) 0%, transparent 50%);
  --bg: #0b0b0f;
  --bg-card: #12121a;
  --bg-card-hover: #16161f;
  --bg-elevated: #15151f;
  --bg-surface: #1a1a26;
  --bg-input: #111119;
  --text: #ffffff;
  --text-dim: #a0a0a0;
  --text-muted: #666677;
  --text-faint: #444455;
  --border: rgba(255,255,255,0.06);
  --border-glow: rgba(255,106,0,0.2);
  --glass-bg: rgba(18, 18, 28, 0.7);
  --glass-bg-strong: rgba(18, 18, 28, 0.85);
  --glass-border: rgba(255,255,255,0.06);
  --glass-border-hover: rgba(255,106,0,0.15);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 30px rgba(255,106,0,0.12);
  --shadow-glow-md: 0 0 50px rgba(255,106,0,0.18);
  --shadow-glow-lg: 0 8px 40px rgba(255,106,0,0.2);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-card-hover: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,106,0,0.08);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;
  --font-main: 'Poppins', 'Inter', -apple-system, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-width: 1240px;
  --section-padding: 140px 0;
  --gap: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, button, select { font-family: var(--font-main); outline: none; border: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Cursor Glow ---------- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.045) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}

.cursor-glow.active { opacity: 1; }

/* ---------- Animated Blobs ---------- */
.bg-blobs {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: blobFloat 25s ease-in-out infinite;
}

.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,106,0,0.15), transparent 70%);
  top: -15%; right: -10%;
}

.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,179,71,0.08), transparent 70%);
  bottom: 5%; left: -12%;
  animation-delay: -10s;
}

.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,106,0,0.06), transparent 70%);
  top: 45%; right: 15%;
  animation-delay: -18s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -70px) scale(1.1); }
  50% { transform: translate(-40px, 50px) scale(0.95); }
  75% { transform: translate(60px, 30px) scale(1.05); }
}

/* ---------- Section Separator ---------- */
.section-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.2), transparent);
  border: none;
  margin: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { color: var(--text-dim); line-height: 1.8; font-size: 0.95rem; }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Section Title ---------- */
.section-title {
  text-align: center;
  margin-bottom: 72px;
}

.section-title .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 20px;
  background: var(--neon-glow-xs);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,106,0,0.12);
}

.section-title h2 { margin-bottom: 16px; }

.section-title p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-title .accent-line {
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
  margin: 0 auto 20px;
  box-shadow: 0 0 12px var(--neon-glow-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 25px rgba(255, 106, 0, 0.35);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 50px rgba(255, 106, 0, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-white {
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn i { font-size: 1em; transition: var(--transition); }
.btn:hover i { transform: translateX(5px); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 11, 15, 0.75);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 40px rgba(0,0,0,0.3);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

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

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #fff;
}

.navbar .logo img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.navbar .logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: var(--transition);
  box-shadow: 0 0 8px var(--neon-glow-soft);
}

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

.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 12px 28px; font-size: 0.84rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  background: #08090d;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 70%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(255, 106, 0, 0.08) 0%, rgba(255, 80, 0, 0.04) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .hero-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(255, 106, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(100, 120, 255, 0.04) 0%, transparent 45%),
    linear-gradient(180deg, rgba(255, 106, 0, 0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero .hero-grid-pattern {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.hero .particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFade 4s ease-in-out infinite;
}

.particle-1 { width: 3px; height: 3px; background: var(--primary); top: 20%; left: 15%; animation-duration: 5s; }
.particle-2 { width: 2px; height: 2px; background: var(--gold); top: 35%; right: 20%; animation-duration: 4s; animation-delay: 1s; }
.particle-3 { width: 4px; height: 4px; background: rgba(255,106,0,0.4); top: 65%; left: 25%; animation-duration: 6s; animation-delay: 2s; }
.particle-4 { width: 2px; height: 2px; background: var(--gold); top: 75%; right: 35%; animation-duration: 3.5s; animation-delay: 0.5s; }
.particle-5 { width: 3px; height: 3px; background: rgba(255,179,71,0.5); top: 45%; left: 60%; animation-duration: 5.5s; animation-delay: 1.5s; }
.particle-6 { width: 2px; height: 2px; background: var(--primary); top: 15%; right: 40%; animation-duration: 4.5s; animation-delay: 3s; }

@keyframes particleFade {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  50% { opacity: 1; transform: translateY(-30px) scale(1); }
}

.light-streak {
  position: absolute;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.15), transparent);
  animation: streakMove 8s linear infinite;
}

.light-streak-1 { top: 30%; left: -200px; }
.light-streak-2 { top: 60%; left: -200px; animation-delay: 4s; }

@keyframes streakMove {
  0% { transform: translateX(-200px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 400px)); opacity: 0; }
}

.floating-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
}

.floating-shape.shape-1 {
  width: 80px; height: 80px;
  border: 1px solid rgba(255,106,0,0.08);
  top: 15%; right: 10%;
  animation: shapeFloat1 7s ease-in-out infinite;
}

.floating-shape.shape-2 {
  width: 40px; height: 40px;
  background: rgba(255,106,0,0.04);
  top: 60%; left: 5%;
  animation: shapeFloat2 9s ease-in-out infinite;
}

.floating-shape.shape-3 {
  width: 120px; height: 120px;
  border: 1px solid rgba(255,179,71,0.05);
  top: 30%; left: 18%;
  animation: shapeFloat1 11s ease-in-out infinite reverse;
}

.floating-shape.shape-4 {
  width: 16px; height: 16px;
  background: rgba(255,179,71,0.12);
  bottom: 25%; right: 30%;
  animation: shapeFloat2 6s ease-in-out infinite;
}

@keyframes shapeFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes shapeFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -25px); }
  66% { transform: translate(-15px, 15px); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-glow-xs);
  backdrop-filter: blur(10px);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,106,0,0.1);
}

.hero-content h1 { margin-bottom: 28px; line-height: 1.08; }

.hero-content p {
  font-size: 1.18rem;
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.9;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stats .stat h3 {
  font-size: 1.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stats .stat p { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  perspective: 1000px;
  margin-top: -60px;
  overflow: visible;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(255,106,0,0.06);
  border: 1px solid rgba(255,255,255,0.05);
}

.hero-image .float-card {
  position: absolute;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(24px);
  padding: 18px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-image .float-card.card-1 { top: 15%; left: -40px; }
.hero-image .float-card.card-2 { bottom: 12%; right: -30px; animation-delay: 2s; }

.float-card i { font-size: 1.2rem; color: var(--primary); filter: drop-shadow(0 0 8px var(--neon-glow-soft)); }
.float-card .info span { display: block; font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.float-card .info strong { font-size: 0.95rem; color: var(--text); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- Dark Glass Cards ---------- */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-card);
}

.card .card-shine {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,106,0,0.05) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover .card-shine { opacity: 1; }

/* Default card hover — bottom glow */
.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(255,106,0,0.4);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--glass-border-hover);
  background: var(--bg-card-hover);
}

.card:hover::before { width: 60%; }

/* ── SERVICE CARDS — Animated corner brackets ── */
.grid-3 .card::before,
.grid-3 .card::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 0;
  box-shadow: none;
  background: none;
  transform: none;
}

.grid-3 .card::before {
  top: 0; left: 0;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  bottom: auto;
}

.grid-3 .card::after {
  bottom: 0; right: 0;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
}

.grid-3 .card:hover::before {
  width: 35px;
  height: 35px;
  border-top-color: var(--primary);
  border-left-color: var(--primary);
}

.grid-3 .card:hover::after {
  width: 35px;
  height: 35px;
  border-bottom-color: var(--primary);
  border-right-color: var(--primary);
}

.card .card-icon {
  width: 68px; height: 68px;
  background: var(--neon-glow-xs);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition-bounce);
  border: 1px solid rgba(255,106,0,0.08);
}

.card:hover .card-icon {
  background: var(--gradient-primary);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(255,106,0,0.35);
  border-color: transparent;
}

.card h3 { margin-bottom: 14px; }
.card p { font-size: 0.95rem; }

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.card .card-link i { transition: var(--transition); }
.card:hover .card-link i { transform: translateX(6px); }

/* ---------- Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

/* ---------- Stats Section ---------- */
.stats-section {
  background: var(--bg-card);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,106,0,0.04), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-glow);
}

.stat-item h3 {
  font-size: 3.2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px var(--neon-glow-soft));
}

.stat-item p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- About Preview ---------- */
.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image { position: relative; }

.about-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.04);
}

.about-image .experience-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 28px 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 12px 40px rgba(255,106,0,0.35);
}

.experience-badge h3 { color: #fff; font-size: 2.8rem; }
.experience-badge p { color: rgba(255,255,255,0.9); font-size: 0.85rem; margin-top: 4px; }

.about-content .about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0 44px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  filter: drop-shadow(0 0 6px var(--neon-glow-soft));
}

.about-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.about-feature p { font-size: 0.85rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  border-left: 3px solid transparent;
}

/* Gold left border slides in on hover */
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover), -4px 0 20px rgba(255,179,71,0.15);
  border-color: var(--glass-border-hover);
  border-left-color: var(--gold);
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 24px;
  font-size: 0.95rem;
  letter-spacing: 3px;
  filter: drop-shadow(0 0 4px rgba(255,179,71,0.3));
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card .author .avatar-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(255,106,0,0.3);
}

.author-info strong { display: block; font-size: 0.95rem; color: var(--text); }
.author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- Brand Showcase — 3D Car ---------- */
.brand-showcase {
  padding: 40px 0 30px;
  text-align: center;
  background: linear-gradient(135deg, #ff6a00 0%, #ff8c33 40%, #ff6a00 100%) !important;
  border: none !important;
}

.brand-showcase .section-title .label {
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.brand-showcase .section-title h2 {
  color: #fff;
}

.brand-showcase .section-title .gradient-text {
  background: linear-gradient(135deg, #fff, #1a1a2e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-showcase .section-title .accent-line {
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.4));
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.car-stage {
  perspective: 1200px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.car-3d {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.car-3d:hover {
  transform: rotateY(8deg) rotateX(-2deg) scale(1.05);
}

.car-img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
  /* Shift green car to orange matching LUXR brand */
  filter: hue-rotate(140deg) saturate(2) brightness(0.95) contrast(1.15) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  transition: filter 0.4s ease, transform 0.6s ease;
}

.car-3d:hover .car-img {
  filter: hue-rotate(140deg) saturate(2.2) brightness(1.05) contrast(1.2) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* Floor shadow under the car */
.car-shadow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(255, 106, 0, 0.2) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

/* Reflection effect */
.car-reflection {
  width: 60%;
  max-width: 400px;
  height: 30px;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(255, 106, 0, 0.06), transparent);
  filter: blur(6px);
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 768px) {
  .car-3d {
    transform: rotateY(0deg) rotateX(0deg);
  }
  .car-img {
    max-width: 100%;
  }
  .brand-float-card {
    display: none;
  }
}

/* ── Floating message cards ── */
.brand-float-card {
  position: absolute;
  background: rgba(15, 15, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 106, 0, 0.08);
  z-index: 5;
  animation: brandFloat 4s ease-in-out infinite;
}

.bfc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.bfc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bfc-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.bfc-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Card positions */
.bfc-1 {
  top: 10%;
  left: -60px;
  animation-delay: 0s;
}

.bfc-2 {
  top: 50%;
  right: -60px;
  animation-delay: 1.5s;
}

.bfc-3 {
  bottom: 15%;
  left: -40px;
  animation-delay: 3s;
}

@keyframes brandFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--bg-card);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,106,0,0.08), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('../assets/images/cta_bg.png') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 { color: var(--text); margin-bottom: 20px; }
.cta-banner p { color: var(--text-dim); font-size: 1.18rem; margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.footer {
  background: #ffffff;
  padding: 100px 0 0;
  color: #555555;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-about .logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about .logo span { color: var(--primary); }
.footer-about p { font-size: 0.9rem; line-height: 1.8; color: #666666; margin-bottom: 28px; }

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255,106,0,0.3);
}

.footer-col h4 {
  color: #1a1a2e;
  margin-bottom: 28px;
  font-size: 1rem;
}

.footer-col ul li { margin-bottom: 14px; }

.footer-col ul li a {
  color: #666666;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--primary); padding-left: 6px; }

.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: #666666;
  word-break: break-word;
  overflow-wrap: break-word;
}

.footer-col .contact-item i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }

.footer-bottom {
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #999999;
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 180px 0 100px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,106,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.15), transparent);
}

.page-header .label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 20px;
}

.page-header h1 { margin-bottom: 20px; }
.page-header p { max-width: 560px; margin: 0 auto; font-size: 1.12rem; }

.breadcrumb {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 8px; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.team-card {
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--glass-border-hover);
}

.team-card .team-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gradient-primary);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(255,106,0,0.25);
  transition: var(--transition-bounce);
}

.team-card:hover .team-avatar { transform: scale(1.08); box-shadow: 0 12px 40px rgba(255,106,0,0.35); }

.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { color: var(--primary); font-size: 0.85rem; font-weight: 500; margin-bottom: 12px; }
.team-card p { font-size: 0.85rem; color: var(--text-dim); }

.team-card .team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.team-card .team-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.team-card .team-social a:hover {
  background: var(--gradient-primary);
  color: #fff;
  transform: translateY(-3px);
  border-color: transparent;
}

/* ---------- Animations ---------- */
@keyframes header-entrance {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero .hero-content h1, 
.hero .hero-content p, 
.page-header h1, 
.page-header p,
.contact-header-new h1,
.contact-header-new p {
  animation: header-entrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--neon-glow-xs), rgba(255,179,71,0.05));
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 44px);
  margin-bottom: 52px;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 44px);
}

.timeline-item .timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  background: var(--gradient-primary);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 4px var(--neon-glow-xs), 0 0 20px rgba(255,106,0,0.15);
}

.timeline-content {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.timeline-content:hover { box-shadow: var(--shadow-card-hover); border-color: var(--glass-border-hover); transform: translateY(-4px); }
.timeline-content .year { color: var(--primary); font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; }
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-content p { font-size: 0.9rem; }

/* ---------- Mission/Vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.mv-card {
  padding: 52px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.mv-card:hover { box-shadow: var(--shadow-card-hover); border-color: var(--glass-border-hover); transform: translateY(-6px); }

.mv-card .mv-icon {
  width: 60px; height: 60px;
  background: var(--neon-glow-xs);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255,106,0,0.08);
}

.mv-card h3 { margin-bottom: 14px; }

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

.pricing-card {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition-bounce);
  position: relative;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--glass-border-hover);
}

.pricing-card.popular {
  border-color: var(--primary);
  background: #151522;
  transform: scale(1.03);
}

.pricing-card.popular::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255,106,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: var(--shadow-card-hover), 0 0 80px rgba(255,106,0,0.15);
}

.pricing-card .popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 7px 28px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 20px rgba(255,106,0,0.35);
  z-index: 2;
}

.pricing-card .plan-icon {
  width: 68px; height: 68px;
  margin: 0 auto 24px;
  background: var(--neon-glow-xs);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,106,0,0.08);
}

.pricing-card.popular .plan-icon {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255,106,0,0.35);
  border-color: transparent;
}

.pricing-card h3 { margin-bottom: 8px; font-size: 1.35rem; position: relative; z-index: 1; }
.pricing-card .plan-desc { font-size: 0.9rem; margin-bottom: 28px; position: relative; z-index: 1; }

.pricing-card .price { margin-bottom: 24px; position: relative; z-index: 1; }
.pricing-card .price .amount { font-size: 2.8rem; font-weight: 800; color: var(--text); line-height: 1; }
.pricing-card .price .currency { font-size: 1.2rem; font-weight: 700; vertical-align: top; }
.pricing-card .price .period { font-size: 0.8rem; color: var(--text-muted); }

.pricing-card .features {
  text-align: left;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.pricing-card .features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}

.pricing-card .features li i { color: var(--primary); font-size: 0.85rem; }
.pricing-card .features li.disabled { color: var(--text-faint); text-decoration: line-through; }
.pricing-card .features li.disabled i { color: var(--text-faint); }

.pricing-card .btn { width: 100%; justify-content: center; position: relative; z-index: 1; }

/* --- New Contact Header (Digital Mesh) --- */
.contact-header-new {
  position: relative;
  background: #050508;
  overflow: hidden;
  padding: 160px 0 100px;
}

.contact-header-new::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('../assets/images/contact-bg.png') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.contact-header-new::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black, transparent);
  z-index: 1;
}

.contact-header-new .header-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,106,0,0.1) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
}

.contact-info-cards { display: grid; gap: 20px; margin-bottom: 40px; }

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  background: #0d0d14;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 center transparent;
}

.contact-info-card:hover {
  transform: scale(0.98);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
  background: #09090c;
}

.contact-info-card .icon {
  width: 56px; height: 56px;
  background: #181824;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-card:hover .icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.contact-info-card h4 { font-size: 1rem; margin-bottom: 6px; color: #fff; font-weight: 700; }
.contact-info-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

.contact-form {
  background: #0f0f16;
  padding: 48px;
  border-radius: 24px;
  border: 4px solid #1a1a24;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.contact-form h3 { margin-bottom: 12px; font-size: 2rem; color: #fff; font-weight: 800; }
.contact-form > p { margin-bottom: 40px; font-size: 1rem; color: var(--text-dim); }

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #222230;
  font-size: 1rem;
  color: #fff;
  background: #0a0a0f;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #12121c;
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder { color: #888; }

.form-group textarea { resize: none; min-height: 120px; }

.form-group .error-msg { color: #ff4c4c; font-size: 0.8rem; margin-top: 8px; display: none; }
.form-group.error input, .form-group.error textarea { border-color: #ff4c4c; }
.form-group.error .error-msg { display: block; }

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

/* --- New Contact Reveal Animation --- */
.reveal-contact {
  opacity: 0;
  transform: perspective(1000px) rotateX(25deg) scale(0.9);
  filter: blur(10px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
}

.reveal-contact.visible {
  opacity: 1;
  transform: perspective(1000px) rotateX(0) scale(1);
  filter: blur(0);
}

.map-container {
  margin-top: 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.map-container iframe { width: 100%; height: 100%; border: 0; filter: brightness(0.8) contrast(1.1); }

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---------- Section Spacing ---------- */
section { padding: var(--section-padding); position: relative; z-index: 1; }
section.bg-alt { background: var(--bg-card); }

/* ---------- Form Success ---------- */
.form-success { display: none; text-align: center; padding: 48px 20px; }
.form-success.show { display: block; }
.form-success i { font-size: 3.5rem; color: var(--primary); margin-bottom: 20px; }
.form-success h3 { margin-bottom: 8px; }

/* ---------- Nav Overlay ---------- */
.nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active { opacity: 1; visibility: visible; }

/* ============================================
   RESPONSIVE — Full Mobile Optimization
   ============================================ */

/* ---------- Tablet: 1024px ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 100px 0;
    --gap: 24px;
  }

  .container { padding: 0 24px; }

  /* Hero */
  .hero { padding: 120px 0 80px; min-height: auto; overflow: hidden; }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 36px; }
  .hero-image { order: -1; overflow: hidden; margin-top: 0; }
  .hero-image img { max-width: 420px; margin: 0 auto; }
  .hero-image .float-card { display: none; }
  .hero-badge { margin-bottom: 24px; }
  .hero-content h1 { margin-bottom: 20px; }
  .hero-content p { margin-bottom: 36px; }

  /* Grids */
  .grid-3, .testimonial-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* About */
  .about-preview .container { grid-template-columns: 1fr; gap: 60px; }
  .about-image { text-align: center; }
  .about-image img { max-width: 480px; margin: 0 auto; }
  .about-image .experience-badge { right: 10px; bottom: -16px; padding: 20px 28px; }
  .experience-badge h3 { font-size: 2.2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-about { grid-column: span 2; }

  /* Pricing */
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-10px); }
  .pricing-card { padding: 40px 32px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 40px; }

  /* Section title */
  .section-title { margin-bottom: 56px; }

  /* CTA */
  .cta-banner { padding: 100px 0; }

  /* MV Cards */
  .mv-card { padding: 40px 32px; }

  /* Page header */
  .page-header { padding: 160px 0 80px; }

  /* Brand showcase — hide overflow-causing float cards */
  .brand-showcase { overflow: hidden; }
  .car-stage { overflow: hidden; }
}

/* ---------- Mobile: 768px ---------- */
@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
    --gap: 20px;
  }

  /* Typography */
  h1 { font-size: 2.2rem; line-height: 1.15; letter-spacing: -0.02em; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.2rem; }
  p { font-size: 0.95rem; }

  .container { padding: 0 20px; }

  /* Navbar mobile menu */
  .hamburger { display: flex; }

  .navbar { z-index: 1000; }
  .navbar .logo { z-index: 1002; position: relative; }
  .navbar .logo img { height: 18px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: rgba(11, 11, 15, 0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 32px;
    box-shadow: -10px 0 60px rgba(0,0,0,0.5);
    transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-left: 1px solid rgba(255,106,0,0.1);
    overflow-y: auto;
    visibility: hidden;
  }

  .nav-links.open { right: 0; visibility: visible; }

  .nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 16px 0;
    width: 100%;
    display: block;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
  }

  .nav-links a:last-of-type { border-bottom: none; }

  .nav-links a::after { display: none; }

  .nav-links a.active,
  .nav-links a:hover { color: var(--primary); }

  .nav-cta {
    margin-left: 0;
    margin-top: 24px;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 0.95rem;
  }

  /* Hero */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
    overflow: hidden;
  }

  .hero .container { gap: 36px; }

  .hero-badge {
    font-size: 0.68rem;
    padding: 8px 18px;
    margin-bottom: 20px;
  }

  .hero-content h1 { font-size: 2rem; margin-bottom: 18px; }
  .hero-content p { font-size: 1rem; margin-bottom: 32px; max-width: 100%; line-height: 1.8; }

  .hero-buttons { flex-direction: column; gap: 12px; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    padding-top: 28px;
    justify-content: center;
  }

  .hero-stats .stat { min-width: 90px; text-align: center; }
  .hero-stats .stat h3 { font-size: 1.8rem; }
  .hero-stats .stat p { font-size: 0.78rem; }

  .hero-image { overflow: hidden; margin-top: 0; }
  .hero-image img { max-width: 100%; border-radius: var(--radius-md); }

  /* Disable heavy effects on mobile */
  .floating-shapes,
  .particles,
  .light-streak,
  .hero-grid-pattern { display: none; }
  .bg-blobs .blob { opacity: 0.12; }
  .cursor-glow { display: none; }

  /* Cards */
  .card { padding: 32px 24px; border-radius: var(--radius-md); }
  .card .card-icon { width: 56px; height: 56px; font-size: 1.2rem; margin-bottom: 20px; }
  .card h3 { margin-bottom: 10px; }

  /* All grids → single column */
  .grid-3,
  .grid-4,
  .testimonial-grid,
  .pricing-grid,
  .team-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  /* Stats → 2 columns */
  .stats-section { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { padding: 24px 16px; border-radius: var(--radius-md); }
  .stat-item h3 { font-size: 2.6rem; }
  .stat-item p { font-size: 0.85rem; }

  /* About section — founders showcase mobile */
  .about-preview .container { gap: 40px; }
  .about-image img { border-radius: var(--radius-md); }
  .about-image .experience-badge {
    position: static;
    display: inline-block;
    margin-top: 16px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
  }
  .experience-badge h3 { font-size: 2rem; }
  .experience-badge p { font-size: 0.8rem; }

  .founders-showcase {
    position: relative;
    aspect-ratio: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .founder-img-1,
  .founder-img-2 {
    position: relative !important;
    width: 80% !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
  }

  .founders-showcase .ex-override {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    margin-top: 10px;
  }

  .about-content .about-features {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 28px 0 32px;
  }

  .about-feature { gap: 12px; }
  .about-feature h4 { font-size: 0.95rem; }
  .about-feature p { font-size: 0.82rem; }

  /* Brand Showcase — prevent overflow */
  .brand-showcase { overflow: hidden; }
  .car-stage { overflow: hidden; }
  .brand-float-card { display: none; }
  .bfc-1, .bfc-2, .bfc-3 { display: none; }

  /* Testimonials */
  .testimonial-card { padding: 32px 24px; }
  .testimonial-card blockquote { font-size: 0.92rem; line-height: 1.8; margin-bottom: 24px; }
  .testimonial-card .stars { margin-bottom: 18px; }
  .testimonial-card .author .avatar-placeholder { width: 44px; height: 44px; font-size: 0.85rem; }

  /* Pricing */
  .pricing-card { padding: 36px 28px; border-radius: var(--radius-lg); }
  .pricing-card .price .amount { font-size: 3rem; }
  .pricing-card .price .currency { font-size: 1.2rem; }
  .pricing-card .popular-badge { top: -12px; font-size: 0.68rem; padding: 6px 22px; }
  .pricing-card .plan-icon { width: 56px; height: 56px; font-size: 1.3rem; }
  .pricing-card .features li { padding: 10px 0; font-size: 0.85rem; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { padding: 32px 20px; }
  .team-card .team-avatar { width: 80px; height: 80px; font-size: 1.5rem; margin-bottom: 18px; }
  .team-card h3 { font-size: 1rem; }
  .team-card .role { font-size: 0.8rem; margin-bottom: 8px; }
  .team-card p { font-size: 0.82rem; }
  .team-card .team-social { margin-top: 16px; gap: 8px; }
  .team-card .team-social a { width: 34px; height: 34px; font-size: 0.8rem; }

  /* Timeline → linear left-aligned */
  .timeline { max-width: 100%; }
  .timeline::before { left: 16px; }
  .timeline-item {
    padding-right: 0;
    padding-left: 48px;
    justify-content: flex-start;
    margin-bottom: 32px;
  }
  .timeline-item:nth-child(even) { padding-left: 48px; padding-right: 0; }
  .timeline-item .timeline-dot { left: 16px; width: 14px; height: 14px; }
  .timeline-content { padding: 24px; }
  .timeline-content .year { font-size: 0.82rem; }
  .timeline-content h3 { font-size: 1rem; }
  .timeline-content p { font-size: 0.85rem; }

  /* Mission/Vision */
  .mv-card { padding: 32px 24px; }
  .mv-card .mv-icon { width: 50px; height: 50px; font-size: 1.1rem; margin-bottom: 18px; }

  /* CTA Banner */
  .cta-banner { padding: 72px 0; }
  .cta-banner h2 { font-size: 1.6rem; }
  .cta-banner p { font-size: 1rem; margin-bottom: 32px; }

  /* Contact */
  .contact-grid { gap: 40px; }
  .contact-form { padding: 28px 22px; border-radius: var(--radius-md); }
  .contact-form h3 { font-size: 1.2rem; }
  .contact-info-card { padding: 20px; }
  .contact-info-card .icon { width: 44px; height: 44px; font-size: 1rem; }
  .contact-info-card h4 { font-size: 0.9rem; }
  .contact-info-card p { font-size: 0.85rem; word-break: break-word; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 14px 16px; font-size: 0.9rem; }
  .map-container { height: 240px; border-radius: var(--radius-md); }

  /* Footer */
  .footer { padding: 72px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-about { text-align: center; grid-column: auto; }
  .footer-about p { max-width: 360px; margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col h4 { margin-bottom: 18px; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col .contact-item { justify-content: center; text-align: left; }
  .footer-bottom { padding: 20px 0; font-size: 0.8rem; }

  /* Page header */
  .page-header { padding: 140px 0 60px; }
  .page-header h1 { font-size: 2rem; }
  .page-header p { font-size: 0.95rem; }
  .breadcrumb { margin-top: 20px; font-size: 0.8rem; }

  /* Section title */
  .section-title { margin-bottom: 44px; }
  .section-title .label { font-size: 0.68rem; padding: 6px 18px; letter-spacing: 2px; }
  .section-title h2 { margin-bottom: 14px; }
  .section-title p { font-size: 0.95rem; }
  .section-title .accent-line { width: 40px; margin-bottom: 16px; }

  /* Buttons */
  .btn { padding: 14px 28px; font-size: 0.88rem; gap: 8px; }

  /* AI Mascot — reposition for mobile */
  #ai { right: 12px; width: 80px; height: 65px; }
  #bubble { right: 12px; font-size: 11px; max-width: 200px; }
  .thought-dot.dot-1 { right: 24px; }
  .thought-dot.dot-2 { right: 18px; }
  .thought-dot.dot-3 { right: 14px; }

  /* Prevent all sections from causing overflow */
  section { overflow: hidden; }
}

/* ---------- Small Phones: 480px ---------- */
@media (max-width: 480px) {
  :root {
    --section-padding: 56px 0;
  }

  .container { padding: 0 16px; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.08rem; }
  p { font-size: 0.9rem; line-height: 1.75; }

  /* Hero compact */
  .hero { padding: 88px 0 48px; }
  .hero-content h1 { font-size: 1.65rem; line-height: 1.2; }
  .hero-content p { font-size: 0.9rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.62rem; padding: 6px 14px; letter-spacing: 1px; }
  .hero-stats { gap: 16px; margin-top: 32px; padding-top: 24px; }
  .hero-stats .stat h3 { font-size: 1.5rem; }
  .hero-stats .stat p { font-size: 0.72rem; }

  /* Cards compact */
  .card { padding: 26px 20px; }
  .card .card-icon { width: 48px; height: 48px; font-size: 1rem; margin-bottom: 16px; }
  .card h3 { font-size: 1.05rem; margin-bottom: 8px; }
  .card p { font-size: 0.85rem; }
  .card .card-link { font-size: 0.82rem; margin-top: 18px; }

  /* Stats compact */
  .stats-section { padding: 48px 0; }
  .stats-grid { gap: 12px; }
  .stat-item { padding: 20px 12px; }
  .stat-item h3 { font-size: 2rem; margin-bottom: 4px; }
  .stat-item p { font-size: 0.78rem; }

  /* Pricing compact */
  .pricing-card { padding: 28px 20px; }
  .pricing-card .price .amount { font-size: 2.6rem; }
  .pricing-card .price .currency { font-size: 1rem; }
  .pricing-card .plan-desc { font-size: 0.82rem; margin-bottom: 20px; }
  .pricing-card .features li { font-size: 0.82rem; padding: 8px 0; }
  .pricing-card h3 { font-size: 1.15rem; }

  /* Team compact */
  .team-card { padding: 24px 16px; }
  .team-card .team-avatar { width: 64px; height: 64px; font-size: 1.2rem; margin-bottom: 14px; }

  /* Testimonials compact */
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card blockquote { font-size: 0.85rem; margin-bottom: 20px; }
  .testimonial-card .author .avatar-placeholder { width: 38px; height: 38px; font-size: 0.75rem; }
  .author-info strong { font-size: 0.85rem; }
  .author-info span { font-size: 0.72rem; }

  /* Contact compact */
  .contact-form { padding: 24px 18px; }
  .contact-form h3 { font-size: 1.1rem; }
  .contact-form > p { font-size: 0.85rem; margin-bottom: 28px; }
  .contact-info-card { padding: 16px; gap: 14px; }
  .contact-info-card .icon { width: 40px; height: 40px; font-size: 0.9rem; }
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 12px 14px; font-size: 0.88rem; border-radius: 10px; }
  .form-group label { font-size: 0.8rem; margin-bottom: 8px; }

  /* CTA compact */
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: 1.4rem; margin-bottom: 14px; }
  .cta-banner p { font-size: 0.9rem; margin-bottom: 28px; }

  /* Footer compact */
  .footer { padding: 56px 0 0; }
  .footer-grid { gap: 28px; padding-bottom: 32px; }
  .footer-col h4 { margin-bottom: 14px; font-size: 0.95rem; }
  .footer-col ul li a { font-size: 0.85rem; }
  .footer-social a { width: 38px; height: 38px; font-size: 0.82rem; }

  /* Timeline compact */
  .timeline-item { padding-left: 40px; margin-bottom: 24px; }
  .timeline-item:nth-child(even) { padding-left: 40px; }
  .timeline::before { left: 12px; }
  .timeline-item .timeline-dot { left: 12px; width: 12px; height: 12px; }
  .timeline-content { padding: 20px; }

  /* MV compact */
  .mv-card { padding: 24px 20px; }
  .mv-card .mv-icon { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 14px; }

  /* Page header compact */
  .page-header { padding: 120px 0 48px; }

  /* Buttons compact */
  .btn { padding: 13px 24px; font-size: 0.84rem; border-radius: 40px; }

  /* About compact */
  .about-image .experience-badge { padding: 14px 20px; }
  .experience-badge h3 { font-size: 1.7rem; }
  .about-content .about-features { gap: 14px; margin: 24px 0 28px; }
  .about-feature h4 { font-size: 0.9rem; }
  .about-feature p { font-size: 0.78rem; }
  .about-feature i { font-size: 0.95rem; }

  /* Navbar */
  .navbar { padding: 14px 0; }
  .navbar.scrolled { padding: 10px 0; }
  .navbar .logo { font-size: 1.3rem; }

  /* Section sep */
  .section-sep { margin: 0; }
}

/* ---------- Very Small Phones: 360px ---------- */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  .hero { padding: 80px 0 40px; }
  .hero-content h1 { font-size: 1.45rem; }
  .hero-stats .stat { min-width: 75px; }
  .hero-stats .stat h3 { font-size: 1.3rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item h3 { font-size: 1.7rem; }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-card .price .amount { font-size: 2.2rem; }
  .btn { padding: 12px 20px; font-size: 0.8rem; }
  .nav-links { width: 90%; }
}

/* ---------- Touch Device Optimizations ---------- */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover-only effects on touch */
  .card:hover { transform: none; box-shadow: var(--shadow-card); }
  .card:hover::before { transform: scaleX(0); }
  .card:hover .card-icon { transform: none; background: var(--neon-glow-xs); color: var(--primary); box-shadow: none; border-color: rgba(255,106,0,0.08); }
  .pricing-card:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .team-card:hover { transform: none; }
  .team-card:hover .team-avatar { transform: none; }
  .stat-item:hover { box-shadow: none; }
  .mv-card:hover { transform: none; }
  .contact-info-card:hover { transform: none; }
  .timeline-content:hover { transform: none; }

  /* Active states for tap feedback */
  .card:active { transform: scale(0.98); }
  .btn:active { transform: scale(0.97); }
  .pricing-card:active { transform: scale(0.98); }
  .testimonial-card:active { transform: scale(0.98); }

  /* Hide mouse-only features */
  .cursor-glow { display: none !important; }
  .card .card-shine { display: none; }
}

/* ---------- Landscape Phone ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 80px 0 40px; }
  .hero .container { gap: 24px; }
  .hero-image { display: none; }
  .nav-links { height: 100vh; height: 100dvh; overflow-y: auto; padding: 24px; gap: 0; justify-content: flex-start; padding-top: 80px; }
  .nav-links a { padding: 12px 0; font-size: 0.95rem; }
  .page-header { padding: 100px 0 40px; }
}

/* ---------- Timed Offer Popup (10s delay, 5s close) ---------- */
.offer-popup {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(255,106,0,0.15);
  padding: 24px 32px 24px 24px;
  z-index: 10000;
  max-width: 440px;
  transform: translateY(150px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.offer-popup.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.close-offer {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.close-offer:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.offer-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.offer-icon {
  width: 54px;
  height: 54px;
  background: var(--neon-glow-xs);
  border-radius: 50%;
  border: 1px solid rgba(255,106,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255,106,0,0.2);
}

.offer-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #fff;
}

.offer-text p {
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0;
  color: var(--text-dim);
}

.offer-popup .btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 5s Auto-close Progress Bar */
.offer-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  width: 100%;
  transform-origin: left;
}

.offer-popup.show .offer-progress {
  animation: offerTimeout 8s linear forwards;
}

@keyframes offerTimeout {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

@media (max-width: 600px) {
  .offer-popup {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .offer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Custom Overrides: Stats Section White Background ── */
.stats-section {
  background-color: #ffffff;
}

.stats-section .stat-item {
  background: #f8f9fa;
  border-color: #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stats-section .stat-item p {
  color: #4b5563;
  font-weight: 500;
}

.stats-section .stat-item h3 {
  filter: none;
}

/* ── Custom Overrides: About Page Mission & Vision Orange BG ── */
#mission-vision.bg-orange {
  background-color: var(--primary);
  position: relative;
  padding: 80px 0; /* Reduced padding to make the section smaller */
}

#mission-vision .section-title {
  margin-bottom: 50px; /* Reduced margin */
}

#mission-vision .section-title h2,
#mission-vision .section-title p,
#mission-vision .section-title .label {
  color: #ffffff;
}

#mission-vision .section-title .gradient-text {
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#mission-vision .section-title .accent-line {
  background: #ffffff;
}

#mission-vision .section-title .label {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

/* Made the cards solid white to stand out clearly against orange */
#mission-vision .mv-card {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: all 0.3s ease;
}

#mission-vision .mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

#mission-vision .mv-card h3 {
  color: #12121c; /* Dark text for contrast */
}

#mission-vision .mv-card p {
  color: #4b5563; /* Dark muted text */
}

#mission-vision .mv-card .mv-icon {
  background: var(--primary); /* Orange icon on white card */
  color: #ffffff;
  border-color: rgba(255, 106, 0, 0.2);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.2);
}

/* ── Custom Overrides: About Page Header Image Background ── */
.about-header {
  position: relative;
  background-image: 
    linear-gradient(to bottom, rgba(11, 11, 15, 0.82), rgba(11, 11, 15, 1)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ── Custom Overrides: Services Page Header Image Background ── */
.services-header {
  position: relative;
  background-image: 
    linear-gradient(to bottom, rgba(11, 11, 15, 0.82), rgba(11, 11, 15, 1)),
    url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ── Custom Overrides: Dual Founder Showcase ── */
.founders-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 450px;
}

.founder-img-1, .founder-img-2 {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-img-1:hover, .founder-img-2:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(255, 106, 0, 0.15);
  z-index: 5;
}

.founder-img-1 {
  top: 0;
  left: 0;
  width: 65%;
  height: auto;
  z-index: 2;
  border-bottom: 2px solid var(--primary);
}

.founder-img-2 {
  bottom: 0;
  right: 0;
  width: 60%;
  height: auto;
  z-index: 3;
  border-bottom: 2px solid var(--primary); 
}

.founder-img-1 img, .founder-img-2 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.founders-showcase .ex-override {
  position: absolute !important;
  bottom: 30px !important;
  left: -20px !important;
  z-index: 10 !important;
  animation: none !important;
}

@media (max-width: 992px) {
  .founders-showcase {
    min-height: auto;
    margin-bottom: 40px;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .founder-img-1 {
    position: relative;
    width: 75%;
  }
  .founder-img-2 {
    position: relative;
    width: 70%;
    bottom: auto;
    right: auto;
    top: auto;
    left: auto;
    align-self: flex-end;
  }
  .founders-showcase .ex-override {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    align-self: flex-start;
  }
}

/* ── Custom Overrides: Pricing Page Header Animated Data Wave ── */
.pricing-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #050508, #12121c); /* perfectly matched dark space base */
}

.pricing-header::before {
  display: none; /* Removed static image to allow WebGL canvas to render smoothly */
}

/* ── Custom Overrides: Pricing Page Orange Section ── */
.bg-orange-section {
  background: linear-gradient(135deg, #ff6a00 0%, #ff8c33 60%, #ff6a00 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.bg-orange-section .section-title h2 { color: #fff; }
.bg-orange-section .section-title p { color: rgba(255, 255, 255, 0.9); }
.bg-orange-section .section-title .label { 
  background: rgba(0,0,0,0.15); 
  color: #fff; 
  border-color: rgba(255,255,255,0.2); 
}
.bg-orange-section .section-title .gradient-text { 
  background: linear-gradient(135deg, #fff, #ffe5d9); 
  -webkit-background-clip: text; 
  background-clip: text;
  -webkit-text-fill-color: transparent; 
}
.bg-orange-section .section-title .accent-line { 
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.4)); 
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3); 
}

/* Make cards pop on orange background */
.bg-orange-section .card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  color: #1a1a2e;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.bg-orange-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  border-color: rgba(255, 106, 0, 0.3);
}
.bg-orange-section .card .card-icon {
  background: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
  border-color: rgba(255, 106, 0, 0.2);
}
.bg-orange-section .card p {
  color: #555555;
}
.bg-orange-section .card h3 {
  color: #1a1a2e;
}

/* ── Custom Reveal Animations ── */
.reveal.reveal-zoom {
  opacity: 0;
  transform: scale(0.85) translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.visible.reveal-zoom {
  opacity: 1;
  transform: scale(1) translateY(0);
}
/* --- Success Celebration Overlay --- */
.success-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--primary);
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 50px rgba(255, 106, 0, 0.2);
}

.success-overlay.active .success-card {
  transform: scale(1);
}

.success-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 20px;
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.confetti-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 2px;
  z-index: 10001;
  pointer-events: none;
}
