﻿/* ========================================
   MART Automations â€” Design System
   Inspired by Linear.app dark aesthetic
   ======================================== */

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

/* â”€â”€ CSS Variables â”€â”€ */
:root {
  --bg-primary: #08080d;
  --bg-secondary: #0e0e16;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-card: rgba(255, 255, 255, 0.06);
  --border-card-hover: rgba(124, 92, 252, 0.3);

  --accent: #7c5cfc;
  --accent-light: #9b82fc;
  --accent-dark: #5a3fd4;
  --accent-glow: rgba(124, 92, 252, 0.35);
  --cyan: #00d4ff;
  --cyan-glow: rgba(0, 212, 255, 0.25);
  --green-wa: #25D366;

  --text-primary: #ffffff;
  --text-secondary: #8a8a9a;
  --text-tertiary: #555566;

  --gradient-hero: linear-gradient(135deg, #7c5cfc 0%, #00d4ff 100%);
  --gradient-glow: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 92, 252, 0.08), transparent 40%);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* â”€â”€ Section Tag Labels â”€â”€ */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

section {
  padding: 100px 0;
  position: relative;
}

/* â”€â”€ Animated Background Glow â”€â”€ */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.bg-glow--purple {
  background: var(--accent);
}

.bg-glow--cyan {
  background: var(--cyan);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(8, 8, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-card);
  padding: 12px 0;
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.navbar__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

.navbar__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.navbar__brand strong {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}

.navbar__brand small {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

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

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.navbar__links a:hover {
  color: var(--text-primary);
}

.navbar__cta {
  padding: 10px 24px;
  background: var(--accent);
  color: white !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.navbar__cta:hover {
  background: var(--accent-light);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

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

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg .bg-glow--purple {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__bg .bg-glow--cyan {
  bottom: -100px;
  right: -200px;
  width: 400px;
  height: 400px;
}

/* Animated grid background */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

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

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(124, 92, 252, 0.12);
  border: 1px solid rgba(124, 92, 252, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 40px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.03);
}

/* Hero Phone */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 320px;
  background: #000;
  border-radius: 42px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  padding: 0;
  box-shadow:
    0 0 60px rgba(124, 92, 252, 0.15),
    0 25px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
  transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s ease;
  overflow: hidden;
}

.phone-mockup:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

/* Status bar */
.phone-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 4px;
  background: #075e54;
  position: relative;
}

.phone-statusbar__time {
  font-size: 0.72rem;
  font-weight: 600;
  color: white;
}

.phone-statusbar__notch {
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.phone-statusbar__icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-statusbar__battery {
  width: 20px;
  height: 10px;
  border: 1.5px solid white;
  border-radius: 2px;
  position: relative;
}

.phone-statusbar__battery::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 2px;
  width: 2px;
  height: 4px;
  background: white;
  border-radius: 0 1px 1px 0;
}

.phone-statusbar__battery-fill {
  width: 75%;
  height: 100%;
  background: #4ade80;
  border-radius: 1px;
}

.phone-screen {
  background: #0b141a;
  overflow: hidden;
}

/* WhatsApp header */
.phone-header {
  background: #1f2c34;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-header__left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-header__back {
  opacity: 0.9;
  flex-shrink: 0;
}

.phone-header__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.phone-header__info {
  flex: 1;
}

.phone-header__name {
  font-size: 0.82rem;
  font-weight: 600;
}

.phone-header__status {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

.phone-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-header__actions svg {
  opacity: 0.85;
}

/* Encryption notice */
.chat-encrypt {
  text-align: center;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.35);
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  margin-bottom: 4px;
}

.phone-chat {
  padding: 16px 12px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  animation: bubble-in 0.4s forwards;
}

.chat-bubble--user {
  align-self: flex-end;
  background: #005c4b;
  border-bottom-right-radius: 4px;
}

.chat-bubble--bot {
  align-self: flex-start;
  background: #1f2c34;
  border-bottom-left-radius: 4px;
}

.chat-bubble .chat-time {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
  margin-top: 4px;
}

@keyframes bubble-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-bubble:nth-child(2) {
  animation-delay: 0.5s;
}

.chat-bubble:nth-child(3) {
  animation-delay: 1.5s;
}

.chat-bubble:nth-child(4) {
  animation-delay: 2.8s;
}

.chat-bubble:nth-child(5) {
  animation-delay: 4s;
}

.chat-bubble:nth-child(6) {
  animation-delay: 5.2s;
}

/* WhatsApp Input Bar */
.phone-inputbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: #0b141a;
}

.phone-inputbar__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1f2c34;
  border-radius: 24px;
  padding: 8px 12px;
}

