/* ============================================================
   AVA — Premium Dark SaaS Theme
   Premium B&W design system | Minimal warm accent
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Variables
   ------------------------------------------------------------ */
:root {
  --ff-1: "Plus Jakarta Sans", sans-serif;
  --ff-3: "Be Vietnam Pro", sans-serif;

  /* PRIMARY = NEUTRAL WHITE (B&W premium) */
  --primary-key: 0 0% 88%;
  --primary-10: 0 0% 15%;
  --primary-20: 0 0% 25%;
  --primary-30: 0 0% 35%;
  --primary-40: 0 0% 50%;
  --primary-50: 0 0% 65%;
  --primary-60: 0 0% 75%;
  --primary-80: 0 0% 88%;
  --primary-90: 0 0% 94%;
  --primary-100: 0 0% 100%;

  /* ACCENT = GOLD LUXE (Versace/Rolex — accent premium) */
  --accent: 42 76% 55%;
  --accent-soft: 40 80% 68%;
  --accent-glow: 39 60% 78%;
  --accent-dim: 40 30% 40%;

  /* GOLD PALETTE */
  --gold: 42 76% 55%;
  --gold-light: 40 80% 68%;
  --gold-soft: 38 45% 62%;
  --gold-dim: 40 30% 40%;
  --gold-pale: 39 60% 78%;
  --gold-deep: 36 85% 42%;

  /* NEUTRAL — warm tint (hue 25-30 dark, fading to 10 light) */
  --neutral-0: 0 0% 0%;
  --neutral-4: 30 8% 5%;
  --neutral-6: 30 6% 7%;
  --neutral-10: 30 4% 11%;
  --neutral-12: 30 3% 12%;
  --neutral-17: 25 3% 16%;
  --neutral-20: 25 2% 19%;
  --neutral-22: 25 2% 20%;
  --neutral-24: 20 2% 22%;
  --neutral-30: 15 2% 27%;
  --neutral-40: 10 1% 37%;
  --neutral-50: 10 2% 56%;
  --neutral-60: 10 2% 66%;
  --neutral-70: 10 2% 77%;
  --neutral-80: 10 1% 77%;
  --neutral-90: 10 1% 89%;
  --neutral-100: 0 0% 100%;

  /* SIZES (clamp) */
  --d1: clamp(3.5rem, 4.210vw + 1rem, 5rem);
  --d2: clamp(3.15rem, 3.789vw + 1rem, 4.5rem);
  --h2: clamp(2.8rem, 3.368vw + 1rem, 4rem);
  --h3: clamp(2.1rem, 2.526vw + 1rem, 3rem);
  --h4: clamp(1.575rem, 1.894vw + 1rem, 2.25rem);
  --h5: clamp(1.225rem, 1.473vw + 1rem, 1.75rem);
  --h6: clamp(1rem, 1.052vw + 1rem, 1.25rem);
}

/* ------------------------------------------------------------
   1b. Scroll Progress Bar
   ------------------------------------------------------------ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, hsl(var(--gold)), hsl(var(--gold-light)));
  z-index: 10000;
  width: 0%;
  will-change: width;
  pointer-events: none;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-3);
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--neutral-90));
  background-color: hsl(var(--neutral-0));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.loaded {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Preserve explicit height on images with HTML height attribute */
img[height] {
  height: attr(height px);
}

/* Partner logos and inline icons — force explicit sizes */
.scroller-x__item img,
[style*="opacity: 0.6"] img,
[style*="opacity:0.6"] img {
  height: 32px;
  width: auto;
  max-width: none;
}

.scroller-x__item img[height="20"] {
  height: 20px;
}


ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: rgba(255,255,255,0.15);
  color: hsl(var(--neutral-100));
}

/* ------------------------------------------------------------
   3. Typography Utilities
   ------------------------------------------------------------ */
.ff-1 { font-family: var(--ff-1); }
.ff-3 { font-family: var(--ff-3); }

.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-20 { font-size: 20px; }
.fs-24 { font-size: 24px; }

.fw-regular { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }
.fw-extrabold { font-weight: 800; }
.fw-black { font-weight: 900; }

.clr-neutral-40 { color: hsl(var(--neutral-40)); }
.clr-neutral-50 { color: hsl(var(--neutral-50)); }
.clr-neutral-60 { color: hsl(var(--neutral-60)); }
.clr-neutral-70 { color: hsl(var(--neutral-70)); }
.clr-neutral-80 { color: hsl(var(--neutral-80)); }
.clr-neutral-90 { color: hsl(var(--neutral-90)); }
.clr-neutral-100 { color: hsl(var(--neutral-100)); }
.clr-primary-key { color: hsl(var(--primary-key)); }
.clr-primary-50 { color: hsl(var(--primary-50)); }
.clr-primary-60 { color: hsl(var(--primary-60)); }

.bg-black { background-color: hsl(var(--neutral-0)); }
.bg-neutral-4 { background-color: hsl(var(--neutral-4)); }
.bg-neutral-6 { background-color: hsl(var(--neutral-6)); }
.bg-neutral-10 { background-color: hsl(var(--neutral-10)); }
.bg-neutral-12 { background-color: hsl(var(--neutral-12)); }
.bg-primary-key { background-color: hsl(var(--primary-key)); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.letter-spacing-1 { letter-spacing: 0.02em; }
.letter-spacing-2 { letter-spacing: 0.05em; }
.letter-spacing-3 { letter-spacing: 0.1em; }

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

.container-lg {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }

.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

/* ------------------------------------------------------------
   5. Section Spacing
   ------------------------------------------------------------ */
.section-space-sm-bottom { padding-bottom: 80px; }
.section-space-sm-top { padding-top: 80px; }
.section-space-sm-y { padding-top: 80px; padding-bottom: 80px; }
.section-space-bottom { padding-bottom: 120px; }
.section-space-top { padding-top: 120px; }
.section-space-y { padding-top: 120px; padding-bottom: 120px; }
.section-space-lg-bottom { padding-bottom: 160px; }
.section-space-lg-top { padding-top: 160px; }
.section-space-lg-y { padding-top: 160px; padding-bottom: 160px; }

/* ------------------------------------------------------------
   6. Gradient Buttons
   ------------------------------------------------------------ */
.gradient-btn-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 800px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ff-1);
  color: #0A0A0C;
  background: linear-gradient(135deg, hsl(var(--gold-light)), hsl(var(--gold)));
  border: 1px solid hsl(var(--gold-light));
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.gradient-btn-1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsl(var(--gold) / 0.25), 0 0 50px hsl(var(--gold) / 0.15);
}

.gradient-btn-1:active {
  transform: translateY(0);
}

.gradient-btn-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 800px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ff-1);
  color: hsl(var(--neutral-100));
  border: 1px solid hsl(var(--neutral-30));
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.gradient-btn-2:hover {
  border-color: rgba(255,255,255,0.5);
  color: hsl(var(--neutral-100));
  box-shadow: 0 4px 24px rgba(255,255,255,0.12);
}

.gradient-btn-2:active {
  transform: translateY(1px);
}

.gradient-btn-3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 800px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--ff-1);
  color: #0A0A0C;
  background: linear-gradient(135deg, hsl(var(--gold-light)), hsl(var(--gold)));
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.gradient-btn-3:hover {
  background: linear-gradient(135deg, hsl(var(--gold-pale)), hsl(var(--gold-light)));
  transform: translateY(-1px);
  box-shadow: 0 12px 40px hsl(var(--gold) / 0.25), 0 0 60px hsl(var(--gold) / 0.12);
}

.gradient-btn-3:active {
  transform: translateY(0);
}

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

/* Pill / Badge */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 800px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ff-1);
  color: hsl(var(--gold-light));
  background: hsl(var(--gold) / 0.08);
  border: 1px solid hsl(var(--gold) / 0.15);
}

.pill-badge-neutral {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 800px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ff-1);
  color: hsl(var(--neutral-70));
  background: hsl(var(--neutral-17));
  border: 1px solid hsl(var(--neutral-24));
}

/* Icon inside button */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.btn-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ------------------------------------------------------------
   7. Promo Banner
   ------------------------------------------------------------ */
.promo-banner {
  background: hsl(var(--neutral-6));
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  color: hsl(var(--neutral-70));
  border-bottom: 1px solid hsl(var(--neutral-17));
  position: relative;
  z-index: 1000;
}

.promo-banner a {
  color: hsl(var(--neutral-80));
  font-weight: 600;
  transition: color 0.3s ease;
}

.promo-banner a:hover {
  color: hsl(var(--neutral-100));
}

.promo-banner .gradient-text {
  color: hsl(var(--neutral-100));
  font-weight: 700;
}

/* ------------------------------------------------------------
   8. Header
   ------------------------------------------------------------ */
.header-top {
  padding-top: 24px;
  position: absolute;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

.header-top img,
.header-mobile img {
  height: 44px;
  width: auto;
  max-width: none;
}

.footer img {
  height: 32px;
  width: auto;
  max-width: none;
}

body.header-crossed .header-top {
  position: fixed;
  top: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(var(--neutral-17));
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-logo span {
  font-family: var(--ff-1);
  font-size: 20px;
  font-weight: 800;
  color: hsl(var(--neutral-100));
  letter-spacing: -0.02em;
}

/* Navigation */
.menu-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-nav .link {
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--neutral-70));
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.menu-nav .link:hover {
  color: hsl(var(--gold-light));
}

.menu-nav .link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: hsl(var(--gold));
  transition: width 0.3s ease;
}

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

