/* ===================================
   CSS VARIABLES
   =================================== */
:root {
  --bg: #0a0a0f;
  --bg-alt: #12121a;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #F5F5F5;
  --text-dim: #9CA3AF;
  --brand: #FDB813;
  --brand-accent: #F59E0B;
  --brand-glow: rgba(253, 184, 19, 0.4);
  --danger: #ef4444;
  --success: #10b981;
  --radius: 20px;
  --radius-lg: 32px;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 8px 32px -8px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px -10px var(--brand-glow);
  --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  --gradient-mesh:
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(253, 184, 19, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(253, 184, 19, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
}

.theme-light {
  /* Soft cream/warm white background - much easier on eyes */
  --bg: #faf8f5;
  --bg-alt: #f5f2ed;
  --glass: rgba(250, 248, 245, 0.9);
  --glass-border: rgba(180, 160, 130, 0.2);
  --text: #2d3748;
  --text-dim: #5a6578;
  --brand: #e6a800;
  --brand-accent: #d49700;
  --brand-glow: rgba(230, 168, 0, 0.25);
  --shadow-soft: 0 4px 20px -4px rgba(60, 50, 40, 0.08);
  --shadow-card: 0 20px 40px -12px rgba(60, 50, 40, 0.1);
  --gradient-mesh:
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(253, 200, 100, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(245, 180, 80, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(240, 220, 180, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #faf8f5 0%, #f5f2ed 100%);
}

/* ===================================
   BASE STYLES
   =================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--gradient-mesh);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ===================================
   ATMOSPHERIC NAVIGATION
   =================================== */
.atmos-nav {
  position: fixed;
  left: 0;
  top: 72px;
  width: 240px;
  height: calc(100vh - 72px);
  z-index: 500;
  display: flex;
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.atmos-nav:hover {
  opacity: 1;
}

/* SVG Background */
.atmos-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 100%;
  pointer-events: none;
}

.atmos-line {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
  stroke-dasharray: 4, 4;
}

/* Atmospheric Rocket Indicator */
.atmos-rocket {
  position: fixed;
  left: 30px;
  top: calc(100vh - 120px); /* Start at bottom (contact level) */
  font-size: 40px;
  z-index: 10000;
  transform: rotate(0deg);
  transition: top 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 0 10px var(--brand-glow));
  pointer-events: none;
  animation: atmos-rocket-wobble 0.3s ease-in-out infinite alternate;
}

@keyframes atmos-rocket-wobble {
  from {
    transform: rotate(0deg) translateX(0px);
  }
  to {
    transform: rotate(0deg) translateX(-2px);
  }
}

/* Navigation Items */
.atmos-items {
  position: absolute;
  left: 80px;
  top: 0;
  width: 160px;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  padding: 10vh 0;
  pointer-events: auto;
}

.atmos-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  font-size: 13px;
}

.atmos-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.atmos-item:hover {
  color: var(--brand);
  border-left-color: var(--brand);
  background: rgba(253, 184, 19, 0.05);
  padding-left: 16px;
}

.atmos-item:hover::before {
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand-glow);
  transform: translateY(-50%) scale(1.2);
}

.atmos-item.active {
  color: var(--brand);
  border-left-color: var(--brand);
  background: rgba(253, 184, 19, 0.08);
}

.atmos-item.active::before {
  background: var(--brand);
  box-shadow: 0 0 12px var(--brand-glow);
}

.atmos-alt {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  min-width: 30px;
  text-align: right;
  font-family: 'Monaco', 'Courier New', monospace;
}

.atmos-item:hover .atmos-alt,
.atmos-item.active .atmos-alt {
  color: var(--brand);
}

.atmos-label {
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Light mode adjustments for atmospheric nav */
.theme-light .atmos-item {
  color: rgba(0, 0, 0, 0.75);
}

.theme-light .atmos-item::before {
  background: rgba(0, 0, 0, 0.3);
}

.theme-light .atmos-alt {
  color: rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 1200px) {
  .atmos-nav {
    width: 200px;
  }

  .atmos-svg {
    width: 70px;
  }

  .atmos-items {
    left: 70px;
    width: 130px;
  }

  .atmos-item {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .atmos-nav,
  .atmos-rocket {
    display: none;
  }
}

/* Custom Cursor */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}



/* Particle Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
}

a:hover {
  color: var(--brand-accent);
  text-shadow: 0 0 20px var(--brand-glow);
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--brand);
  color: #0a0a0f;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  color: #0a0a0f;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), 0 0 0 0 var(--brand-glow);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow), 0 20px 40px -15px rgba(253, 184, 19, 0.4);
  color: #0a0a0f;
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--brand);
  box-shadow: inset 0 0 0 0 var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: #0a0a0f;
  box-shadow: var(--shadow-glow);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 1.8rem;
}

/* ===================================
   NAVIGATION
   =================================== */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.2) 0%, rgba(10, 10, 15, 0.2) 100%);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease);
  padding: 0.5rem 0;
}