.phone-inputbar__field span {
  flex: 1;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.phone-inputbar__mic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #00a884;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ================================================================
   WHATSAPP + AI SECTION
   ================================================================ */
.why-section {
  text-align: center;
  position: relative;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 0 32px 36px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.why-card:hover {
  border-color: var(--border-card-hover);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(124, 92, 252, 0.08);
}

.why-card:hover::before,
.why-card:hover::after {
  opacity: 1;
}

/* â”€â”€ Visual Area (top of each card) â”€â”€ */
.why-card__visual {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -32px 24px;
  padding: 0 32px;
  border-bottom: 1px solid var(--border-card);
  z-index: 1;
}

/* Ring Chart (Card 1) */
.why-card__ring {
  width: 110px;
  height: 110px;
  transform: rotate(-90deg);
}

.why-card__ring-progress {
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card.visible .why-card__ring-progress {
  animation: ring-fill 1.5s ease-out forwards;
}

@keyframes ring-fill {
  from {
    stroke-dashoffset: 251.2;
  }

  to {
    stroke-dashoffset: 50.24;
  }
}

.why-card__ring-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Bar Chart (Card 2) */
.why-card__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.why-card__bar {
  width: 24px;
  height: var(--bar-h, 50%);
  background: linear-gradient(to top, var(--accent), var(--cyan));
  border-radius: 4px 4px 0 0;
  opacity: 0.7;
  animation: bar-grow 0.8s ease-out forwards;
  animation-delay: var(--bar-delay, 0s);
  transform-origin: bottom;
  transform: scaleY(0);
}

.why-card.visible .why-card__bar {
  transform: scaleY(1);
}

.why-card__bar--low {
  background: linear-gradient(to top, rgba(124, 92, 252, 0.3), rgba(0, 212, 255, 0.2));
  opacity: 0.4;
}

@keyframes bar-grow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.why-card__bars-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  right: 40px;
}

/* Dots Grid (Card 3) */
.why-card__dots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  width: 100px;
}

.why-card__dots-grid span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

.why-card__dots-grid span.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: dot-pulse 2s infinite ease-in-out;
}

.why-card__dots-grid span.active:nth-child(odd) {
  animation-delay: 0.3s;
}

@keyframes dot-pulse {

  0%,
  100% {
    box-shadow: 0 0 6px var(--accent-glow);
  }

  50% {
    box-shadow: 0 0 14px var(--accent-glow);
  }
}

.why-card__dots-label {
  position: absolute;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Stat Numbers */
.why-card__stat {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.why-card__stat-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.why-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.why-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ================================================================
   CASES SECTION (BENTO GRID)
   ================================================================ */
.cases-section {
  text-align: center;
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 0 28px 32px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity var(--transition);
}

.bento-card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-3px);
}

.bento-card:hover::after {
  opacity: 1;
}

.bento-card--featured {
  grid-column: span 1;
}

.bento-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.bento-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.bento-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.bento-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.bento-card__tag {
  padding: 4px 12px;
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--accent-light);
}

/* â”€â”€ Bento Card Visual Areas â”€â”€ */
.bento-card__visual {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 -28px 24px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border-card);
}

.bento-visual__stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bento-visual__stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.bento-visual__stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Mini Calendar */
.bento-visual__calendar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 10px;
  width: 210px;
}

.bento-cal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.bento-cal__nav {
  display: flex;
  gap: 4px;
  color: var(--text-tertiary);
}

.bento-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.bento-cal__grid span {
  font-size: 0.6rem;
  padding: 3px 0;
  border-radius: 4px;
  color: var(--text-tertiary);
}