.menu-nav .link.active {
  color: hsl(var(--neutral-100));
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: hsl(var(--neutral-100));
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.menu-nav-mobile {
  display: none;
}

/* ------------------------------------------------------------
   9. Hero Section
   ------------------------------------------------------------ */
.hero-1 {
  min-height: 100vh;
  padding-top: 180px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: circle(0% at 50% 50%);
}

.hero-1 .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 800px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ff-1);
  color: hsl(var(--neutral-80));
  background: hsl(var(--neutral-6));
  border: 1px solid hsl(var(--neutral-17));
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--accent));
  animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--ff-1);
  font-size: var(--d1);
  font-weight: 800;
  line-height: 1.05;
  color: hsl(var(--neutral-100));
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title .gradient-flow,
.gradient-flow {
  background: linear-gradient(270deg, hsl(var(--gold-light)), hsl(var(--gold)), hsl(var(--gold-pale)), hsl(var(--gold-light)));
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 6s ease infinite;
}

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

.hero-subtitle {
  font-size: 18px;
  color: hsl(var(--neutral-60));
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-visual {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.hero-visual img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid hsl(var(--neutral-17));
}

.hero-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Text animation */
.text-anim div {
  display: inline-block;
}

.text-anim .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

/* Hero background glow */
.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Hero grid lines */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(hsl(var(--neutral-17) / 0.3) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--neutral-17) / 0.3) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
}

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

.hero-stat-number {
  font-family: var(--ff-1);
  font-size: 32px;
  font-weight: 800;
  color: hsl(var(--neutral-100));
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 14px;
  color: hsl(var(--neutral-50));
}

/* ------------------------------------------------------------
   10. Scroller-X (Infinite Marquee)
   ------------------------------------------------------------ */
.scroller-x {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.scroller-x__list {
  display: flex;
  gap: 48px;
  align-items: center;
}

.scroller-x[data-animated="true"] .scroller-x__list {
  animation: scrollX 30s linear infinite;
  width: max-content;
}

.scroller-x__item {
  flex-shrink: 0;
}

@keyframes scrollX {
  to {
    transform: translateX(-50%);
  }
}

/* Logo scroller specific */
.logo-scroller {
  padding: 48px 0;
}

.logo-scroller .scroller-x__item {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.logo-scroller .scroller-x__item:hover {
  opacity: 0.8;
}

.logo-scroller .scroller-x__item img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Text scroller */
.text-scroller .scroller-x__item {
  font-family: var(--ff-1);
  font-size: var(--h3);
  font-weight: 800;
  color: hsl(var(--neutral-17));
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-scroller .scroller-x__item .highlight {
  color: hsl(var(--neutral-30));
}

/* Separator dot between scroller items */
.scroller-x__separator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--neutral-30));
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   11. Section Header (reusable)
   ------------------------------------------------------------ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header .section-badge {
  margin-bottom: 16px;
}

.section-header .section-title {
  font-family: var(--ff-1);
  font-size: var(--h2);
  font-weight: 800;
  line-height: 1.1;
  color: hsl(var(--neutral-100));
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-header .section-subtitle {
  font-size: 18px;
  color: hsl(var(--neutral-60));
  line-height: 1.7;
}

/* Left-aligned variant */
.section-header-left {
  text-align: left;
  max-width: none;
  margin: 0 0 64px;
}

.section-header-left .section-title {
  font-family: var(--ff-1);
  font-size: var(--h3);
  font-weight: 800;
  line-height: 1.15;
  color: hsl(var(--neutral-100));
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header-left .section-subtitle {
  font-size: 16px;
  color: hsl(var(--neutral-60));
  line-height: 1.7;
  max-width: 500px;
}

/* ------------------------------------------------------------
   12. AI Template Cards (Niche/Industry)
   ------------------------------------------------------------ */
.ai-templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ai-template-card {
  background: hsl(var(--neutral-6));
  border-radius: 16px;
  padding: 24px;
  border: 1px solid hsl(var(--neutral-17));
  transition: all 0.3s ease;
  cursor: pointer;
}

.ai-template-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.ai-template-card-image {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: hsl(var(--neutral-10));
}

.ai-template-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ai-template-card:hover .ai-template-card-image img {
  transform: scale(1.05);
}

.ai-template-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ai-template-card-icon svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--neutral-80));
}

.ai-template-card h6 {
  font-family: var(--ff-1);
  font-size: var(--h6);
  font-weight: 700;
  color: hsl(var(--neutral-100));
  margin-bottom: 8px;
}

.ai-template-card p {
  font-size: 14px;
  color: hsl(var(--neutral-60));
  line-height: 1.6;
}

.ai-template-card .card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 800px;
  font-size: 12px;
  font-weight: 600;
  color: hsl(var(--primary-60));
  background: hsl(var(--primary-key) / 0.1);
  margin-top: 12px;
}