.nav-wrap.scrolled {
  background: rgba(10, 10, 15, 0.2);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  padding: 0.3rem 0;
}

.theme-light .nav-wrap {
  background: linear-gradient(180deg, rgba(250, 248, 245, 0.2) 0%, rgba(250, 248, 245, 0.2) 100%);
}

.theme-light .nav-wrap.scrolled {
  background: rgba(250, 248, 245, 0.2);
  box-shadow: 0 4px 20px -4px rgba(60, 50, 40, 0.1);
}

/* Light mode specific overrides for better comfort */
.theme-light .hero::before {
  background:
    radial-gradient(ellipse 100% 100% at 50% -20%, rgba(230, 168, 0, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(210, 150, 0, 0.08) 0%, transparent 40%);
}

.theme-light .card,
.theme-light .plan,
.theme-light .step,
.theme-light .faq-item,
.theme-light .slide,
.theme-light .contact .panel {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(200, 180, 150, 0.3);
}

.theme-light .card:hover,
.theme-light .plan:hover,
.theme-light .step:hover {
  box-shadow: 0 20px 50px -15px rgba(60, 50, 40, 0.15), 0 0 30px -10px rgba(230, 168, 0, 0.2);
}

.theme-light .hero h1 {
  background: linear-gradient(135deg, #2d3748 0%, var(--brand) 50%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.theme-light .section-head h2::after {
  background: linear-gradient(90deg, var(--brand), var(--brand-accent));
}

.theme-light .btn-primary {
  background: linear-gradient(135deg, #e6a800, #d49700);
  color: #1a1a1a;
}

.theme-light .btn-primary:hover {
  background: linear-gradient(135deg, #d49700, #c48800);
}

.theme-light .badge {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(200, 180, 150, 0.3);
}

.theme-light .cta-band {
  background: linear-gradient(135deg, rgba(230, 168, 0, 0.12), rgba(210, 150, 0, 0.08));
  border-color: rgba(230, 168, 0, 0.25);
}

.theme-light .floating-social-icon {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 15px -5px rgba(60, 50, 40, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--text);
  transform: scale(1.02);
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #0a0a0f;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px -6px var(--brand-glow);
  transition: all 0.3s var(--ease);
}

.brand-logo--image {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.brand-logo--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  display: block;
}

.brand:hover .brand-logo {
  box-shadow: 0 8px 30px -6px var(--brand-glow);
  transform: rotate(-5deg);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-left: auto;
  margin-right: 1.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dim);
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.3s var(--ease);
  border-radius: 10px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-accent));
  transition: width 0.4s var(--ease-bounce), left 0.4s var(--ease-bounce);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--brand-glow);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(253, 184, 19, 0.08);
  text-shadow: none;
}

.nav-links a:hover::after {
  width: 80%;
  left: 10%;
}

.nav-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-shrink: 0;
}

.nav-actions .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px -5px var(--brand-glow);
}

.toggle-theme {
  display: none; /* Hidden - now using lightbulb as theme toggle */
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease);
  font-size: 1rem;
}

.toggle-theme:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: rotate(180deg) scale(1.08);
  box-shadow: 0 0 25px var(--brand-glow);
}

.nav-mobile-btn {
  display: none;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 35%;
    background: var(--bg-alt);
    flex-direction: column;
    padding: 7rem 2rem 2rem;
    gap: 1.6rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-mobile-btn {
    display: inline-flex;
    z-index: 101;
  }

  .nav-links .toggle-theme {
    display: none;
  }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 100% 100% at 50% -20%, rgba(253, 184, 19, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  gap: 5rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Hero Tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(253, 184, 19, 0.08);
  border: 1px solid rgba(253, 184, 19, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(253, 184, 19, 0.7);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(253, 184, 19, 0);
  }
}

/* Hero Heading */
.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 540px;
  font-size: 1.15rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
  line-height: 1.3;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  color: #0a0a0f;
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -10px var(--brand-glow);
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
}

.visual-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