.bento-cal__grid span.available {
  background: rgba(124, 92, 252, 0.15);
  color: var(--accent-light);
  border: 1px solid rgba(124, 92, 252, 0.2);
}

.bento-cal__grid span.booked {
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

/* Timeline */
.bento-visual__timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.bento-tl__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  position: relative;
}

.bento-tl__item::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 22px;
  width: 1px;
  height: 18px;
  background: var(--border-card);
}

.bento-tl__item:last-child::before {
  display: none;
}

.bento-tl__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--text-tertiary);
  flex-shrink: 0;
}

.bento-tl__item--active .bento-tl__dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.bento-tl__text {
  display: flex;
  flex-direction: column;
}

.bento-tl__time {
  font-size: 0.65rem;
  color: var(--text-tertiary);
}

.bento-tl__name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.bento-tl__item--active .bento-tl__name {
  color: var(--text-primary);
}

/* Notification Feed */
.bento-visual__notifs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.bento-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.bento-notif:hover {
  background: rgba(255, 255, 255, 0.04);
}

.bento-notif__icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bento-notif__icon--green {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.bento-notif__icon--purple {
  background: rgba(124, 92, 252, 0.15);
  color: var(--accent-light);
}

.bento-notif__icon--cyan {
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan);
}

.bento-notif__content {
  display: flex;
  flex-direction: column;
}

.bento-notif__title {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-primary);
}

.bento-notif__sub {
  font-size: 0.6rem;
  color: var(--text-tertiary);
}

/* ================================================================
   WORKFLOW SECTION
   ================================================================ */
.workflow-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  align-items: start;
}

.workflow-step {
  display: flex;
  align-items: center;
  position: relative;
}

.workflow-step__card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
  flex: 1;
}

.workflow-step__card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124, 92, 252, 0.08);
}

/* Visual area at top of each step card */
.workflow-step__visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-card);
  position: relative;
}

/* Step number badge */
.workflow-step__badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 16px auto 10px;
  box-shadow: 0 0 16px var(--accent-glow);
}

/* Connector arrow between steps */
.workflow-step__connector {
  flex-shrink: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}

.workflow-step:last-child .workflow-step__connector {
  display: none;
}

.workflow-step__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 0 16px;
}

.workflow-step__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  padding: 0 16px 20px;
}

/* â”€â”€ Mini Chat (Step 1) â”€â”€ */
.wf-mini-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 80%;
}

.wf-mini-msg {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  line-height: 1.4;
}

.wf-mini-msg--user {
  align-self: flex-end;
  background: #005c4b;
  border-bottom-right-radius: 2px;
  color: var(--text-primary);
}

.wf-mini-msg--bot {
  align-self: flex-start;
  background: #1f2c34;
  border-bottom-left-radius: 2px;
}

.wf-typing {
  display: flex;
  gap: 3px;
  padding: 2px 0;
}

.wf-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-tertiary);
  animation: wf-blink 1.4s infinite;
}

.wf-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.wf-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes wf-blink {

  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  30% {
    opacity: 1;
    transform: scale(1);
  }
}

/* â”€â”€ Processing (Step 2) â”€â”€ */
.wf-processing {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

.wf-proc-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  animation: wf-spin 2s linear infinite;
}

.wf-proc-ring--2 {
  inset: 6px;
  border-top-color: var(--cyan);
  animation-direction: reverse;
  animation-duration: 1.5s;
}

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

.wf-proc-brain {
  position: relative;
  z-index: 1;
}

/* â”€â”€ Actions Grid (Step 3) â”€â”€ */
.wf-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 80%;
}

.wf-action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-card);
  border-radius: 6px;
  font-size: 0.65rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.wf-action-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* â”€â”€ Success (Step 4) â”€â”€ */
.wf-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.wf-success-check {
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.wf-success-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ================================================================
   TECH STACK SECTION
   ================================================================ */
.stack-section {
  text-align: center;
  position: relative;
}

.stack-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stack-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 0 28px 28px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.stack-card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Visual area at top */
.stack-card__visual {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -28px 20px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-card);
}