/* ------------------------------------------------------------
   13. Feature Cards Grid
   ------------------------------------------------------------ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: hsl(var(--neutral-4));
  border-radius: 16px;
  padding: 32px;
  border: 1px solid hsl(var(--neutral-17));
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: hsl(var(--gold-dim));
  background: hsl(var(--neutral-6));
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: hsl(var(--gold) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}

.feature-card:hover .feature-card-icon {
  background: hsl(var(--gold) / 0.18);
}

.feature-card-icon svg,
.feature-card-icon img {
  width: 24px;
  height: 24px;
  color: hsl(var(--gold-light));
}

.feature-card h5 {
  font-family: var(--ff-1);
  font-size: var(--h5);
  font-weight: 700;
  color: hsl(var(--neutral-100));
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 15px;
  color: hsl(var(--neutral-60));
  line-height: 1.7;
}

/* Feature card large (spans 2 cols) */
.feature-card-lg {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.feature-card-lg .feature-card-content {
  padding: 8px 0;
}

.feature-card-lg .feature-card-visual {
  border-radius: 12px;
  overflow: hidden;
  background: hsl(var(--neutral-10));
}

.feature-card-lg .feature-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Number-based features */
.feature-number {
  font-family: var(--ff-1);
  font-size: 48px;
  font-weight: 900;
  color: hsl(var(--primary-key) / 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.feature-card:hover .feature-number {
  color: hsl(var(--primary-key) / 0.4);
}

/* ------------------------------------------------------------
   14. "What is AVA" / About Section
   ------------------------------------------------------------ */
.about-section {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .about-title {
  font-family: var(--ff-1);
  font-size: var(--h3);
  font-weight: 800;
  line-height: 1.15;
  color: hsl(var(--neutral-100));
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-content .about-description {
  font-size: 16px;
  color: hsl(var(--neutral-60));
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-content .about-description:last-of-type {
  margin-bottom: 32px;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid hsl(var(--neutral-17));
}

.about-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at center, hsl(var(--primary-key) / 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* About list items */
.about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: hsl(var(--neutral-80));
}

.about-list-item .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: hsl(var(--primary-key) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-list-item .check-icon svg {
  width: 12px;
  height: 12px;
  color: hsl(var(--primary-key));
}

/* Decorative shapes */
.about-shape-1 {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: hsl(var(--primary-key) / 0.03);
  pointer-events: none;
}

.about-shape-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border: 1px solid hsl(var(--neutral-17));
  border-radius: 50%;
  pointer-events: none;
}

/* Reversed layout */
.about-grid-reverse {
  grid-template-columns: 1fr 1.2fr;
}

.about-grid-reverse .about-visual {
  order: -1;
}

/* ------------------------------------------------------------
   15. Dashboard Mockup
   ------------------------------------------------------------ */
.dashboard-mock {
  background: hsl(var(--neutral-6));
  border-radius: 16px;
  border: 1px solid hsl(var(--neutral-17));
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.dashboard-mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid hsl(var(--neutral-17));
}

.dashboard-mock-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dashboard-mock-dot.red { background: #ff5f57; }
.dashboard-mock-dot.yellow { background: #febc2e; }
.dashboard-mock-dot.green { background: #28c840; }

.dashboard-mock-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: hsl(var(--neutral-50));
  margin-left: -36px;
}

.dashboard-mock-body {
  padding: 32px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.dashboard-metric {
  background: hsl(var(--neutral-10));
  border-radius: 12px;
  padding: 20px;
  border: 1px solid hsl(var(--neutral-17));
}

.dashboard-metric-label {
  font-size: 12px;
  color: hsl(var(--neutral-50));
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-metric-value {
  font-family: var(--ff-1);
  font-size: 28px;
  font-weight: 800;
  color: hsl(var(--neutral-100));
  line-height: 1;
}

.dashboard-metric-change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.dashboard-metric-change.up { color: #22c55e; }
.dashboard-metric-change.down { color: #ef4444; }

.dashboard-chart {
  background: hsl(var(--neutral-10));
  border-radius: 12px;
  padding: 24px;
  border: 1px solid hsl(var(--neutral-17));
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.dashboard-chart-bar {
  flex: 1;
  background: linear-gradient(to top, hsl(var(--primary-key) / 0.3), hsl(var(--primary-key)));
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  transition: height 0.6s ease;
}

/* ------------------------------------------------------------
   16. How It Works / Steps Section
   ------------------------------------------------------------ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--neutral-30)), transparent);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: hsl(var(--neutral-6));
  border: 1px solid hsl(var(--neutral-24));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--ff-1);
  font-size: 28px;
  font-weight: 800;
  color: hsl(var(--gold));
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  border-color: hsl(var(--gold) / 0.5);
  background: hsl(var(--gold) / 0.06);
}

.step-card h5 {
  font-family: var(--ff-1);
  font-size: var(--h5);
  font-weight: 700;
  color: hsl(var(--neutral-100));
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: hsl(var(--neutral-60));
  line-height: 1.6;
}

/* ------------------------------------------------------------
   17. Stats / Numbers Section
   ------------------------------------------------------------ */
.stats-section {
  background: hsl(var(--neutral-4));
  border-top: 1px solid hsl(var(--neutral-17));
  border-bottom: 1px solid hsl(var(--neutral-17));
}

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

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: var(--ff-1);
  font-size: var(--h2);
  font-weight: 900;
  color: hsl(var(--neutral-100));
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .accent {
  color: hsl(var(--gold));
}

/* Text-shadow glow on hover — V1 premium signature */
.counter, .stat-number, .hero-stat-number {
  transition: text-shadow 0.4s ease;
}
.counter:hover, .stat-number:hover, .hero-stat-number:hover {
  text-shadow: 0 0 80px rgba(255,255,255,0.25), 0 0 30px rgba(255,255,255,0.1);
}
.step-card:hover .step-number {
  text-shadow: 0 0 40px hsl(var(--gold) / 0.2);
}

.stat-label {
  font-size: 15px;
  color: hsl(var(--neutral-50));
}

/* Dividers between stats */
.stat-item + .stat-item {
  border-left: 1px solid hsl(var(--neutral-17));
}

/* ------------------------------------------------------------
   18. Testimonials Scrolling Section
   ------------------------------------------------------------ */
.testimonial-section-2 {
  overflow: hidden;
}

.testimonial-section-2 .scroller-x {
  margin-bottom: 24px;
}

.scroller-x.testimonial-row .scroller-x__list {
  animation-duration: 40s;
}

.scroller-x.testimonial-row-reverse .scroller-x__list {
  animation-direction: reverse;
}

.testimonial-card {
  background: hsl(var(--neutral-6));
  border-radius: 16px;
  padding: 28px;
  border: 1px solid hsl(var(--neutral-17));
  min-width: 350px;
  max-width: 400px;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: hsl(var(--neutral-30));
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: hsl(var(--gold-deep));
}

.testimonial-text {
  font-size: 15px;
  color: hsl(var(--neutral-80));
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(var(--neutral-17));
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-name {
  font-family: var(--ff-1);
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--neutral-100));
}

.testimonial-author-role {
  font-size: 13px;
  color: hsl(var(--neutral-50));
}

/* Single testimonial with larger quote */
.testimonial-large {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-large .testimonial-quote {
  font-family: var(--ff-1);
  font-size: var(--h4);
  font-weight: 600;
  color: hsl(var(--neutral-90));
  line-height: 1.5;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-large .testimonial-quote::before {
  content: "\201C";
  color: hsl(var(--primary-key));
}

.testimonial-large .testimonial-quote::after {
  content: "\201D";
  color: hsl(var(--gold));
}

/* ------------------------------------------------------------
   19. FAQ Accordion
   ------------------------------------------------------------ */
.custom-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.custom-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid hsl(var(--neutral-17));
}

.custom-accordion .accordion-item:first-child {
  border-top: 1px solid hsl(var(--neutral-17));
}

.custom-accordion .accordion-button {
  background: transparent;
  color: hsl(var(--neutral-100));
  font-family: var(--ff-1);
  font-weight: 600;
  font-size: 18px;
  padding: 24px 0;
  box-shadow: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s ease;
}

.custom-accordion .accordion-button:hover {
  color: hsl(var(--neutral-100));
}

.custom-accordion .accordion-button::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: hsl(var(--neutral-50));
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  content: "\2212";
  color: hsl(var(--accent));
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.custom-accordion .accordion-collapse {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.custom-accordion .accordion-body {
  color: hsl(var(--neutral-70));
  padding: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Bootstrap override if using Bootstrap accordion */
.accordion-button:not(.collapsed) {
  background: transparent;
  color: hsl(var(--neutral-100));
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1);
}

/* Hide Bootstrap default ::after inside custom accordion (we use our own +/−) */
.custom-accordion .accordion-button::after {
  background-image: none !important;
}

/* Calendly embed — force iframe to fill container */
.calendly-inline-widget {
  min-height: 700px;
}

.calendly-inline-widget iframe {
  height: 100% !important;
  min-height: 700px !important;
}

/* Service card partner inline images */
.service-card img[height],
.service-highlight img[height] {
  width: auto;
  max-width: none;
}

/* ------------------------------------------------------------
   20. Pricing Cards
   ------------------------------------------------------------ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: hsl(var(--neutral-60));
  transition: color 0.3s ease;
}

.pricing-toggle-label.active {
  color: hsl(var(--neutral-100));
}

.pricing-toggle-switch {
  width: 48px;
  height: 26px;
  border-radius: 800px;
  background: hsl(var(--neutral-24));
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.pricing-toggle-switch.active {
  background: hsl(var(--primary-key));
}

.pricing-toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: hsl(var(--neutral-100));
  transition: transform 0.3s ease;
}

.pricing-toggle-switch.active::after {
  transform: translateX(22px);
}

.pricing-save-badge {
  font-size: 12px;
  font-weight: 700;
  color: hsl(var(--primary-key));
  background: hsl(var(--primary-key) / 0.1);
  padding: 4px 10px;
  border-radius: 800px;
}

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

.pricing-card {
  background: hsl(var(--neutral-6));
  border-radius: 16px;
  padding: 36px;
  border: 1px solid hsl(var(--neutral-17));
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: hsl(var(--neutral-30));
}

.pricing-card.featured {
  border-color: hsl(var(--accent) / 0.4);
  transform: scale(1.02);
  position: relative;
  box-shadow: 0 16px 64px hsl(var(--accent) / 0.06);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent) / 0.5), transparent);
}

.pricing-card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 800px;
  font-size: 12px;
  font-weight: 700;
  color: hsl(var(--primary-key));
  background: hsl(var(--primary-key) / 0.1);
  margin-bottom: 16px;
}

.pricing-card-name {
  font-family: var(--ff-1);
  font-size: 20px;
  font-weight: 700;
  color: hsl(var(--neutral-100));
  margin-bottom: 8px;
}

.pricing-card-description {
  font-size: 14px;
  color: hsl(var(--neutral-60));
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card-price {
  margin-bottom: 24px;
}

.pricing-card-amount {
  font-family: var(--ff-1);
  font-size: 48px;
  font-weight: 900;
  color: hsl(var(--neutral-100));
  line-height: 1;
}

.pricing-card-currency {
  font-size: 20px;
  font-weight: 700;
  vertical-align: top;
  margin-right: 2px;
}

.pricing-card-period {
  font-size: 14px;
  color: hsl(var(--neutral-50));
  margin-left: 4px;
}

.pricing-card-divider {
  width: 100%;
  height: 1px;
  background: hsl(var(--neutral-17));
  margin: 24px 0;
}

.pricing-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: hsl(var(--neutral-80));
}

.pricing-card-feature svg {
  width: 18px;
  height: 18px;
  color: hsl(var(--primary-key));
  flex-shrink: 0;
}

.pricing-card-feature.disabled {
  color: hsl(var(--neutral-40));
}

.pricing-card-feature.disabled svg {
  color: hsl(var(--neutral-30));
}

.pricing-card .gradient-btn-3 {
  width: 100%;
}

/* ------------------------------------------------------------
   21. CTA Section
   ------------------------------------------------------------ */
.cta-section-5 {
  padding: 120px 0;
  text-align: center;
}

.cta-wrapper-5 {
  background: hsl(var(--neutral-6));
  border-radius: 24px;
  padding: 80px;
  border: 1px solid hsl(var(--neutral-17));
  position: relative;
  overflow: hidden;
}

.cta-wrapper-5::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent) / 0.4), transparent);
}

.cta-wrapper-5-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, hsl(var(--accent) / 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-badge {
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--ff-1);
  font-size: var(--h2);
  font-weight: 800;
  line-height: 1.1;
  color: hsl(var(--neutral-100));
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 18px;
  color: hsl(var(--neutral-60));
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Alternate CTA with bg gradient */
.cta-gradient-bg {
  background: linear-gradient(135deg, hsl(var(--neutral-6)), hsl(var(--neutral-4)));
}

/* Simple CTA (no wrapper card) */
.cta-simple {
  text-align: center;
  padding: 120px 0;
}

/* ------------------------------------------------------------
   22. Footer
   ------------------------------------------------------------ */
.footer {
  background: hsl(var(--neutral-4));
  padding-top: 80px;
  padding-bottom: 24px;
  border-top: 1px solid hsl(var(--neutral-17));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 14px;
  color: hsl(var(--neutral-50));
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-logo span {
  font-family: var(--ff-1);
  font-size: 18px;
  font-weight: 800;
  color: hsl(var(--neutral-100));
}

.footer-column h6 {
  font-family: var(--ff-1);
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--neutral-100));
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li a {
  font-size: 14px;
  color: hsl(var(--neutral-50));
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: hsl(var(--gold-light));
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: hsl(var(--neutral-10));
  border: 1px solid hsl(var(--neutral-17));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  border-color: hsl(var(--gold));
  background: hsl(var(--gold) / 0.1);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  color: hsl(var(--neutral-60));
  transition: color 0.3s ease;
}

.footer-social-link:hover svg {
  color: hsl(var(--gold));
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid hsl(var(--neutral-17));
}

.footer-copyright {
  font-size: 13px;
  color: hsl(var(--neutral-40));
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: hsl(var(--neutral-40));
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: hsl(var(--gold-light));
}

/* ------------------------------------------------------------
   23. VAPI Widget
   ------------------------------------------------------------ */
.vapi-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.vapi-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: hsl(var(--primary-key));
  border: none;
  color: hsl(var(--neutral-100));
  font-size: 24px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px hsl(var(--primary-key) / 0.3);
}

.vapi-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px hsl(var(--primary-key) / 0.4);
}

.vapi-btn svg {
  width: 24px;
  height: 24px;
}

.vapi-btn.active {
  background: #ef4444;
}

.vapi-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: hsl(var(--primary-key) / 0.3);
  animation: vapiPulse 2s ease-out infinite;
  z-index: 1;
}

@keyframes vapiPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.vapi-label {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 12px;
  padding: 8px 16px;
  background: hsl(var(--neutral-10));
  border: 1px solid hsl(var(--neutral-17));
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--neutral-90));
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.vapi-widget:hover .vapi-label {
  opacity: 1;
  transform: translateY(0);
}

.vapi-label::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 22px;
  width: 10px;
  height: 10px;
  background: hsl(var(--neutral-10));
  border-right: 1px solid hsl(var(--neutral-17));
  border-bottom: 1px solid hsl(var(--neutral-17));
  transform: rotate(45deg);
}

/* Visualizer bars */
.vapi-visualizer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 24px;
}

.vapi-bar {
  width: 3px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: vapiBar 0.8s ease-in-out infinite;
}

.vapi-bar:nth-child(2) { animation-delay: 0.1s; }
.vapi-bar:nth-child(3) { animation-delay: 0.2s; }
.vapi-bar:nth-child(4) { animation-delay: 0.3s; }
.vapi-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes vapiBar {
  0%, 100% { height: 8px; }
  50% { height: 20px; }
}

/* ------------------------------------------------------------
   24. Custom Cursor (Desktop)
   ------------------------------------------------------------ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  mix-blend-mode: difference;
}

.custom-cursor > div {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid hsl(var(--primary-key) / 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.custom-cursor.hovering > div {
  width: 48px;
  height: 48px;
  border-color: hsl(var(--primary-key));
}

.custom-cursor-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: hsl(var(--primary-key));
  transform: translate(-50%, -50%);
}

/* ------------------------------------------------------------
   25. Animations
   ------------------------------------------------------------ */
.fadeIn_bottom {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeIn_bottom.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn_top {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeIn_top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn_left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeIn_left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fadeIn_right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeIn_right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fadeIn_scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeIn_scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

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

/* Continuous animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient text util — warm shimmer */
.gradient-flow {
  background: linear-gradient(270deg, hsl(var(--gold-light)), hsl(var(--gold)), hsl(var(--gold-pale)), hsl(var(--gold-light)));
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 6s ease infinite;
}

/* Underline accent */
.underline-accent {
  position: relative;
}

.underline-accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, hsl(var(--gold)), transparent);
}

/* ------------------------------------------------------------
   26. Integrations / Logo Grid
   ------------------------------------------------------------ */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.integration-card {
  background: hsl(var(--neutral-6));
  border: 1px solid hsl(var(--neutral-17));
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.integration-card:hover {
  border-color: hsl(var(--gold-dim));
  background: hsl(var(--neutral-10));
}

.integration-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: hsl(var(--neutral-17));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.integration-card-icon img {
  width: 24px;
  height: 24px;
}

.integration-card-name {
  font-family: var(--ff-1);
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--neutral-100));
}

.integration-card-desc {
  font-size: 12px;
  color: hsl(var(--neutral-50));
  margin-top: 2px;
}

/* ------------------------------------------------------------
   27. Use Cases / Tabs
   ------------------------------------------------------------ */
.use-case-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.use-case-tab {
  padding: 10px 20px;
  border-radius: 800px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ff-1);
  color: hsl(var(--neutral-60));
  background: transparent;
  border: 1px solid hsl(var(--neutral-17));
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.use-case-tab:hover {
  border-color: hsl(var(--neutral-30));
  color: hsl(var(--neutral-90));
}

.use-case-tab.active {
  background: hsl(var(--primary-key));
  border-color: hsl(var(--primary-key));
  color: hsl(var(--neutral-100));
}

.use-case-content {
  display: none;
}

.use-case-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  animation: fadeInUp 0.4s ease;
}

.use-case-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid hsl(var(--neutral-17));
}

.use-case-visual img {
  width: 100%;
}

.use-case-info h4 {
  font-family: var(--ff-1);
  font-size: var(--h4);
  font-weight: 800;
  color: hsl(var(--neutral-100));
  margin-bottom: 16px;
}

.use-case-info p {
  font-size: 16px;
  color: hsl(var(--neutral-60));
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ------------------------------------------------------------
   28. Comparison Table
   ------------------------------------------------------------ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead th {
  font-family: var(--ff-1);
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--neutral-100));
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid hsl(var(--neutral-17));
}

.comparison-table thead th:first-child {
  color: hsl(var(--neutral-60));
}

.comparison-table tbody td {
  font-size: 14px;
  color: hsl(var(--neutral-70));
  padding: 16px 20px;
  border-bottom: 1px solid hsl(var(--neutral-10));
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: hsl(var(--neutral-90));
}

.comparison-table .check {
  color: hsl(var(--primary-key));
  font-size: 18px;
}

.comparison-table .cross {
  color: hsl(var(--neutral-30));
  font-size: 18px;
}

.comparison-table .highlight-col {
  background: hsl(var(--primary-key) / 0.03);
}

/* ------------------------------------------------------------
   29. Blog / Article Cards
   ------------------------------------------------------------ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: hsl(var(--neutral-6));
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid hsl(var(--neutral-17));
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: hsl(var(--neutral-30));
  transform: translateY(-4px);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.blog-card-body {
  padding: 24px;
}

.blog-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: hsl(var(--primary-key));
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-title {
  font-family: var(--ff-1);
  font-size: 18px;
  font-weight: 700;
  color: hsl(var(--neutral-100));
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 14px;
  color: hsl(var(--neutral-60));
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: hsl(var(--neutral-40));
}

/* ------------------------------------------------------------
   30. Contact / Form
   ------------------------------------------------------------ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: hsl(var(--neutral-80));
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: hsl(var(--neutral-6));
  border: 1px solid hsl(var(--neutral-17));
  border-radius: 12px;
  color: hsl(var(--neutral-100));
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: hsl(var(--primary-key));
  box-shadow: 0 0 0 3px hsl(var(--primary-key) / 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(var(--neutral-40));
}

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

/* ------------------------------------------------------------
   31. Dividers & Decorative
   ------------------------------------------------------------ */
.section-divider {
  width: 100%;
  height: 1px;
  background: hsl(var(--neutral-17));
}

.section-divider-gradient {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--neutral-24)), transparent);
}