.status-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* Metric Display */
.metric-display {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.metric-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.metric-content {
  flex: 1;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.metric-value {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.metric-sublabel {
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.7;
  line-height: 1.4;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}

.trust-item svg {
  color: var(--brand);
  flex-shrink: 0;
}

.hero-visual:hover .mock-img {
  box-shadow: 0 35px 70px -25px rgba(0, 0, 0, 0.6), 0 0 40px -10px var(--brand-glow);
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-head {
  margin-bottom: 4rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-accent));
  border-radius: 2px;
}

.section-head p {
  margin-top: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
  padding: 7rem 0 5rem;
  position: relative;
}

.feature-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  position: relative;
  padding: 2rem 1.8rem 2.2rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 240px;
  transition: all 0.5s var(--ease);
  overflow: hidden;
  transform-style: preserve-3d;
  cursor: default;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, var(--brand-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
}

.card:hover::after {
  left: 150%;
}

.card:hover {
  transform: translateY(-12px);
  border-color: var(--brand);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.4), 0 0 40px -15px var(--brand-glow);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
}

.pill {
  font-size: 0.65rem;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  color: #0a0a0f;
  border-radius: var(--radius);
  letter-spacing: 0.1em;
  font-weight: 700;
  display: inline-block;
  align-self: flex-start;
  box-shadow: 0 4px 15px -5px var(--brand-glow);
}

.card ul {
  list-style: none;
  font-size: 0.85rem;
  display: grid;
  gap: 0.6rem;
  color: var(--text-dim);
  position: relative;
}

.card ul li {
  padding-left: 1.2rem;
  position: relative;
}

.card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

/* Card Highlight Badge (for promotional pricing) */
.card-highlight {
  margin-top: 1rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  text-align: center;
  animation: pulse-highlight 2s ease-in-out infinite;
}

@keyframes pulse-highlight {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.02); }
}

/* ===================================
   PROCESS TIMELINE
   =================================== */
.process {
  padding: 7rem 0 5rem;
}

.timeline {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-accent), var(--brand));
  opacity: 0.3;
  z-index: 0;
}

@media (max-width: 960px) {
  .timeline::before {
    display: none;
  }
}

.step {
  background: var(--glass);
  padding: 3.2rem 1.6rem 1.8rem;
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid var(--glass-border);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  backdrop-filter: blur(12px);
  transition: all 0.5s var(--ease);
  z-index: 1;
}

.step:hover {
  transform: translateY(-10px);
  border-color: var(--brand);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4), 0 0 30px -10px var(--brand-glow);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  color: #0a0a0f;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 30px -8px var(--brand-glow);
  transition: all 0.4s var(--ease);
}

.step:hover::before {
  transform: translateX(-50%) scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px -8px var(--brand-glow);
}

.step h3 {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}

/* ===================================
   SHOWCASE SECTION
   =================================== */
.showcase {
  padding: 7rem 0 5rem;
}

.show-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  .show-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .show-grid {
    grid-template-columns: 1fr;
  }
}

.show-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  background: var(--bg-alt);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: all 0.5s var(--ease);
}

.show-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  z-index: 1;
  transition: opacity 0.5s var(--ease);
}

.show-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-glow) 0%, transparent 60%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s var(--ease);
}

.show-item:hover::after {
  opacity: 0.6;
}

.show-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(1.1);
  transition: transform 1s var(--ease), filter 0.5s var(--ease);
}

.show-item:hover img {
  transform: scale(1.12);
  filter: brightness(0.9) saturate(1.2);
}

.show-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 40px -10px var(--brand-glow);
}

.show-item span {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ===================================
   TESTIMONIALS CAROUSEL
   =================================== */
.testimonials {
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 200px;
}

.slide {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.7s var(--ease);
  position: absolute;
  inset: 0;
  background: var(--glass);
  padding: 2.8rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
}

.slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  position: relative;
}

.quote {
  font-size: 1.3rem;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), var(--brand-accent));
  border-radius: 2px;
}

.author {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--glass-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.carousel-dot.active {
  background: var(--brand);
  transform: scale(1.3);
  box-shadow: 0 0 20px var(--brand-glow);
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
  padding: 7rem 0 5rem;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.plan {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: all 0.5s var(--ease);
}

.plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.plan:hover::before {
  transform: scaleX(1);
}

.plan:hover {
  transform: translateY(-12px);
  border-color: var(--brand);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.4), 0 0 40px -15px var(--brand-glow);
}

.plan:nth-child(2) {
  border-color: var(--brand);
  transform: scale(1.05);
}

.plan:nth-child(2)::before {
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--brand), var(--brand-accent));
}

.plan:nth-child(2):hover {
  transform: scale(1.08) translateY(-8px);
}

.plan:nth-child(2):hover::before {
  transform: scaleX(1);
}

.plan h3 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plan > p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.plan ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: auto;
}

.plan ul li {
  padding-left: 1.5rem;
  position: relative;
}

.plan ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* ===================================
   CTA BAND
   =================================== */
.cta-band {
  margin: 5rem 0 2rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.5rem;
  text-align: center;
  transition: all 0.5s var(--ease);
}