/* Icon badge */
.stack-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.stack-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stack-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* â”€â”€ Performance Meter (FastAPI) â”€â”€ */
.stack-visual__meter {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stack-meter__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.stack-meter__fill {
  height: 100%;
  width: var(--fill-w);
  background: linear-gradient(90deg, var(--accent), #a78bfa);
  border-radius: 4px;
  animation: meter-fill 1.5s ease-out;
}

.stack-meter__fill--cyan {
  background: linear-gradient(90deg, var(--cyan), #67e8f9);
}

@keyframes meter-fill {
  from {
    width: 0;
  }
}

.stack-meter__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--text-tertiary);
}

.stack-meter__value {
  font-weight: 600;
  color: var(--accent-light);
}

/* â”€â”€ Code Snippet (Python) â”€â”€ */
.stack-visual__code {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: 'Fira Code', 'Cascadia Code', monospace;
}

.stack-code__line {
  font-size: 0.58rem;
  line-height: 1.7;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.code-indent {
  padding-left: 16px;
}

.code-kw {
  color: #c084fc;
}

.code-fn {
  color: #67e8f9;
}

/* â”€â”€ Node Flow (n8n) â”€â”€ */
.stack-visual__nodes {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  justify-content: center;
}

.stack-node {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.stack-node--wa {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.stack-node--ai {
  background: rgba(124, 92, 252, 0.15);
  border: 1px solid rgba(124, 92, 252, 0.3);
  color: var(--accent-light);
}

.stack-node--action {
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
}

.stack-node__line {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  opacity: 0.4;
}

/* ================================================================
   INTEGRATIONS SECTION
   ================================================================ */
.integrations-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Marquee wrapper */
.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marquee-row {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.marquee-track--left {
  animation: marquee-scroll-left 45s linear infinite;
}

.marquee-track--right {
  animation: marquee-scroll-right 45s linear infinite;
}

.marquee-track--slow {
  animation-duration: 55s;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Individual logo items */
.marquee-item {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
}

.marquee-item:hover {
  border-color: var(--border-card-hover);
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(124, 92, 252, 0.15);
  z-index: 2;
}

.marquee-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(1.8);
}

/* Tooltip */
.marquee-item[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: var(--text-primary);
  font-size: 0.6rem;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
}

.marquee-note {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 8px;
  font-style: italic;
}

/* ================================================================
   FORM SECTION
   ================================================================ */
.form-section {
  text-align: center;
  position: relative;
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-hero);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 92, 252, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.form-submit:hover {
  background: var(--accent-light);
  box-shadow: 0 0 40px var(--accent-glow);
}

.form-feedback {
  display: none;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  line-height: 1.6;
}

.form-success {
  padding: 20px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--green-wa);
}

.form-error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.16);
  color: #b91c1c;
}

.form-feedback.show {
  display: block;
  animation: bubble-in 0.4s forwards;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-card);
  position: relative;
}

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

.footer__brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer__brand .navbar__logo img {
  height: 68px;
}

.footer__brand .navbar__brand strong {
  font-size: 1.7rem;
}

.footer__brand .navbar__brand small {
  font-size: 0.82rem;
}

.footer__title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

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

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent-light);
}

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-card);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* ================================================================
   WHATSAPP WIDGET
   ================================================================ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}

.wa-widget__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  position: relative;
}

.wa-widget__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-widget__btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.wa-widget__btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-wa);
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.wa-widget__tooltip {
  position: absolute;
  bottom: 72px;
  right: 0;
  background: white;
  color: #1a1a1a;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  pointer-events: none;
}

.wa-widget__tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: white;
  transform: rotate(45deg);
}