.dot-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 48px 0;
}

.dot-separator span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: hsl(var(--neutral-30));
}

/* Glow orbs (decorative) */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-orb-orange {
  background: hsl(var(--primary-key) / 0.08);
}

.glow-orb-white {
  background: hsl(var(--neutral-100) / 0.03);
}

/* ------------------------------------------------------------
   32. CTA Mobile Bar
   ------------------------------------------------------------ */
.cta-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid hsl(var(--neutral-17));
  z-index: 998;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cta-mobile-bar.visible {
  transform: translateY(0);
}

.cta-mobile-bar .gradient-btn-3 {
  width: 100%;
  padding: 14px;
}

/* ------------------------------------------------------------
   33. Loading / Skeleton
   ------------------------------------------------------------ */
.skeleton {
  background: linear-gradient(
    90deg,
    hsl(var(--neutral-10)) 25%,
    hsl(var(--neutral-17)) 50%,
    hsl(var(--neutral-10)) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ------------------------------------------------------------
   34. Tooltip
   ------------------------------------------------------------ */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding: 6px 12px;
  background: hsl(var(--neutral-17));
  border: 1px solid hsl(var(--neutral-24));
  border-radius: 8px;
  font-size: 12px;
  color: hsl(var(--neutral-90));
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

[data-tooltip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}

/* ------------------------------------------------------------
   35. Video Embed / Player
   ------------------------------------------------------------ */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: hsl(var(--neutral-6));
  border: 1px solid hsl(var(--neutral-17));
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: hsl(var(--primary-key));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 40px hsl(var(--primary-key) / 0.4);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--neutral-100));
  margin-left: 3px;
}