.cta-band:hover {
  border-color: var(--brand);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.4), 0 0 40px -15px var(--brand-glow);
}

/* Service Banner Variant */
.cta-band.service-banner {
  margin: 3rem 0;
}

.banner-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  color: var(--bg);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.banner-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  position: relative;
  z-index: 1;
}

.banner-features span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.cta-band p strong {
  color: var(--brand);
  font-weight: 700;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, var(--brand-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, var(--brand-glow) 0%, transparent 50%);
  opacity: 0.3;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.cta-band h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.cta-band p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  position: relative;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
  padding: 7rem 0 5rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.faq-item:hover {
  border-color: rgba(253, 184, 19, 0.3);
}

.faq-item.open {
  border-color: var(--brand);
  box-shadow: 0 10px 40px -15px var(--brand-glow);
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: color 0.3s var(--ease);
}

.faq-btn:hover {
  color: var(--brand);
}

.faq-btn span {
  font-size: 1.5rem;
  color: var(--brand);
  transition: transform 0.4s var(--ease-bounce);
}

.faq-item.open .faq-btn span {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 0 1.6rem;
}

.faq-item.open .faq-content {
  max-height: 300px;
  padding: 0 1.6rem 1.6rem;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Strong white light effect - draws users in */
.contact::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 80%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  filter: blur(60px);
  animation: gentle-pulse 6s ease-in-out infinite;
}

.contact.reveal.visible::before {
  opacity: 1;
}

@keyframes gentle-pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 0.85;
  }
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.contact .panel {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all 0.4s var(--ease);
}

.contact .panel:hover {
  border-color: rgba(253, 184, 19, 0.3);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.3);
}

.panel h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.panel p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.panel form {
  display: grid;
  gap: 1.2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field textarea {
  background: var(--bg-alt);
  color: var(--text);
  border: 2px solid var(--glass-border);
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
  font-family: inherit;
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(253, 184, 19, 0.3);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-glow), 0 0 20px -5px var(--brand-glow);
  background: var(--bg);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
  opacity: 0.6;
}

.consent {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-dim);
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.consent input {
  margin-top: 0.25rem;
  accent-color: var(--brand);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.panel small {
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.8;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  padding: 5rem 0 3rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, transparent 0%, rgba(253, 184, 19, 0.03) 100%);
}

.foot-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

footer p {
  margin-top: 0.8rem;
  line-height: 1.7;
}

footer a {
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}

footer a:hover {
  color: var(--brand);
  text-shadow: none;
}

.footer-copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 0.85rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.4s var(--ease);
}

.social-icon:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 10px 30px -10px var(--brand-glow);
}

/* ===================================
   ANIMATIONS
   =================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for grid items */
.feature-grid .card:nth-child(1) { transition-delay: 0s; }
.feature-grid .card:nth-child(2) { transition-delay: 0.1s; }
.feature-grid .card:nth-child(3) { transition-delay: 0.2s; }
.feature-grid .card:nth-child(4) { transition-delay: 0.3s; }
.feature-grid .card:nth-child(5) { transition-delay: 0.4s; }
.feature-grid .card:nth-child(6) { transition-delay: 0.5s; }

.timeline .step:nth-child(1) { transition-delay: 0s; }
.timeline .step:nth-child(2) { transition-delay: 0.15s; }
.timeline .step:nth-child(3) { transition-delay: 0.3s; }
.timeline .step:nth-child(4) { transition-delay: 0.45s; }