.wa-widget:hover .wa-widget__tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .phone-mockup {
    width: 280px;
    transform: none;
  }

  .why-cards,
  .stack-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .bento-card--featured {
    grid-column: span 2;
  }

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

  .workflow-step__connector {
    display: none;
  }

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

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .navbar__logo {
    gap: 10px;
  }

  .navbar__logo img {
    height: 48px;
  }

  .navbar__brand strong {
    font-size: 1.1rem;
  }

  .navbar__brand small {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(8, 8, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    border-left: 1px solid var(--border-card);
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__hamburger {
    display: flex;
  }

  .why-cards,
  .stack-cards,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card--featured {
    grid-column: span 1;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

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

  .form-wrapper {
    padding: 32px 24px;
  }

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

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* --------------- NIVELES DE SOLUCIÓN --------------- */
.levels-section {
  padding: 8rem 0;
  position: relative;
  background: var(--bg);
  text-align: center;
}
.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  text-align: left;
}
.level-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-bounce);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.level-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 92, 252, 0.4);
  box-shadow: 0 16px 40px rgba(124, 92, 252, 0.15);
}
.level-card--premium {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.7) 100%);
  border-color: rgba(0, 212, 255, 0.2);
}
.level-card--premium:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 16px 40px rgba(0, 212, 255, 0.15);
}
.level-card__header {
  margin-bottom: 2rem;
}
.level-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(124, 92, 252, 0.1);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.level-badge--premium {
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
}
.level-title {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0.5rem;
}
.level-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  min-height: 80px;
}
.level-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.level-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text);
  font-size: 1.05rem;
}
.level-features li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}


/* Adjusted Grid for 4 items in Why Automate */
@media (min-width: 1024px) {
  .why-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}



/* ----------------------------------------
   AI CHAT WIDGET & PANEL
   ---------------------------------------- */

/* -- Floating Bot Button -- */
.ai-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.ai-widget__tooltip {
  background: rgba(14, 14, 22, 0.95);
  border: 1px solid rgba(124, 92, 252, 0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: ai-tooltip-float 3s ease-in-out infinite;
  pointer-events: none;
}

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

.ai-widget__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cfc 0%, #00d4ff 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 30px rgba(124, 92, 252, 0.5), 0 0 0 0 rgba(124, 92, 252, 0.4);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
  animation: ai-btn-pulse 2.8s ease-in-out infinite;
}

.ai-widget__btn svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s;
}

.ai-widget__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(124, 92, 252, 0.65), 0 0 0 8px rgba(124, 92, 252, 0.12);
}

.ai-widget__btn:active {
  transform: scale(0.96);
}

@keyframes ai-btn-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(124, 92, 252, 0.5), 0 0 0 0 rgba(124, 92, 252, 0.3); }
  50%       { box-shadow: 0 8px 30px rgba(124, 92, 252, 0.5), 0 0 0 10px rgba(124, 92, 252, 0); }
}

/* -- Chat Panel -- */
.ai-chat-panel {
  position: fixed;
  bottom: calc(2rem + 58px + 0.6rem + 2rem);
  right: 2rem;
  width: 360px;
  max-height: 520px;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 18, 0.97);
  border: 1px solid rgba(124, 92, 252, 0.25);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04) inset;
  backdrop-filter: blur(20px);
  z-index: 9001;
  overflow: hidden;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Header */
.ai-chat-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, rgba(124, 92, 252, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.ai-chat-panel__header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ai-chat-panel__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cfc, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(124, 92, 252, 0.4);
}

.ai-chat-panel__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.ai-chat-panel__status {
  font-size: 0.73rem;
  color: #8a8a9a;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1px;
}

.ai-chat-panel__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px rgba(37, 211, 102, 0.7);
  animation: status-blink 2s ease-in-out infinite;
}

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.ai-chat-panel__close {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #8a8a9a;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.ai-chat-panel__close:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Messages */
.ai-chat-panel__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(124,92,252,0.3) transparent;
}

.ai-chat-panel__messages::-webkit-scrollbar { width: 4px; }
.ai-chat-panel__messages::-webkit-scrollbar-track { background: transparent; }
.ai-chat-panel__messages::-webkit-scrollbar-thumb { background: rgba(124,92,252,0.3); border-radius: 4px; }