/* ------------------------------------------------------------
   36. Notification / Toast
   ------------------------------------------------------------ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 24px;
  background: hsl(var(--neutral-10));
  border: 1px solid hsl(var(--neutral-24));
  border-radius: 12px;
  font-size: 14px;
  color: hsl(var(--neutral-90));
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10000;
  pointer-events: none;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast.success {
  border-color: hsl(142 76% 36%);
}

.toast.error {
  border-color: hsl(0 84% 60%);
}

/* ------------------------------------------------------------
   37. Misc Utilities
   ------------------------------------------------------------ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.no-scroll {
  overflow: hidden;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rounded-full { border-radius: 9999px; }
.rounded-16 { border-radius: 16px; }
.rounded-20 { border-radius: 20px; }
.rounded-24 { border-radius: 24px; }

.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }

/* Separator line between items */
.list-separated > * + * {
  border-top: 1px solid hsl(var(--neutral-17));
  padding-top: 16px;
  margin-top: 16px;
}

/* Hover lift effect */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Background patterns */
.bg-dots {
  background-image: radial-gradient(hsl(var(--neutral-17)) 1px, transparent 1px);
  background-size: 24px 24px;
}

.bg-grid {
  background-image:
    linear-gradient(hsl(var(--neutral-17) / 0.4) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--neutral-17) / 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ------------------------------------------------------------
   38a. Ambient Background Effects (Visual Richness)
   ------------------------------------------------------------ */

/* A) Gradient mesh orbs — animated floating orbs that give depth */
.ambient-glow {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.ambient-glow--1 {
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, hsl(var(--gold) / 0.12), transparent 70%);
  animation: ambientDrift1 25s ease-in-out infinite;
}

.ambient-glow--2 {
  bottom: 30%;
  left: -300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  animation: ambientDrift2 30s ease-in-out infinite;
}

.ambient-glow--3 {
  top: 60%;
  right: -100px;
  background: radial-gradient(circle, hsl(var(--gold) / 0.08), transparent 70%);
  animation: ambientDrift3 20s ease-in-out infinite;
}

@keyframes ambientDrift1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-80px, 60px); }
  66% { transform: translate(40px, -40px); }
}

@keyframes ambientDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(100px, -80px); }
}

@keyframes ambientDrift3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-60px, -50px); }
  66% { transform: translate(80px, 30px); }
}

/* B) Section-level gradient backgrounds */
.section-glow {
  position: relative;
}

.section-glow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, hsl(var(--gold) / 0.025) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-glow > .container {
  position: relative;
  z-index: 1;
}

/* C) Hero section background enhancement — subtle radial glow */
.hero-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, hsl(var(--gold-pale) / 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
  z-index: 0;
  pointer-events: none;
}

.hero-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

/* D) Feature cards subtle glow on hover */
.feature-card-item {
  position: relative;
  overflow: hidden;
}

.feature-card-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--card-angle, 0deg), transparent 60%, hsl(var(--gold) / 0.18) 80%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: rotateCardBorder 8s linear infinite;
}

.feature-card-item:hover::before {
  opacity: 1;
}

@keyframes rotateCardBorder {
  0% { --card-angle: 0deg; }
  100% { --card-angle: 360deg; }
}

@property --card-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* E) CTA section background glow (enhanced) */
.cta-wrapper-5::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center top, hsl(var(--gold) / 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.cta-wrapper-5 > * {
  position: relative;
  z-index: 1;
}

/* F) Testimonial section subtle gradient */
.testimonial-section-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, hsl(var(--neutral-4)) 30%, hsl(var(--neutral-4)) 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ------------------------------------------------------------
   38b. Particle Field (V1 premium atmosphere)
   ------------------------------------------------------------ */
.particle-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) translateX(var(--drift)); opacity: 0; }
}

@media (max-width: 768px) {
  .particle-field { display: none; }
}

/* ------------------------------------------------------------
   38c. Section Visual Backgrounds (parallax images like V1)
   ------------------------------------------------------------ */
.section-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.section-visual img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
  will-change: transform;
}

.section-visual img.visible {
  opacity: 0.08;
}

.section-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--neutral-0)), transparent 15%, transparent 85%, hsl(var(--neutral-0)));
  z-index: 1;
}

/* Hero background visual */
.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 30%, hsl(var(--neutral-0)) 75%);
  z-index: 1;
}

.hero-1 .hero-visual img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.2;
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: scale(1) translate(0, 0); }
  25% { transform: scale(1.05) translate(1%, -1%); }
  50% { transform: scale(1.02) translate(-1%, 1%); }
  75% { transform: scale(1.04) translate(0.5%, -0.5%); }
}

/* Per-section visual tuning */
.section-space-sm-y .section-visual img.visible,
.section-glow .section-visual img.visible {
  opacity: 0.10;
}

.cta-section-5 .section-visual img.visible {
  opacity: 0.14;
}

.cta-section-5 .section-visual::after {
  background: radial-gradient(ellipse at center, transparent 20%, hsl(var(--neutral-0)) 70%);
}

@media (max-width: 768px) {
  .hero-visual img { opacity: 0.1; animation: none; }
  .section-visual img.visible { opacity: 0.06 !important; }
}

/* ------------------------------------------------------------
   38d. Custom Scrollbar
   ------------------------------------------------------------ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: hsl(var(--neutral-0)); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }
::selection { background: hsl(var(--gold) / 0.2); color: #fff; }

/* ------------------------------------------------------------
   38e. Card Mouse-Tracking Spotlight
   ------------------------------------------------------------ */
.feature-card-item::after,
.ai-template-card::after,
.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), hsl(var(--gold) / 0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-item:hover::after,
.ai-template-card:hover::after,
.testimonial-card:hover::after {
  opacity: 1;
}

/* ------------------------------------------------------------
   38f. VAPI Widget — Always-visible label (V1 style)
   ------------------------------------------------------------ */
.vapi-widget-v2 {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vapi-label-always {
  background: #fff;
  color: #0A0A0C;
  font-family: var(--ff-1);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  white-space: nowrap;
  cursor: pointer;
  animation: labelBounce 3s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vapi-label-always:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.12);
}

.vapi-label-arrow {
  display: inline-block;
  margin-left: 6px;
  animation: arrowPulse 1.5s ease-in-out infinite;
}

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

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.vapi-btn-v2 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  color: #0A0A0C;
}

.vapi-btn-v2:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.vapi-btn-v2 svg {
  width: 26px;
  height: 26px;
  fill: #0A0A0C;
}

.vapi-btn-v2.active,
.vapi-btn-v2.vapi-active {
  background: #dc2626;
}

.vapi-btn-v2.active svg,
.vapi-btn-v2.vapi-active svg {
  fill: #fff;
}

.vapi-rings {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  animation: vapiRingPulse 2s ease-out infinite;
}

.vapi-rings:nth-child(2) { inset: -16px; animation-delay: 0.4s; }
.vapi-rings:nth-child(3) { inset: -24px; animation-delay: 0.8s; }

@keyframes vapiRingPulse {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.3); }
}

/* Mobile adjustments for VAPI widget — overridden by mega upgrade */

/* ------------------------------------------------------------
   38. Responsive — Tablet (< 992px)
   ------------------------------------------------------------ */