/* Floating Animation */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(-5px) rotate(-1deg); }
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* Shimmer Effect */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Glow Pulse */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--brand-glow); }
  50% { box-shadow: 0 0 40px var(--brand-glow), 0 0 60px var(--brand-glow); }
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet styles */
@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  
  .hero-lede {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .stat-badges {
    gap: 0.8rem;
  }
  
  .badge {
    padding: 0.7rem 1rem;
    font-size: 0.75rem;
  }
  
  .section-head {
    margin-bottom: 2.5rem;
  }
  
  .section-head h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
  
  .section-head p {
    font-size: 1rem;
  }
  
  .feature-grid,
  .pricing-grid,
  .timeline {
    gap: 1.2rem;
  }
  
  .card {
    padding: 1.5rem 1.3rem;
    min-height: auto;
  }
  
  .step {
    padding: 2.5rem 1.2rem 1.5rem;
    min-height: auto;
  }
  
  .plan {
    padding: 2rem 1.5rem;
  }
  
  .plan:nth-child(2) {
    transform: scale(1);
  }
  
  .plan:nth-child(2):hover {
    transform: translateY(-8px);
  }
  
  .cta-band {
    padding: 2.5rem 1.5rem;
    margin: 3rem 0 1.5rem;
  }
  
  .cta-band h3 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .faq-btn {
    padding: 1.1rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .slide {
    padding: 2rem 1.5rem;
  }
  
  .quote {
    font-size: 1.1rem;
  }
  
  .foot-grid {
    gap: 2rem;
    text-align: center;
  }
  
  footer {
    padding: 3.5rem 0 2rem;
  }
}

/* Small mobile styles */
@media (max-width: 560px) {
  .hero-visual .panel {
    display: none;
  }

  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }
  
  .hero-grid {
    gap: 2rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-lede {
    font-size: 0.95rem;
    margin-top: 1rem;
  }
  
  .stat-badges {
    margin-top: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .badge {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    width: 85%;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }
  
  .brand span {
    display: none;
  }
  
  #lightbulb-container {
    display: none;
  }

  .feature-grid,
  .pricing-grid,
  .timeline,
  .show-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .card {
    padding: 1.3rem 1.1rem;
  }
  
  .card h3 {
    font-size: 1rem;
  }
  
  .card ul {
    font-size: 0.8rem;
  }
  
  .section-head h2 {
    font-size: 1.6rem;
  }
  
  .section-head h2::after {
    bottom: -8px;
    width: 40px;
    height: 3px;
  }
  
  .section-head p {
    font-size: 0.9rem;
    margin-top: 1.2rem;
  }
  
  .features,
  .process,
  .showcase,
  .testimonials,
  .pricing,
  .faq,
  .contact {
    padding: 4rem 0 3rem;
  }
  
  .step::before {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    top: -14px;
  }
  
  .step h3 {
    font-size: 1.1rem;
  }
  
  .show-item {
    aspect-ratio: 16/9;
  }
  
  .plan {
    padding: 1.8rem 1.3rem;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .cta-band {
    padding: 2rem 1.2rem;
    border-radius: var(--radius);
  }
  
  .cta-band h3 {
    font-size: 1.3rem;
  }
  
  .cta-band p {
    font-size: 0.9rem;
  }
  
  .faq-btn {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .faq-btn span {
    font-size: 1.2rem;
  }
  
  .faq-item.open .faq-content {
    font-size: 0.9rem;
    padding: 0 1rem 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact .panel {
    padding: 1.8rem 1.3rem;
  }
  
  .panel h3 {
    font-size: 1.1rem;
  }
  
  .field input,
  .field textarea {
    padding: 0.85rem 0.9rem;
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.9rem;
  }
  
  .slide {
    padding: 1.5rem 1.2rem;
  }
  
  .quote {
    font-size: 1rem;
    padding-left: 1rem;
  }
  
  .author {
    font-size: 0.8rem;
  }
  
  .carousel-dots {
    margin-top: 1.5rem;
    gap: 0.6rem;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
  
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  footer h4 {
    font-size: 1rem;
  }
  
  footer p {
    font-size: 0.85rem;
  }
  
  .footer-copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
  }
  
  .cursor-glow {
    display: none;
  }
  
  /* Disable parallax on mobile for performance */
  .hero-visual,
  .hero-content {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .hero-lede {
    font-size: 0.9rem;
  }
  
  .section-head h2 {
    font-size: 1.4rem;
  }
  
  .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .card,
  .plan,
  .contact .panel {
    padding: 1.2rem 1rem;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  
  .cursor-glow {
    display: none;
  }
}

/* Focus Styles for Accessibility */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* ===================================
   ADDITIONAL PREMIUM STYLES
   =================================== */

/* Button SVG Icons */
.btn svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-outline:hover svg {
  transform: translateX(3px);
}

/* Badge SVG Icons */
.badge svg {
  flex-shrink: 0;
  stroke: var(--brand);
  transition: stroke 0.3s var(--ease);
}

.badge:hover svg {
  stroke: #0a0a0f;
}

/* Social Icons in Footer - Orbital Animation */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  position: relative;
  width: 180px;
  height: 180px;
}

.social-icons::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px dashed var(--glass-border);
  border-radius: 50%;
  opacity: 0.5;
}

.social-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  z-index: 2;
}

/* Orbital paths for each icon */
.social-icon:nth-child(1) {
  animation: orbit1 12s linear infinite;
}

.social-icon:nth-child(2) {
  animation: orbit2 12s linear infinite;
}

.social-icon:nth-child(3) {
  animation: orbit3 12s linear infinite;
}

@keyframes orbit1 {
  0% { transform: rotate(0deg) translateX(60px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}

@keyframes orbit2 {
  0% { transform: rotate(120deg) translateX(60px) rotate(-120deg); }
  100% { transform: rotate(480deg) translateX(60px) rotate(-480deg); }
}

@keyframes orbit3 {
  0% { transform: rotate(240deg) translateX(60px) rotate(-240deg); }
  100% { transform: rotate(600deg) translateX(60px) rotate(-600deg); }
}

.social-icon svg {
  transition: transform 0.3s var(--ease);
}

.social-icon:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #0a0a0f;
  box-shadow: 0 15px 35px -10px var(--brand-glow);
  animation-play-state: paused;
  z-index: 10;
}

.social-icon:hover svg {
  transform: scale(1.2);
}

/* Pause all orbits when hovering the container */
.social-icons:hover .social-icon {
  animation-play-state: paused;
}

/* Loading Skeleton Effect */
.skeleton {
  background: linear-gradient(90deg, var(--glass) 25%, var(--glass-border) 50%, var(--glass) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Gradient Text Utility */
.gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Glass Card Utility */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* Glow Effect Utility */
.glow {
  box-shadow: 0 0 40px -10px var(--brand-glow);
}

/* Smooth Image Loading */
img {
  opacity: 1;
  transition: opacity 0.4s ease;
}

img[loading] {
  opacity: 0;
}

/* Better Selection Colors */
::selection {
  background: var(--brand);
  color: #0a0a0f;
}

::-moz-selection {
  background: var(--brand);
  color: #0a0a0f;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--glass-border);
  border-radius: 5px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}

/* ===================================
   FLOATING ORBITAL SOCIAL ICONS
   =================================== */
.floating-socials {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 140px;
  height: 140px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-socials::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px dashed var(--glass-border);
  border-radius: 50%;
  opacity: 0.4;
}

.floating-social-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  z-index: 2;
  text-decoration: none;
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.3);
}

.floating-social-icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease);
}

/* Orbital paths for each icon */
.floating-social-icon:nth-child(1) {
  animation: float-orbit1 10s linear infinite;
}

.floating-social-icon:nth-child(2) {
  animation: float-orbit2 10s linear infinite;
}

.floating-social-icon:nth-child(3) {
  animation: float-orbit3 10s linear infinite;
}

@keyframes float-orbit1 {
  0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

@keyframes float-orbit2 {
  0% { transform: rotate(120deg) translateX(50px) rotate(-120deg); }
  100% { transform: rotate(480deg) translateX(50px) rotate(-480deg); }
}

@keyframes float-orbit3 {
  0% { transform: rotate(240deg) translateX(50px) rotate(-240deg); }
  100% { transform: rotate(600deg) translateX(50px) rotate(-600deg); }
}

.floating-social-icon:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #0a0a0f;
  box-shadow: 0 10px 30px -5px var(--brand-glow);
  animation-play-state: paused;
  z-index: 10;
}

.floating-social-icon.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5);
}