/* Individual messages */
.ai-msg {
  display: flex;
  flex-direction: column;
  animation: ai-msg-in 0.28s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes ai-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ai-msg--user {
  align-items: flex-end;
}

.ai-msg--bot {
  align-items: flex-start;
}

.ai-msg__bubble {
  max-width: 82%;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  word-break: break-word;
}

.ai-msg--user .ai-msg__bubble {
  background: linear-gradient(135deg, #7c5cfc 0%, #5a3fd4 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 16px rgba(124, 92, 252, 0.25);
}

.ai-msg--bot .ai-msg__bubble {
  background: rgba(255,255,255,0.06);
  color: #e0e0ee;
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom-left-radius: 4px;
}

.ai-msg__time {
  font-size: 0.68rem;
  color: #555566;
  margin-top: 0.25rem;
  padding: 0 0.2rem;
}

/* Typing indicator */
.ai-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}

.ai-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8a8a9a;
  animation: ai-typing-bounce 1.2s ease-in-out infinite;
}

.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes ai-typing-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40%           { transform: translateY(-5px); opacity: 1; }
}

/* Footer / Input */
.ai-chat-panel__footer {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.ai-chat-panel__input-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.5rem 0.6rem 0.5rem 0.85rem;
  transition: border-color 0.2s;
}

.ai-chat-panel__input-wrap:focus-within {
  border-color: rgba(124, 92, 252, 0.5);
  box-shadow: 0 0 0 3px rgba(124, 92, 252, 0.1);
}

.ai-chat-panel__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font, 'Inter', sans-serif);
  font-size: 0.875rem;
  line-height: 1.5;
  resize: none;
  max-height: 100px;
  scrollbar-width: none;
}