@media (max-width: 991px) {
  /* Header */
  .menu-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  body.menu-open .menu-nav-mobile {
    display: flex;
  }

  .menu-nav-mobile .link {
    font-family: var(--ff-1);
    font-size: 24px;
    font-weight: 700;
    color: hsl(var(--neutral-80));
    transition: color 0.3s ease;
  }

  .menu-nav-mobile .link:hover {
    color: hsl(var(--primary-key));
  }

  .menu-nav-mobile .gradient-btn-1 {
    margin-top: 16px;
    padding: 12px 32px;
    font-size: 16px;
  }

  /* Hero */
  .hero-1 {
    padding-top: 140px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw + 1rem, 3.5rem);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat-number {
    font-size: 24px;
  }

  /* Grids */
  .ai-templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-card-lg {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-grid::before {
    display: none;
  }

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

  .stat-item + .stat-item {
    border-left: none;
  }

  .stat-item:nth-child(odd) + .stat-item {
    border-left: 1px solid hsl(var(--neutral-17));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .about-grid,
  .about-grid-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid-reverse .about-visual {
    order: 0;
  }

  .use-case-content.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  /* Section spacing */
  .section-space-bottom { padding-bottom: 80px; }
  .section-space-top { padding-top: 80px; }
  .section-space-y { padding-top: 80px; padding-bottom: 80px; }
  .section-space-lg-bottom { padding-bottom: 100px; }
  .section-space-lg-top { padding-top: 100px; }
  .section-space-lg-y { padding-top: 100px; padding-bottom: 100px; }

  /* CTA */
  .cta-wrapper-5 {
    padding: 48px 32px;
    border-radius: 20px;
  }

  .cta-section-5 {
    padding: 80px 0;
  }

  /* Custom cursor */
  .custom-cursor {
    display: none;
  }

  /* CTA mobile bar */
  .cta-mobile-bar {
    display: block;
  }

  /* Dashboard */
  .dashboard-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ------------------------------------------------------------
   39. Responsive — Mobile (< 576px)
   ------------------------------------------------------------ */
@media (max-width: 575px) {
  .container,
  .container-lg,
  .container-sm {
    padding: 0 16px;
  }

  /* Hero */
  .hero-1 {
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  /* Grids */
  .ai-templates-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-lg {
    grid-column: span 1;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item + .stat-item {
    border-left: none;
    border-top: 1px solid hsl(var(--neutral-17));
  }

  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonial-card {
    min-width: 280px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* CTA */
  .cta-wrapper-5 {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-actions .gradient-btn-1,
  .cta-actions .gradient-btn-2 {
    width: 100%;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 40px;
  }

  .section-header .section-subtitle {
    font-size: 16px;
  }

  /* Section spacing */
  .section-space-sm-bottom { padding-bottom: 48px; }
  .section-space-sm-top { padding-top: 48px; }
  .section-space-sm-y { padding-top: 48px; padding-bottom: 48px; }
  .section-space-bottom { padding-bottom: 60px; }
  .section-space-top { padding-top: 60px; }
  .section-space-y { padding-top: 60px; padding-bottom: 60px; }

  /* Dashboard */
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-mock-body {
    padding: 16px;
  }

  /* Accordion */
  .custom-accordion .accordion-button {
    font-size: 16px;
    padding: 20px 0;
  }

  /* Pricing */
  .pricing-card {
    padding: 28px;
  }

  .pricing-card-amount {
    font-size: 40px;
  }

  /* Use case tabs */
  .use-case-tabs {
    gap: 6px;
  }

  .use-case-tab {
    padding: 8px 14px;
    font-size: 13px;
  }

  /* VAPI widget adjustment for mobile bar */
  .vapi-widget {
    bottom: 80px;
  }
}

/* ------------------------------------------------------------
   40. Print
   ------------------------------------------------------------ */
@media print {
  body {
    background: white;
    color: black;
    opacity: 1;
  }

  .header-top,
  .footer,
  .vapi-widget,
  .custom-cursor,
  .cta-mobile-bar,
  .promo-banner {
    display: none;
  }

  .gradient-flow {
    -webkit-text-fill-color: #E4E4E7;
    background: none;
  }
}

/* ------------------------------------------------------------
   41. Reduced Motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroller-x[data-animated="true"] .scroller-x__list {
    animation: none;
  }

  .hero-1 {
    clip-path: none !important;
  }

  .fadeIn_bottom,
  .fadeIn_top,
  .fadeIn_left,
  .fadeIn_right,
  .fadeIn_scale {
    opacity: 1;
    transform: none;
  }
}

/* Noscript safety — hero must be visible without JS */
noscript ~ .hero-1,
.no-js .hero-1 {
  clip-path: none !important;
}

/* ------------------------------------------------------------
   42. High Contrast Override
   ------------------------------------------------------------ */
@media (prefers-contrast: high) {
  :root {
    --neutral-17: 0 0% 30%;
    --neutral-30: 0 0% 50%;
  }

  .gradient-btn-1,
  .gradient-btn-2 {
    border-width: 2px;
  }
}

/* ------------------------------------------------------------
   43. Service Cards
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   44. Hero Scroll Indicator (V1 premium signature)
   ------------------------------------------------------------ */


/* ── HERO FLOATING VISUAL ELEMENTS ── */
.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid hsl(var(--gold-dim) / 0.25);
  border-radius: 14px;
  color: hsl(var(--neutral-70));
  pointer-events: auto;
  transition: border-color 0.4s, transform 0.3s;
  will-change: transform;
}

.hero-float:hover {
  border-color: hsl(var(--gold) / 0.4);
  transform: translateY(-3px) scale(1.02);
}

.hero-float__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--gold) / 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.hero-float__icon i {
  font-size: 1rem;
  color: hsl(var(--gold-light));
}

.hero-float__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-float__label {
  font-family: var(--ff-1);
  font-size: 0.82rem;
  font-weight: 600;
  color: hsl(var(--neutral-90));
  white-space: nowrap;
}

.hero-float__desc {
  font-size: 0.7rem;
  color: hsl(var(--neutral-50));
  white-space: nowrap;
}

/* Waveform animation inside card */
.hero-float__wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
  margin-left: 4px;
}

.hero-float__wave span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: hsl(var(--gold) / 0.5);
  animation: waveBar 0.8s ease-in-out infinite alternate;
}

.hero-float__wave span:nth-child(1) { height: 6px; animation-delay: 0s; }
.hero-float__wave span:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.hero-float__wave span:nth-child(3) { height: 8px; animation-delay: 0.3s; }
.hero-float__wave span:nth-child(4) { height: 18px; animation-delay: 0.1s; }
.hero-float__wave span:nth-child(5) { height: 10px; animation-delay: 0.25s; }

@keyframes waveBar {
  0% { transform: scaleY(0.5); opacity: 0.4; }
  100% { transform: scaleY(1.3); opacity: 0.8; }
}

/* Positioning — staggered on left and right */
.hero-float--1 { left: 4%; top: 28%; animation: floatDrift1 6s ease-in-out infinite; }
.hero-float--2 { left: 3%; top: 55%; animation: floatDrift2 7s ease-in-out infinite; }
.hero-float--3 { right: 4%; top: 25%; animation: floatDrift3 5.5s ease-in-out infinite; }
.hero-float--4 { right: 3%; top: 52%; animation: floatDrift4 6.5s ease-in-out infinite; }
.hero-float--5 { left: 15%; bottom: 12%; animation: floatDrift5 7.5s ease-in-out infinite; }
.hero-float--6 { right: 15%; bottom: 12%; animation: floatDrift6 5s ease-in-out infinite; }

@keyframes floatDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -12px); }
}
@keyframes floatDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, 10px); }
}
@keyframes floatDrift3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, -8px); }
}
@keyframes floatDrift4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, 12px); }
}
@keyframes floatDrift5 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -6px); }
}
@keyframes floatDrift6 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, -10px); }
}

/* Hide floats on smaller screens where they'd overlap content */
@media (max-width: 1200px) {
  .hero-float--5, .hero-float--6 { display: none; }
  .hero-float--1 { left: 2%; }
  .hero-float--2 { left: 1%; }
  .hero-float--3 { right: 2%; }
  .hero-float--4 { right: 1%; }
}

@media (max-width: 1024px) {
  .hero-floats { display: none !important; }
}

/* ── V1-STYLE HERO ELEMENTS (label, subtitle, badges) ── */
.hero-label {
  font-family: var(--ff-2);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: hsl(var(--neutral-50));
  margin-bottom: 2rem;
}

.hero-1 h1 {
  color: hsl(var(--neutral-100));
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-family: var(--ff-2);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: hsl(var(--neutral-60));
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-badges .hero-badge {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: var(--ff-2);
  color: hsl(var(--neutral-60));
  padding: 6px 16px;
  border: 1px solid hsl(var(--neutral-17));
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s;
  margin-bottom: 0;
}

.hero-badges .hero-badge:hover {
  border-color: hsl(var(--gold-dim));
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-label { font-size: 0.7rem; margin-bottom: 1.5rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero-badges .hero-badge { font-size: 0.72rem; padding: 5px 12px; }
  .hero-1 h1 { font-size: clamp(2.2rem, 9vw, 3rem) !important; }
}
/* Hero CTA buttons stack on mobile */
@media (max-width: 575px) {
  .hero-1 .d-flex.justify-content-center.gap-3 {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-1 .d-flex.justify-content-center.gap-3 a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}



.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--neutral-50));
  font-family: var(--ff-1);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

@media (max-width: 768px) {
  
.hero-scroll-hint { display: none; }
}

/* ------------------------------------------------------------
   45. Section Text Reveals (Zethic-style word animation)
   ------------------------------------------------------------ */
.section-title .word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}

/* ------------------------------------------------------------
   46. Header enhancement — smoother scroll transition
   ------------------------------------------------------------ */
body.header-crossed .header-top {
  background: hsl(var(--neutral-4) / 0.95);
}

/* ------------------------------------------------------------
   47. Section divider lines (subtle warm)
   ------------------------------------------------------------ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--neutral-17)), transparent);
  margin: 0;
  border: none;
}



/* ============================================================
   GOLD PREMIUM ACCENTS
   ============================================================ */

/* Feature card icons — gold */
.feature-card-item i.bi,
.feature-card-icon i.bi,
.ai-template-card i.bi {
  color: hsl(var(--gold)) !important;
}

/* Service/niche cards — gold border on hover */
/* Service highlight — gold border on hover */
.service-highlight:hover {
  border-color: hsl(var(--gold-dim) / 0.3);
}

.service-card:hover,
.niche-card:hover {
  border-color: hsl(var(--gold-dim) / 0.4);
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px hsl(var(--gold) / 0.04);
}

/* Testimonial cards — gold border on hover */
.testimonial-card:hover {
  border-color: hsl(var(--gold-dim) / 0.3);
}

/* Stats counter hover — gold text-shadow */
.stat-number:hover,
.stats-counter:hover .stat-number,
.counter:hover {
  text-shadow: 0 0 30px hsl(var(--gold) / 0.2), 0 0 60px hsl(var(--gold) / 0.08);
}

/* CTA wrapper/section — gold glow */
.cta-wrapper,
.cta-section,
.final-cta {
  position: relative;
}
.cta-wrapper::before,
.cta-section::before,
.final-cta::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, hsl(var(--gold) / 0.08) 0%, transparent 50%, hsl(var(--gold) / 0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Buttons — gold glow on hover */
.btn-primary:hover,
.btn-cta:hover,
.cta-btn:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px hsl(var(--gold) / 0.08);
}