.floating-social-icon:hover svg {
  transform: scale(1.2);
}

/* Pause all orbits when hovering the container */
.floating-socials:hover .floating-social-icon {
  animation-play-state: paused;
}

/* Comet Trail Stars */
.comet-trail-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

.comet-star {
  position: absolute;
  background: var(--brand);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 6px var(--brand), 0 0 12px var(--brand-glow);
  animation: star-fade 0.8s ease-out forwards;
}

.comet-star::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
}

@keyframes star-fade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.2) translateY(10px);
  }
}

/* Pause comet trails when hovering */
.floating-socials:hover .comet-trail-container {
  opacity: 0.3;
}

@media (max-width: 560px) {
  .floating-socials {
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
  }
  
  .floating-socials::before {
    width: 80px;
    height: 80px;
  }
  
  .floating-social-icon {
    width: 38px;
    height: 38px;
  }
  
  .floating-social-icon svg {
    width: 16px;
    height: 16px;
  }
  
  @keyframes float-orbit1 {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
  }
  
  @keyframes float-orbit2 {
    0% { transform: rotate(120deg) translateX(40px) rotate(-120deg); }
    100% { transform: rotate(480deg) translateX(40px) rotate(-480deg); }
  }
  
  @keyframes float-orbit3 {
    0% { transform: rotate(240deg) translateX(40px) rotate(-240deg); }
    100% { transform: rotate(600deg) translateX(40px) rotate(-600deg); }
  }
}

/* Lightbulb Component Styles */
#lightbulb-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.05rem 0.15rem;
  margin-left: 1rem;
  margin-top: 4px;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}

#lightbulb-container::before {
  display: none;
}

#lightbulb-container:hover::before {
  transform: translateX(-50%) translateY(2px);
}

/* Mode text inside the container */
#lightbulb-mode-text {
  color: #6b7280;
  font-family: cursive, 'Comic Sans MS';
  font-weight: bold;
  font-size: 0.65rem;
  margin-top: 0.1rem;
  opacity: 1;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.theme-light #lightbulb-mode-text {
  color: #374151;
}