.ai-chat-panel__input::placeholder { color: #555566; }
.ai-chat-panel__input::-webkit-scrollbar { display: none; }

.ai-chat-panel__send {
  background: linear-gradient(135deg, #7c5cfc, #5a3fd4);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.15s;
}

.ai-chat-panel__send:hover { opacity: 0.85; }
.ai-chat-panel__send:active { transform: scale(0.92); }
.ai-chat-panel__send:disabled { opacity: 0.4; cursor: not-allowed; }

.ai-chat-panel__footer-note {
  font-size: 0.65rem;
  color: #444455;
  text-align: center;
  margin-top: 0.5rem;
}

/* -- Responsive -- */
@media (max-width: 480px) {
  .ai-chat-panel {
    right: 1rem;
    left: 1rem;
    width: auto;
    bottom: calc(2rem + 58px + 0.6rem + 1.5rem);
  }
  .ai-widget {
    right: 1rem;
    bottom: 1.5rem;
  }
}

/* ========================================
   Light Mode Overrides
   ======================================== */
:root {
  --bg-primary: #f9fafb;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --border-card: #e5e7eb;
  --border-card-hover: rgba(90, 63, 212, 0.22);
  --accent: #5a3fd4;
  --accent-light: #6d52e4;
  --accent-dark: #4327b8;
  --accent-soft: rgba(90, 63, 212, 0.08);
  --accent-glow: rgba(90, 63, 212, 0.14);
  --cyan: #0f8fb2;
  --cyan-glow: rgba(15, 143, 178, 0.14);
  --green-wa: #25d366;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-tertiary: #9ca3af;
  --text: var(--text-primary);
  --text-muted: var(--text-secondary);
  --gradient-hero: linear-gradient(135deg, #5a3fd4 0%, #0f8fb2 100%);
  --gradient-glow: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(90, 63, 212, 0.08), transparent 42%);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --bg: var(--bg-primary);
  --glass: rgba(255, 255, 255, 0.82);
  --border: var(--border-card);
  --transition-bounce: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  color-scheme: light;
}

body {
  background:
    radial-gradient(circle at top, rgba(90, 63, 212, 0.08), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f9fafb 60%, #f3f4f6 100%);
}

.section-tag {
  color: var(--accent);
}

.section-subtitle {
  color: var(--text-secondary);
}

.bg-glow {
  opacity: 0.22;
  filter: blur(130px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--border-card);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.navbar__logo img {
  filter: none;
  mix-blend-mode: normal;
}

.navbar__links a:hover,
.navbar__links a:focus-visible {
  color: var(--accent);
}

.navbar__cta,
.btn-primary,
.form-submit,
.ai-chat-panel__send {
  background: var(--accent);
}

.navbar__cta:hover,
.btn-primary:hover,
.form-submit:hover,
.ai-chat-panel__send:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 28px rgba(90, 63, 212, 0.18);
}

.btn-secondary:hover {
  border-color: #d1d5db;
  background: #ffffff;
}

.navbar__hamburger span {
  background: var(--text-primary);
}

.hero__grid {
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.05) 1px, transparent 1px);
}

.hero__badge,
.why-card__icon,
.bento-card__icon,
.stack-card__icon,
.level-badge,
.bento-card__tag {
  background: var(--accent-soft);
  border-color: rgba(90, 63, 212, 0.16);
  color: var(--accent);
}

.level-badge--premium,
.bento-notif__icon--cyan,
.stack-node--action {
  background: rgba(15, 143, 178, 0.08);
  border-color: rgba(15, 143, 178, 0.18);
  color: var(--cyan);
}

.phone-mockup {
  background: #dfe5ee;
  border-color: #d1d5db;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.12),
    0 12px 24px rgba(90, 63, 212, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.phone-statusbar {
  background: #0f766e;
}

.phone-statusbar__notch {
  background: #111827;
}

.phone-screen {
  background: #efeae2;
}

.phone-header {
  background: #f0f2f5;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.phone-header__name,
.phone-header__actions svg,
.phone-header__back {
  color: #111827;
  opacity: 1;
}

.phone-header__status {
  color: #6b7280;
}

.chat-encrypt {
  background: rgba(255, 255, 255, 0.75);
  color: #6b7280;
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.phone-chat {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23111827' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.chat-bubble--user,
.wf-mini-msg--user {
  background: #dcf8c6;
  color: #111827;
}

.chat-bubble--bot,
.wf-mini-msg--bot {
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.chat-bubble .chat-time {
  color: #6b7280;
}

.phone-inputbar {
  background: #f0f2f5;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.phone-inputbar__field {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.phone-inputbar__field span {
  color: #6b7280;
}

.phone-inputbar__mic {
  background: var(--green-wa);
}

.why-card,
.bento-card,
.workflow-step__card,
.stack-card,
.form-wrapper,
.level-card,
.level-card--premium {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-card);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
  backdrop-filter: none;
}

.why-card:hover,
.bento-card:hover,
.workflow-step__card:hover,
.stack-card:hover,
.level-card:hover,
.level-card--premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

.why-card__visual,
.bento-card__visual,
.stack-card__visual,
.workflow-step__visual {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.9));
}

.why-card__dots-grid span,
.stack-meter__bar,
.wf-action-item,
.bento-visual__calendar,
.bento-notif,
.form-group input,
.form-group select,
.form-group textarea,
.ai-chat-panel__input-wrap {
  background: #ffffff;
  border-color: var(--border-card);
}

.wf-action-item:hover,
.bento-notif:hover {
  background: #f9fafb;
}

.why-card__bar--low {
  background: linear-gradient(to top, rgba(90, 63, 212, 0.22), rgba(15, 143, 178, 0.15));
}

.bento-cal__grid span.available,
.bento-notif__icon--purple,
.stack-node--ai {
  background: var(--accent-soft);
  border-color: rgba(90, 63, 212, 0.18);
  color: var(--accent);
}

.bento-cal__grid span.booked {
  background: rgba(15, 143, 178, 0.08);
  border-color: rgba(15, 143, 178, 0.18);
  color: var(--cyan);
}

.bento-tl__item--active .bento-tl__dot,
.workflow-step__badge {
  box-shadow: 0 8px 20px rgba(90, 63, 212, 0.14);
}

.stack-visual__code {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.stack-code__line {
  color: #4b5563;
}

.code-kw {
  color: var(--accent);
}

.code-fn {
  color: var(--cyan);
}

.stack-node--wa {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.22);
}

.marquee-mount {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.marquee-row {
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  gap: 18px;
}

.marquee-item {
  width: auto;
  min-width: 88px;
  height: 68px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.marquee-item:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 63, 212, 0.18);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.marquee-item img {
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 40px;
  object-fit: contain;
  filter: none;
}

.marquee-item--fallback {
  background: linear-gradient(135deg, rgba(90, 63, 212, 0.08), rgba(15, 143, 178, 0.08));
  border-color: rgba(90, 63, 212, 0.18);
}

.marquee-item__fallback {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.marquee-item[title]:hover::after {
  background: #111827;
  color: #ffffff;
  border-radius: 999px;
  bottom: -34px;
}

.marquee-note {
  color: var(--text-secondary);
  font-style: normal;
}

.form-wrapper::before,
.bento-card::after,
.why-card::before {
  opacity: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.ai-chat-panel__input-wrap:focus-within {
  border-color: rgba(90, 63, 212, 0.35);
  box-shadow: 0 0 0 3px rgba(90, 63, 212, 0.10);
}

.form-group select option {
  background: #ffffff;
  color: var(--text-primary);
}

.footer {
  background: rgba(255, 255, 255, 0.62);
}

.footer__links a:hover,
.footer__bottom a:hover {
  color: var(--accent);
}

.wa-widget__tooltip,
.ai-widget__tooltip {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-card);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.wa-widget__tooltip::after {
  background: #ffffff;
}

.levels-section {
  background: transparent;
}

.level-card--premium {
  background: linear-gradient(180deg, rgba(90, 63, 212, 0.06) 0%, rgba(15, 143, 178, 0.04) 100%);
  border-color: rgba(15, 143, 178, 0.16);
}

.level-title,
.level-features li,
.ai-chat-panel__title,
.ai-msg--bot .ai-msg__bubble,
.ai-chat-panel__input {
  color: var(--text-primary);
}

.level-desc,
.ai-chat-panel__status,
.ai-msg__time,
.ai-chat-panel__footer-note {
  color: var(--text-secondary);
}

.ai-widget__btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  box-shadow: 0 12px 32px rgba(90, 63, 212, 0.18), 0 0 0 0 rgba(90, 63, 212, 0.24);
}

.ai-widget__btn:hover {
  box-shadow: 0 18px 36px rgba(90, 63, 212, 0.22), 0 0 0 8px rgba(90, 63, 212, 0.08);
}

.ai-chat-panel {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(90, 63, 212, 0.12);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14);
}

.ai-chat-panel__header {
  background: linear-gradient(135deg, rgba(90, 63, 212, 0.10) 0%, rgba(15, 143, 178, 0.08) 100%);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.ai-chat-panel__avatar {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  box-shadow: 0 10px 24px rgba(90, 63, 212, 0.16);
}

.ai-chat-panel__close {
  background: rgba(17, 24, 39, 0.03);
  border-color: rgba(17, 24, 39, 0.06);
  color: var(--text-secondary);
}

.ai-chat-panel__close:hover {
  background: rgba(17, 24, 39, 0.06);
  color: var(--text-primary);
}

.ai-chat-panel__messages::-webkit-scrollbar-thumb {
  background: rgba(90, 63, 212, 0.22);
}

.ai-msg--user .ai-msg__bubble {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(90, 63, 212, 0.16);
}

.ai-msg--bot .ai-msg__bubble,
.ai-typing,
.ai-chat-panel__footer {
  background: #ffffff;
  border-color: var(--border-card);
}

.ai-typing span {
  background: var(--text-tertiary);
}

.ai-chat-panel__input {
  background: transparent;
}

.ai-chat-panel__input::placeholder {
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .navbar__links {
    background: rgba(255, 255, 255, 0.97);
    border-left: 1px solid var(--border-card);
    box-shadow: -16px 0 40px rgba(15, 23, 42, 0.06);
  }

  .marquee-item {
    min-width: 76px;
    height: 62px;
    padding: 0 14px;
  }

  .marquee-item img {
    max-width: 88px;
    max-height: 36px;
  }
}

@media (max-width: 480px) {
  .marquee-track {
    gap: 14px;
  }

  .marquee-item {
    min-width: 70px;
    height: 58px;
    padding: 0 12px;
  }

  .marquee-item img {
    max-width: 76px;
    max-height: 32px;
  }
}