/* Steps — gold glow on numbers */
.step-number,
.step-badge {
  text-shadow: 0 0 20px hsl(var(--gold) / 0.15);
}

/* Marquee text highlight — gold */
.marquee-text .highlight,
.marquee-item.highlight {
  color: hsl(var(--gold));
}

/* FAQ active — gold left border */
.faq-item.active .faq-question,
.accordion-item.active .accordion-header {
  border-left: 2px solid hsl(var(--gold) / 0.3);
}

/* Footer links hover — gold */
.footer a:hover,
.social-link:hover {
  color: hsl(var(--gold-light));
}

/* Promo banner — hidden */
.promo-banner {
  display: none;
}

/* Section visual images — cinematic filter */
.section-visual img,
.about-image img {
  filter: grayscale(10%) contrast(1.05);
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-visual:hover img,
.about-image:hover img {
  filter: grayscale(0%) contrast(1.08);
}


/* ================================================================
   MEGA UPGRADE — Mobile, Hero, Colors, VAPI
   ================================================================ */

/* ── MOBILE NAV — Show quick links below hamburger ── */
.header-mobile .mobile-quick-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  margin-right: 12px;
}

.mobile-quick-nav a {
  font-family: var(--ff-1);
  font-size: 0.72rem;
  font-weight: 600;
  color: hsl(var(--neutral-70));
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid hsl(var(--neutral-17));
  transition: all 0.3s;
  white-space: nowrap;
}

.mobile-quick-nav a:hover {
  border-color: hsl(var(--gold-dim));
  color: hsl(var(--gold-light));
}

/* ── VAPI MOBILE — Show label on mobile as banner ── */
@media (max-width: 991px) {
  .vapi-widget-v2 {
    bottom: 68px;
    right: 12px;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 8px;
  }

  .vapi-label-always {
    display: block !important;
    font-size: 0.72rem;
    padding: 8px 14px;
    border-radius: 10px;
    max-width: 180px;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }

  .vapi-btn-v2 {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 575px) {
  .vapi-widget-v2 {
    bottom: 64px;
    right: 10px;
  }

  .vapi-label-always {
    font-size: 0.68rem;
    padding: 6px 12px;
    max-width: 160px;
  }

  .vapi-btn-v2 {
    width: 48px;
    height: 48px;
  }

  .vapi-btn-v2 svg {
    width: 22px;
    height: 22px;
  }
}

/* ── CTA MOBILE BAR — always visible on mobile ── */
@media (max-width: 991px) {
  .cta-mobile-bar {
    display: block !important;
    transform: translateY(0) !important;
  }
}

/* ── HERO FLOATING CARDS — BIGGER, more glow, more impactful ── */
.hero-float {
  padding: 16px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid hsl(var(--gold) / 0.3);
  box-shadow: 0 8px 32px hsl(var(--gold) / 0.08), 0 0 60px hsl(var(--gold) / 0.04);
}

.hero-float:hover {
  border-color: hsl(var(--gold) / 0.6);
  box-shadow: 0 12px 48px hsl(var(--gold) / 0.15), 0 0 80px hsl(var(--gold) / 0.08);
}

.hero-float__icon {
  width: 42px;
  height: 42px;
  background: hsl(var(--gold) / 0.15);
  border-radius: 12px;
}

.hero-float__icon i {
  font-size: 1.1rem;
  color: hsl(var(--gold));
}

.hero-float__label {
  font-size: 0.88rem;
  color: hsl(var(--neutral-100));
}

.hero-float__desc {
  font-size: 0.75rem;
  color: hsl(var(--neutral-60));
}

/* Hero floats — HIDE on mobile per Johan request */
@media (max-width: 1023px) {
  .hero-floats {
    display: none !important;
  }

  .hero-float {
    padding: 10px 14px;
    gap: 8px;
    border-radius: 10px;
  }

  .hero-float__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .hero-float__icon i {
    font-size: 0.85rem;
  }

  .hero-float__label {
    font-size: 0.72rem;
  }

  .hero-float__desc {
    display: none;
  }

  .hero-float__wave {
    display: none;
  }

  /* Only show 2 floating cards on mobile */
  .hero-float--3,
  .hero-float--4,
  .hero-float--5,
  .hero-float--6 {
    display: none !important;
  }

  .hero-float--1 {
    left: 3%;
    top: 18%;
  }

  .hero-float--2 {
    right: 3%;
    top: 18%;
    left: auto;
  }
}

@media (max-width: 575px) {
  .hero-float--1 {
    left: 2%;
    top: 12%;
  }
  .hero-float--2 {
    right: 2%;
    top: 12%;
  }
}

/* ── HERO GLOW — subtle neutral radial (not gold) ── */
.hero-1::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── PARTNER LOGOS — full opacity, colored ── */
.scroller-x__item img {
  opacity: 1 !important;
  filter: none !important;
  transition: transform 0.3s, filter 0.3s;
}

.scroller-x__item img:hover {
  transform: scale(1.1);
  filter: brightness(1.2) !important;
}

.scroller-x__item {
  color: hsl(var(--neutral-70)) !important;
}

/* ── SECTION TITLES — brighter ── */
.section-title,
.section-heading,
h2.fw-extrabold,
h2.fw-black {
  color: hsl(var(--neutral-100));
  letter-spacing: -0.02em;
}

/* ── CARD TEXT — brighter descriptions ── */
.feature-card p,
.step-card p,
.service-card p,
.testimonial-text,
.about-description,
.integration-card-desc {
  color: hsl(var(--neutral-70));
}

/* ── ICONS — gold tint on bi icons in feature areas ── */
.feature-card i,
.step-card i,
.service-card i,
.about-list i {
  color: hsl(var(--gold));
}

/* ── SERVICE CARDS — gold hover ── */
.service-card:hover {
  border-color: hsl(var(--gold-dim));
}

/* ── STATS ACCENT — gold ── */
.stat-number .accent,
.stat-number .highlight,
.counter-prefix,
.counter-suffix {
  color: hsl(var(--gold));
}

/* ── TESTIMONIAL STARS — gold ── */
.testimonial-stars i,
.rating i,
.star-rating i {
  color: hsl(var(--gold-deep)) !important;
}

/* ── TESTIMONIAL QUOTE — gold ── */
.testimonial-quote::before,
.quote-mark {
  color: hsl(var(--gold) / 0.3);
}

/* ── SELECTION — gold ── */
::selection {
  background: hsl(var(--gold) / 0.25);
  color: hsl(var(--neutral-100));
}

/* ── SCROLL PROGRESS — gold gradient ── */
.scroll-progress {
  background: linear-gradient(90deg, hsl(var(--gold)), hsl(var(--gold-light)), hsl(var(--gold)));
}

/* ── NAV HOVER — gold ── */
.header-nav a:hover,
.nav-link:hover {
  color: hsl(var(--gold-light)) !important;
}

/* ── MOBILE SERVICES — responsive grid ── */
@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-card {
    padding: 0 8px;
  }

  .step-number {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }

  .feature-card {
    padding: 24px;
  }

  .section-space {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-space-top {
    padding-top: 60px;
  }

  .section-space-bottom {
    padding-bottom: 60px;
  }
}

/* ── AMBIENT GLOW — neutral (no gold tint) ── */
.glow-orb:nth-child(1) {
  background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%) !important;
}

.glow-orb:nth-child(3) {
  background: radial-gradient(circle, rgba(255,255,255,0.015) 0%, transparent 70%) !important;
}

/* ── ABOUT VISUAL GLOW — neutral ── */
.about-visual-glow {
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, transparent 60%) !important;
}

/* ── CTA SECTION — more vibrant gold glow ── */
.cta-section,
.final-cta,
.cta-wrapper {
  border-color: hsl(var(--gold-dim) / 0.3);
}

/* ── ACCORDION/FAQ — gold accent on active ── */
.accordion-button:not(.collapsed),
.faq-question.active {
  color: hsl(var(--gold-light));
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(2) sepia(1) hue-rotate(10deg);
}

/* ── PRICING FEATURED — gold border glow ── */
.pricing-card.featured {
  border-color: hsl(var(--gold) / 0.4);
  box-shadow: 0 0 40px hsl(var(--gold) / 0.06);
}

.pricing-card.featured .pricing-badge {
  background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-light)));
  color: #0A0A0C;
}

/* ── UNDERLINE ACCENTS — gold ── */
.underline-accent,
.section-line,
.divider-gold {
  background: linear-gradient(90deg, transparent, hsl(var(--gold) / 0.4), transparent);
}


/* ── VAPI LOADING STATE ── */
.vapi-btn-v2.vapi-loading {
  animation: vapiPulseLoad 1.2s ease-in-out infinite;
}