/* Dark mode shows "Light mode" text in white */
#lightbulb-container::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Ctext x='5' y='15' font-family='cursive, Comic Sans MS' font-size='12' fill='white' font-weight='bold'%3ELight mode%3C/text%3E%3C/svg%3E");
}

/* Light mode shows "Dark mode" text in black */
.theme-light #lightbulb-container::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Ctext x='5' y='15' font-family='cursive, Comic Sans MS' font-size='12' fill='black' font-weight='bold'%3EDark mode%3C/text%3E%3C/svg%3E");
}

#lightbulb-container:hover {
  background: rgba(253, 184, 19, 0.08);
  border-color: rgba(253, 184, 19, 0.2);
}

#lightbulb-container:active {
  transform: scale(0.98);
}

#lightbulb-text {
  color: #6b7280;
  font-weight: 700;
  font-size: 0.7rem;
  margin-left: 0;
  margin-top: -0.3rem;
  opacity: 1;
  transition: all 260ms ease;
  text-shadow: none;
  white-space: nowrap;
}

#lightbulb-container.hover #lightbulb-text {
  color: var(--brand);
  opacity: 1;
  text-shadow: 0 2px 12px rgba(255,200,60,0.45);
}

#lightbulb-wrapper {
  transition: all 260ms ease;
  transform: translateY(0) scale(0.7);
  filter: none;
}

#lightbulb-container.hover #lightbulb-wrapper {
  transform: translateY(-3px) scale(0.75);
  filter: drop-shadow(0 12px 25px rgba(255, 200, 60, 0.4));
}

.bulb-glass {
  transition: fill 260ms ease, opacity 260ms ease;
  fill: #6b7280;
  opacity: 0.95;
}

#lightbulb-container.hover .bulb-glass {
  fill: #FFD54A;
  opacity: 1;
}

.bulb-glow {
  transition: opacity 260ms ease;
  opacity: 0;
  filter: blur(8px);
  fill: #FFD54A;
}

#lightbulb-container.hover .bulb-glow {
  opacity: 0.9;
}

.bulb-filament {
  transition: stroke 260ms ease, opacity 260ms ease;
  stroke: #374151;
  opacity: 0.9;
}

#lightbulb-container.hover .bulb-filament {
  stroke: #6b3b00;
  opacity: 1;
}

#lightbulb-text-container,
#lightbulb-subtext {
    display: none; /* Hide text elements */
}

/* Light mode adjustments for lightbulb */
.theme-light #lightbulb-text {
  color: #374151;
}

.theme-light #lightbulb-container.hover #lightbulb-text {
  color: var(--brand);
}

/* ===================================
   PRICING ENHANCEMENTS
   =================================== */
.pricing-breakdown {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  background: var(--glass);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--glass-border);
}

.pricing-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.95rem;
  gap: 1rem;
}

.pricing-breakdown li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-breakdown li:first-child {
  padding-top: 0;
}

.pricing-breakdown li span {
  color: var(--text-dim);
  flex: 1;
}

.pricing-breakdown li strong {
  color: var(--brand);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

.plan.featured {
  position: relative;
  border: 2px solid var(--brand);
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--brand);
  color: var(--bg);
  padding: 0.4rem 2.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 10;
}

.vat-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ===================================
   ENHANCED PREMIUM STYLES - IT LIGHTY
   Modern Design Upgrade v2.0
   =================================== */

/* ===================================
   ANIMATED GRADIENT BACKGROUND
   =================================== */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(-45deg, 
    rgba(253, 184, 19, 0.03), 
    rgba(245, 158, 11, 0.05), 
    rgba(253, 184, 19, 0.02), 
    rgba(10, 10, 15, 0));
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
  pointer-events: none;
  z-index: 0;
}

/* ===================================
   ENHANCED HERO SECTION
   =================================== */
.hero-tag {
  animation: slide-up 0.8s ease-out;
  background: linear-gradient(135deg, rgba(253, 184, 19, 0.15) 0%, rgba(253, 184, 19, 0.05) 100%);
  border: 1px solid rgba(253, 184, 19, 0.3);
  box-shadow: 0 4px 20px -8px rgba(253, 184, 19, 0.3);
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  animation: title-reveal 1s ease-out 0.2s both;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 25%, var(--brand) 50%, #ffffff 75%, #e0e0e0 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-reveal 1s ease-out 0.2s both, text-shimmer 8s linear infinite;
}

@keyframes title-reveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes text-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Enhanced Stats with Glow */
.stat-number {
  text-shadow: 0 0 40px var(--brand-glow);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  text-shadow: 0 0 60px var(--brand-glow), 0 0 80px var(--brand-glow);
}

/* ===================================
   MODERN CARD HOVER EFFECTS
   =================================== */
.card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 50%,
    rgba(253, 184, 19, 0.02) 100%);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, rgba(253, 184, 19, 0.3) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card:hover::before {
  opacity: 1;
}

/* Pill enhancement */
.pill {
  position: relative;
  overflow: hidden;
}

.pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: pill-shine 3s ease-in-out infinite;
}

@keyframes pill-shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* ===================================
   ENHANCED BUTTONS
   =================================== */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after {
  opacity: 1;
  animation: btn-shine 0.6s ease-out;
}

@keyframes btn-shine {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

/* ===================================
   PRICING CARDS UPGRADE
   =================================== */
.plan {
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.plan.featured {
  background: linear-gradient(180deg, 
    rgba(253, 184, 19, 0.08) 0%, 
    rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 
    0 0 0 1px rgba(253, 184, 19, 0.3),
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 80px -20px var(--brand-glow);
}

.plan.featured::before {
  transform: scaleX(1);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

/* ===================================
   VISUAL CARD ENHANCEMENTS
   =================================== */
.visual-card {
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--brand-glow), transparent 30%);
  animation: rotate-border 8s linear infinite;
  opacity: 0.3;
}

@keyframes rotate-border {
  100% { transform: rotate(360deg); }
}

.visual-card > * {
  position: relative;
  z-index: 1;
}

/* ===================================
   SECTION DIVIDERS
   =================================== */
.features::before,
.pricing::before,
.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float-medium {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-2deg); }
}

/* ===================================
   ENHANCED FAQ ACCORDION
   =================================== */
.faq-item {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.03) 0%, 
    rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item:hover {
  border-color: rgba(253, 184, 19, 0.3);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.faq-item.open {
  border-color: var(--brand);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.4), 0 0 30px -15px var(--brand-glow);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-btn:hover {
  color: var(--brand);
}

.faq-btn span {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand);
  transition: transform 0.4s ease;
}

.faq-item.open .faq-btn span {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-dim);
  line-height: 1.7;
}

.faq-item.open .faq-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* ===================================
   CONTACT SECTION UPGRADE
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact .panel {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  transition: all 0.4s ease;
}

.contact .panel:hover {
  border-color: rgba(253, 184, 19, 0.3);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
}

/* Form field styling */
.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.15), 0 0 20px -5px var(--brand-glow);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
  opacity: 0.6;
}

/* Consent checkbox */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-dim);
  cursor: pointer;
}

.consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================================
   SCROLLBAR ENHANCEMENT
   =================================== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand), var(--brand-accent));
  border-radius: 6px;
  border: 3px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--brand-accent), var(--brand));
}

/* ===================================
   CTA BAND ENHANCEMENT
   =================================== */
.cta-band {
  background: linear-gradient(135deg, 
    rgba(253, 184, 19, 0.1) 0%, 
    rgba(253, 184, 19, 0.05) 50%,
    rgba(245, 158, 11, 0.08) 100%);
  border: 1px solid rgba(253, 184, 19, 0.2);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  margin: 4rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 184, 19, 0.1) 0%, transparent 50%);
  animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--text-dim);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   TESTIMONIAL ENHANCEMENT
   =================================== */
.slide {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.06) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.quote {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--text);
}

.author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author::before {
  content: '';
  color: var(--brand);
}

/* ===================================
   FOOTER ENHANCEMENT
   =================================== */
footer {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 10, 15, 0.98) 100%);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2.5rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 960px) {
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

footer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text);
  position: relative;
  display: inline-block;
}

footer h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}

footer p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

footer a {
  color: var(--text-dim);
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--brand);
}

.footer-copyright {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ===================================
   REVEAL ANIMATIONS
   =================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid items */
.feature-grid .card:nth-child(1) { transition-delay: 0.1s; }
.feature-grid .card:nth-child(2) { transition-delay: 0.2s; }
.feature-grid .card:nth-child(3) { transition-delay: 0.3s; }
.feature-grid .card:nth-child(4) { transition-delay: 0.4s; }
.feature-grid .card:nth-child(5) { transition-delay: 0.5s; }
.feature-grid .card:nth-child(6) { transition-delay: 0.6s; }

.pricing-grid .plan:nth-child(1) { transition-delay: 0.1s; }
.pricing-grid .plan:nth-child(2) { transition-delay: 0.2s; }
.pricing-grid .plan:nth-child(3) { transition-delay: 0.3s; }

.timeline .step:nth-child(1) { transition-delay: 0.1s; }
.timeline .step:nth-child(2) { transition-delay: 0.2s; }
.timeline .step:nth-child(3) { transition-delay: 0.3s; }
.timeline .step:nth-child(4) { transition-delay: 0.4s; }