@keyframes vapiPulseLoad {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

.vapi-btn-v2.vapi-active {
  background: #ef4444 !important;
  border-color: #ef4444 !important;
}

.vapi-btn-v2.vapi-active svg {
  color: white !important;
}

.vapi-label-always.vapi-label-hangup {
  background: rgba(239,68,68,0.15) !important;
  border-color: rgba(239,68,68,0.4) !important;
  color: #fca5a5 !important;
}

/* ── DASHBOARD GOLD THEME (demos page) ── */
.dashboard-view .rounded-4[style*="neutral-6"] {
  border: 1px solid hsl(var(--gold) / 0.1);
}

.sidebar-tab.active {
  background: hsl(var(--gold) / 0.08) !important;
  border-left-color: hsl(var(--gold)) !important;
  color: hsl(var(--neutral-100)) !important;
}

.sidebar-tab:hover:not(.active) {
  background: rgba(255,255,255,0.03);
  color: hsl(var(--neutral-80));
}


/* ── MOBILE: reduce top spacing on inner pages ── */
@media (max-width: 991px) {
  .section-space-sm-top {
    padding-top: 20px !important;
  }
  .section-space-sm-bottom {
    padding-bottom: 30px !important;
  }
  /* Ensure animated content is visible on mobile even without ScrollTrigger */
  .fadeIn_bottom,
  .fadein_bottom_1,
  .fadein_bottom_2,
  .fadein_bottom_3,
  .fadein_bottom_4,
  .fadein_bottom_5,
  .fadein_bottom_6 {
    opacity: 1 !important;
    transform: none !important;
  }
}
CSS # Add mobile spacing fix for inner pages

/* MOBILE: reduce top spacing + ensure animations visible */
@media (max-width: 991px) {
  .section-space-sm-top { padding-top: 20px !important; }
  .fadeIn_bottom, .fadein_bottom_1, .fadein_bottom_2,
  .fadein_bottom_3, .fadein_bottom_4, .fadein_bottom_5,
  .fadein_bottom_6 { opacity: 1 !important; transform: none !important; }
}



/* ── MOBILE: Hero instant visibility (no clip-path, no GSAP delay) ── */
@media (max-width: 991px) {
  .hero-1 {
    clip-path: none !important;
  }
  .hero-1 .container,
  .hero-1 .hero-label,
  .hero-1 h1,
  .hero-1 .hero-sub,
  .hero-1 .hero-badges,
  .hero-1 .d-flex.justify-content-center,
  .hero-1 .fadeIn_bottom,
  .hero-1 .fadein_bottom_1,
  .hero-1 .fadein_bottom_2 {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
  .hero-1 .container {
    animation: mobileHeroIn 0.5s ease-out both;
  }
  @keyframes mobileHeroIn {
    from { opacity: 0.3; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-1 .hero-visual img {
    opacity: 0.15 !important;
    animation: none !important;
  }
}

/* VAPI call overlay — blocks navigation during active call */
#vapiCallOverlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#vapiCallOverlay.vapi-overlay-visible {
  opacity: 1;
  pointer-events: auto;
}
.vapi-overlay-box {
  background: hsl(220 10% 12%);
  border: 1px solid hsl(var(--gold-dim, 40 30% 40%) / 0.4);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  max-width: 340px;
  width: 90%;
}
.vapi-overlay-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--gold, 42 76% 55%) / 0.12);
  border-radius: 50%;
  animation: vapiPulseOverlay 2s ease-in-out infinite;
}
.vapi-overlay-icon i {
  font-size: 1.4rem;
  color: hsl(var(--gold-light, 40 80% 68%));
}
@keyframes vapiPulseOverlay {
  0%, 100% { box-shadow: 0 0 0 0 hsl(var(--gold, 42 76% 55%) / 0.2); }
  50% { box-shadow: 0 0 16px 8px hsl(var(--gold, 42 76% 55%) / 0.1); }
}
.vapi-overlay-title {
  font-family: var(--ff-1, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.vapi-overlay-sub {
  font-size: 0.9rem;
  color: hsl(var(--neutral-50, 0 0% 50%));
  margin: 0 0 24px;
}
.vapi-overlay-btn {
  display: inline-block;
  padding: 10px 28px;
  background: hsl(var(--gold, 42 76% 55%));
  color: #000;
  font-family: var(--ff-1, 'Plus Jakarta Sans', sans-serif);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.vapi-overlay-btn:hover {
  background: hsl(var(--gold-light, 40 80% 68%));
}

/* ============================================================
   Voice Widget — Design
   ============================================================ */
.el-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.el-label {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}
.el-label:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: translateX(-4px);
}
.el-label-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
  margin-left: 4px;
}
.el-label:hover .el-label-arrow {
  transform: translateX(3px);
}
.el-label-hangup {
  background: rgba(0, 204, 136, 0.15) !important;
  border-color: rgba(0, 204, 136, 0.3) !important;
  color: #00cc88 !important;
}

.el-timer {
  position: fixed;
  bottom: 96px;
  right: 32px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  color: #00cc88;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', monospace;
  font-weight: 600;
  display: none;
  backdrop-filter: blur(8px);
}

.el-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00cc88, #00a86b);
  border: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 204, 136, 0.35);
  flex-shrink: 0;
}
.el-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(0, 204, 136, 0.5);
}
.el-btn svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 3;
}

/* Active state (call in progress) */
.el-btn.el-active {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 4px 24px rgba(239, 68, 68, 0.4);
  animation: none;
}
.el-btn.el-active svg {
  display: none;
}
.el-btn.el-active::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  z-index: 3;
}

/* Loading state */
.el-btn.el-loading {
  background: linear-gradient(135deg, #00cc88, #00a86b);
  opacity: 0.7;
  pointer-events: none;
}
.el-btn.el-loading svg { display: none; }
.el-btn.el-loading::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: elSpin 0.8s linear infinite;
  position: relative;
  z-index: 3;
}

/* Rings pulse animation */
.el-rings {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(0, 204, 136, 0.25);
  animation: elRingPulse 2.5s ease-out infinite;
  pointer-events: none;
}
.el-rings:nth-child(2) { inset: -16px; animation-delay: 0.4s; }
.el-rings:nth-child(3) { inset: -24px; animation-delay: 0.8s; }

.el-btn.el-active .el-rings,
.el-btn.el-loading .el-rings {
  display: none;
}

@keyframes elRingPulse {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.3); }
}

@keyframes elSpin {
  to { transform: rotate(360deg); }
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .el-widget {
    bottom: 80px;
    right: 16px;
    gap: 8px;
  }
  .el-label {
    font-size: 12px;
    padding: 8px 12px;
    max-width: 180px;
    white-space: normal;
  }
  .el-btn {
    width: 52px;
    height: 52px;
  }
  .el-btn svg { width: 20px; height: 20px; }
  .el-timer { bottom: 140px; right: 20px; font-size: 12px; }
}

@media (max-width: 575px) {
  .el-widget {
    bottom: 72px;
    right: 12px;
  }
  .el-label {
    font-size: 11px;
    padding: 6px 10px;
  }
  .el-btn {
    width: 48px;
    height: 48px;
  }
}

/* ============================================================
   Voice Widget — Design
   ============================================================ */
.el-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.el-label {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}
.el-label:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: translateX(-4px);
}
.el-label-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
  margin-left: 4px;
}
.el-label:hover .el-label-arrow {
  transform: translateX(3px);
}
.el-label-hangup {
  background: rgba(0, 204, 136, 0.15) !important;
  border-color: rgba(0, 204, 136, 0.3) !important;
  color: #00cc88 !important;
}

.el-timer {
  position: fixed;
  bottom: 96px;
  right: 32px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  color: #00cc88;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', monospace;
  font-weight: 600;
  display: none;
  backdrop-filter: blur(8px);
}

.el-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00cc88, #00a86b);
  border: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 204, 136, 0.35);
  flex-shrink: 0;
}
.el-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(0, 204, 136, 0.5);
}
.el-btn svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 3;
}

/* Active state (call in progress) */
.el-btn.el-active {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 4px 24px rgba(239, 68, 68, 0.4);
  animation: none;
}
.el-btn.el-active svg {
  display: none;
}
.el-btn.el-active::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  z-index: 3;
}

/* Loading state */
.el-btn.el-loading {
  background: linear-gradient(135deg, #00cc88, #00a86b);
  opacity: 0.7;
  pointer-events: none;
}
.el-btn.el-loading svg { display: none; }
.el-btn.el-loading::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: elSpin 0.8s linear infinite;
  position: relative;
  z-index: 3;
}

/* Rings pulse animation */
.el-rings {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(0, 204, 136, 0.25);
  animation: elRingPulse 2.5s ease-out infinite;
  pointer-events: none;
}
.el-rings:nth-child(2) { inset: -16px; animation-delay: 0.4s; }
.el-rings:nth-child(3) { inset: -24px; animation-delay: 0.8s; }

.el-btn.el-active .el-rings,
.el-btn.el-loading .el-rings {
  display: none;
}

@keyframes elRingPulse {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.3); }
}

@keyframes elSpin {
  to { transform: rotate(360deg); }
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .el-widget {
    bottom: 80px;
    right: 16px;
    gap: 8px;
  }
  .el-label {
    font-size: 12px;
    padding: 8px 12px;
    max-width: 180px;
    white-space: normal;
  }
  .el-btn {
    width: 52px;
    height: 52px;
  }
  .el-btn svg { width: 20px; height: 20px; }
  .el-timer { bottom: 140px; right: 20px; font-size: 12px; }
}

@media (max-width: 575px) {
  .el-widget {
    bottom: 72px;
    right: 12px;
  }
  .el-label {
    font-size: 11px;
    padding: 6px 10px;
  }
  .el-btn {
    width: 48px;
    height: 48px;
  }
}
