/* ===================================
   ALEYA — Premium Light Mode Design
   Fresh, Modern SaaS Theme
   =================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Core Colors - Light Mode */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;

  /* Accent Colors */
  --primary: #00647a;
  --primary-light: #2c6370;
  --primary-glow: rgba(4, 5, 5, 0.15);
  --primary-soft: rgba(2, 101, 123, 0.08);
  --secondary: #ba3034;
  --secondary-glow: rgba(186, 48, 52, 0.15);
  --secondary-soft: rgba(186, 48, 52, 0.08);
  --accent: #ba3034;
  --accent-glow: rgba(186, 48, 52, 0.15);
  --success: #059669;
  --success-soft: rgba(5, 150, 105, 0.1);
  --warning: #d97706;
  --danger: #dc2626;

  /* Text Colors */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-accent: #ba3034;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #02657b 0%, #0388a6 100%);
  --gradient-soft: linear-gradient(
    135deg,
    rgba(2, 101, 123, 0.05) 0%,
    rgba(2, 101, 123, 0.02) 100%
  );
  --gradient-hero: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
  --gradient-text: linear-gradient(135deg, #02657b, #0388a6);
  --gradient-mesh:
    radial-gradient(at 40% 20%, rgba(2, 101, 123, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 80%, rgba(2, 101, 123, 0.05) 0px, transparent 50%);

  /* Borders & Shadows */
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-light: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 8px 32px var(--primary-glow);

  /* Typography */
  --font-display:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-padding: 120px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

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

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

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

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

ul,
ol {
  list-style: none;
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Cursor Glow (Light Mode) ---------- */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(2, 101, 123, 0.08) 0%,
    transparent 60%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  transition: transform 0.1s ease-out;
  transform: translate(-50%, -50%);
}

.logo {
  height: 45px;
  max-height: 60px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-icon {
  font-size: 1.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu .nav-actions {
  display: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--primary);
}

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

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

.nav-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
}

.nav-btn.ghost {
  color: var(--text-secondary);
}

.nav-btn.ghost:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-btn.primary {
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px var(--primary-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn.primary:hover {
  background: var(--gradient-primary);
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-arrow {
  transition: transform 0.3s;
}

.nav-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.nav-toggle::before {
  top: 0;
}
.nav-toggle::after {
  bottom: 0;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(2, 101, 123, 0.15);
  top: -200px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(2, 101, 123, 0.1);
  bottom: -150px;
  right: -100px;
}

.orb-3 {
  display: none;
}

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

.grid-lines {
  display: none;
}

/* Hero Container */
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: calc(100vh - 200px);
}

.hero-content {
  max-width: 540px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 10px rgba(5, 150, 105, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .line {
  display: block;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--primary);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 2px 8px rgba(2, 101, 123, 0.2);
}

.cta-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 101, 123, 0.25);
}

.cta-primary.cta-large {
  padding: 20px 48px;
  font-size: 1.1rem;
  gap: 12px;
}

.cta-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0px 24px;
  color: var(--text-primary);
  font-weight: 600;
  transition: all 0.2s;
  border-radius: var(--radius-md);
}

.cta-secondary:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

.play-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  font-size: 0.75rem;
  box-shadow: var(--shadow-md);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.proof-avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  margin-left: -12px;
  box-shadow: var(--shadow-sm);
}

.avatar:first-child {
  margin-left: 0;
}

.hero-proof strong {
  color: var(--text-primary);
}

/* Hero Dashboard */
.hero-dashboard {
  position: relative;
  flex: 1;
  max-width: 600px;
}

.dashboard-window {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-subtle);
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dots span:nth-child(1) {
  background: #ff5f57;
}
.dots span:nth-child(2) {
  background: #ffbd2e;
}
.dots span:nth-child(3) {
  background: #28ca41;
}

.url {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-primary);
  padding: 6px 16px;
  border-radius: 6px;
}

.window-content {
  display: flex;
  min-height: 420px;
}

.dash-sidebar {
  width: 64px;
  background: var(--primary);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sidebar-item {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.sidebar-item.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.dash-main {
  flex: 1;
  padding: 24px;
  background: var(--bg-secondary);
}

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

.greeting {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

.date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--bg-card);
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.stat-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(2, 101, 123, 0.08),
    rgba(124, 58, 237, 0.05)
  );
  border-color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-trend {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg-tertiary);
  color: var(--text-muted);
  margin-top: 8px;
}

.stat-trend.up {
  background: var(--success-soft);
  color: var(--success);
}

.dash-chart {
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 100px;
}

.chart-bars .bar {
  flex: 1;
  height: var(--h);
  background: var(--bg-tertiary);
  border-radius: 6px 6px 0 0;
  transition: all 0.3s;
}

.chart-bars .bar.active {
  background: var(--gradient-primary);
}

/* Floating Cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: floatCard 8s infinite ease-in-out;
}

.card-1 {
  top: 10%;
  left: -80px;
  animation-delay: -3s;
}

.card-2 {
  bottom: 15%;
  left: -50px;
}

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

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1877f2;
  border-radius: var(--radius-md);
  color: white;
  font-size: 1.1rem;
}

.card-icon.green {
  background: var(--success);
}

.card-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-light);
  border-radius: 14px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--text-muted);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(10px);
  }
}

/* ---------- Marquee Section ---------- */
.marquee-section {
  padding: 32px 0;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

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

/* ---------- Problem Section ---------- */
.problem-section {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

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

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 36px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.problem-list li {
  margin-bottom: 28px;
}

.strike {
  display: block;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.fix {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-weight: 600;
}

.fix::before {
  content: "→";
}

.problem-visual {
  display: flex;
  align-items: center;
  gap: 32px;
}

.chaos-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chaos-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transform: rotate(-3deg);
  box-shadow: var(--shadow-md);
  animation: shake 4s ease-in-out infinite;
}

.chaos-item:nth-child(2) {
  transform: rotate(2deg);
  animation-delay: 0.3s;
}
.chaos-item:nth-child(3) {
  transform: rotate(-1deg);
  animation-delay: 0.6s;
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(var(--r, -3deg)) translateX(0);
  }
  25% {
    transform: rotate(var(--r, -3deg)) translateX(-2px);
  }
  75% {
    transform: rotate(var(--r, -3deg)) translateX(2px);
  }
}

.chaos-item i {
  font-size: 1.3rem;
}

.spreadsheet i {
  color: #22c55e;
}
.whatsapp i {
  color: #25d366;
}
.notes i {
  color: #f59e0b;
}

.arrow-transform {
  width: 100px;
  color: var(--text-light);
}

.arrow-transform svg {
  width: 100%;
}

.solution-preview {
  flex-shrink: 0;
}

.mini-dash {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-glow);
}

.mini-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.mini-content {
  display: flex;
  gap: 12px;
}

.mini-stat {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 10px 14px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
}

.mini-stat.green {
  background: var(--success-soft);
  color: var(--success);
}

/* ---------- Features Section ---------- */
.features-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.features-scroll {
  overflow: hidden;
  padding: 24px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.features-track {
  display: flex;
  gap: 24px;
  padding-left: max(24px, calc((100vw - var(--container-max)) / 2 + 24px));
  width: max-content;
  animation: scrollFeatures 30s linear infinite;
}

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

@keyframes scrollFeatures {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.feature-card {
  position: relative;
  width: 360px;
  height: 320px;
  flex-shrink: 0;
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(2, 101, 123, 0.2);
}

.card-glow {
  display: none;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(2, 101, 123, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 1.4rem;
  color: var(--primary);
}

/* Multi-icon styling (3 icons in a row) */
.feature-icon.multi {
  width: auto;
  padding: 0;
  gap: 12px;
  background: transparent;
  justify-content: flex-start;
}

.feature-icon.multi i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 101, 123, 0.08);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  color: var(--primary);
  transition: all 0.2s ease;
}

.feature-card:hover .feature-icon.multi i {
  background: rgba(2, 101, 123, 0.12);
}

.feature-icon.single {
  font-size: 1.4rem;
}

.feature-icon i {
  color: var(--primary);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.65;
  flex-grow: 1;
}

.feature-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(2, 101, 123, 0.06);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- Workflow Section ---------- */
.workflow-section {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 55px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr 220px;
  gap: 40px;
  padding: 48px 0;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 68px;
  width: 22px;
  height: 22px;
  background: var(--bg-primary);
  border: 4px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--primary-soft);
}

.timeline-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--bg-tertiary);
  text-align: right;
  line-height: 1;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.timeline-visual {
  display: flex;
  align-items: center;
}

.visual-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

.visual-box .arrow {
  color: var(--text-light);
}

.aleya-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--gradient-primary); */
  border-radius: var(--radius-md);
  font-weight: 700;
  color: white;
}

.notification {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
  background: var(--success-soft);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.visual-box.itinerary {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.itin-header {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.itin-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.visual-box.celebration {
  font-size: 2rem;
  color: var(--success);
}

.confetti {
  font-size: 1.5rem;
}

/* ---------- Pricing Section ---------- */
.pricing-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.section-desc {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 1.1rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

.toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.toggle-label.active {
  color: var(--text-primary);
}

.save-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--success-soft);
  color: var(--success);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 8px;
}

.toggle {
  position: relative;
  width: 56px;
  height: 30px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  transition: all 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 3px;
  background: var(--text-primary);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-bounce);
}

.toggle input:checked + .slider {
  background: var(--primary);
  border-color: var(--primary);
}

.toggle input:checked + .slider::before {
  transform: translateX(26px);
  background: white;
}

/* Early Bird Strip */
.early-bird-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: var(--radius-md);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
  animation: pulse-glow 2s ease-in-out infinite;
}

.early-bird-strip i {
  font-size: 1rem;
  animation: flame-flicker 0.5s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  }
}

@keyframes flame-flicker {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* GST Label */
.gst-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

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

.pricing-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  background: linear-gradient(
    180deg,
    rgba(2, 101, 123, 0.04) 0%,
    var(--bg-card) 100%
  );
  box-shadow: var(--shadow-glow);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--primary);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
}

.card-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.card-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-price {
  margin-bottom: 20px;
}

.card-price .currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  vertical-align: super;
}

.card-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.card-price .period {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.card-features {
  margin-bottom: 20px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.card-features i {
  color: var(--success);
  font-size: 0.75rem;
}

.card-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.card-btn.outline {
  border: 2px solid var(--border-medium);
  color: var(--text-primary);
  background: transparent;
}

.card-btn.outline:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

.card-btn.primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.card-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--primary-glow);
}

/* Extra Users Pricing Info */
.card-features li.extra-users {
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px dashed var(--border-light);
  margin-top: 8px;
  padding-top: 12px;
}

.card-features li.extra-users i {
  color: var(--primary);
}

/* Payment Methods */
.payment-methods {
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
}

.payment-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
}

.payment-icon i {
  font-size: 1rem;
  color: var(--primary);
}

/* Feature Comparison Toggle */
.comparison-toggle-wrapper {
  text-align: center;
  margin-top: 32px;
}

.comparison-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.comparison-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.comparison-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.comparison-toggle.active i {
  transform: rotate(180deg);
}

/* Feature Comparison Table */
.comparison-table-wrapper {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin 0.4s ease;
  margin-top: 0;
}

.comparison-table-wrapper.active {
  max-height: 1000px;
  margin-top: 24px;
}

.comparison-table {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table thead {
  background: var(--bg-tertiary);
}

.comparison-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table td {
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .category-row td {
  background: rgba(2, 101, 123, 0.04);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
}

.comparison-table .fa-check {
  color: var(--success);
}

.comparison-table .fa-times {
  color: var(--text-muted);
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

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

.testimonial-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.6;
  margin-bottom: 16px;
}

.testimonial-card > p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

.author-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 0.95rem;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.faq-header a {
  color: var(--primary);
  font-weight: 500;
}

.faq-header a:hover {
  text-decoration: underline;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.faq-q i {
  color: var(--primary);
  transition: transform 0.3s var(--ease-out);
  font-size: 0.9rem;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-a {
  max-height: 250px;
}

.faq-a p {
  padding: 0 26px 24px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
  background: var(--gradient-hero);
}

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

.orb-4 {
  width: 600px;
  height: 600px;
  background: linear-gradient(
    135deg,
    rgba(2, 101, 123, 0.2),
    rgba(3, 136, 166, 0.1)
  );
  top: -250px;
  right: -150px;
}

.orb-5 {
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15),
    rgba(167, 139, 250, 0.08)
  );
  bottom: -200px;
  left: -150px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content > p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 44px;
}

.cta-form {
  display: flex;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto 28px;
}

.cta-form input {
  flex: 1;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.cta-form input::placeholder {
  color: var(--text-muted);
}

.cta-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.submit-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  transition: all 0.3s;
  box-shadow: var(--shadow-glow);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px var(--primary-glow);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-trust i {
  color: var(--success);
}

/* ---------- Footer ---------- */
.footer {
  padding: 80px 0 48px;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-subtle);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.footer-brand > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.footer-links a {
  display: block;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-contact i {
  width: 18px;
  color: var(--primary);
}

.footer-payment {
  text-align: center;
  padding: 32px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-payment .payment-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-payment .payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-payment .payment-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
}

.footer-payment .payment-icon i {
  font-size: 1rem;
  color: var(--primary);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 500;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #25d366;
  border-radius: 100px;
  color: white;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  z-index: 100;
  transition: all 0.3s var(--ease-out);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  font-size: 1.3rem;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  color: var(--text-secondary);
  z-index: 100;
  box-shadow: var(--shadow-lg);
  transform: translateY(150%);
  transition: transform 0.5s var(--ease-out);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner a {
  color: var(--primary);
  font-weight: 500;
}

.cookie-banner button {
  padding: 10px 20px;
  background: var(--text-primary);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-primary);
}

.cookie-banner button:hover {
  opacity: 0.9;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
    justify-content: center;
  }

  .hero-dashboard {
    display: none;
  }

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

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

  .hero-proof {
    justify-content: center;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .problem-visual {
    justify-content: center;
  }

  .timeline::before {
    left: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 70px;
  }

  .timeline-item::before {
    left: 12px;
  }

  .timeline-number {
    display: none;
  }

  .timeline-visual {
    margin-top: 20px;
  }

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

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

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    z-index: 999;
    gap: 32px;
    animation: fadeIn 0.4s var(--ease-out);
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .nav-menu.open .nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    padding: 10px 0;
    border-bottom: none;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.5s var(--ease-out) forwards;
  }

  .nav-menu.open .nav-link:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav-menu.open .nav-link:nth-child(2) {
    animation-delay: 0.15s;
  }
  .nav-menu.open .nav-link:nth-child(3) {
    animation-delay: 0.2s;
  }
  .nav-menu.open .nav-link:nth-child(4) {
    animation-delay: 0.25s;
  }

  @keyframes slideUpFade {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu.open .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
    max-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.5s var(--ease-out) forwards;
    animation-delay: 0.35s;
  }

  /* Hamburger to X Animation */
  .nav-toggle {
    display: block;
    z-index: 1001; /* Above the fullscreen menu */
  }

  .nav-toggle.active span {
    background: transparent;
  }

  .nav-toggle.active::before {
    transform: rotate(45deg);
    top: 50%;
  }

  .nav-toggle.active::after {
    transform: rotate(-45deg);
    top: 50%;
    bottom: auto;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .problem-visual {
    flex-direction: column;
    gap: 24px;
  }

  .arrow-transform {
    transform: rotate(90deg);
    width: 60px;
  }

  .cta-form {
    flex-direction: column;
  }

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

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 18px;
    border-radius: 50%;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    flex-direction: column;
    text-align: center;
  }

  /* Mobile Pricing Optimization */
  .pricing-section .section-header h2 {
    font-size: 1.75rem;
  }

  .pricing-toggle {
    margin-bottom: 32px;
  }

  .toggle-label {
    font-size: 0.85rem;
  }

  .save-tag {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .pricing-card {
    padding: 20px;
  }

  .pricing-card.featured {
    margin-top: 16px;
  }

  .featured-badge {
    top: -10px;
    padding: 5px 12px;
    font-size: 0.65rem;
  }

  .card-header h3 {
    font-size: 1.1rem;
  }

  .card-header p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .card-price .currency {
    font-size: 0.9rem;
  }

  .card-price .amount {
    font-size: 2rem;
  }

  .card-price .period {
    font-size: 0.8rem;
  }

  .card-price {
    margin-bottom: 16px;
  }

  .card-features {
    margin-bottom: 16px;
  }

  .card-features li {
    padding: 5px 0;
    font-size: 0.8rem;
    gap: 8px;
  }

  .card-features i {
    font-size: 0.7rem;
  }

  .card-features li.extra-users {
    font-size: 0.75rem;
    margin-top: 6px;
    padding-top: 10px;
  }

  .card-btn {
    padding: 12px;
    font-size: 0.85rem;
  }

  /* Mobile Comparison Table */
  .comparison-toggle-wrapper {
    margin-top: 24px;
  }

  .comparison-toggle {
    font-size: 0.8rem;
    padding: 10px 16px;
  }

  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table-wrapper.active {
    margin-top: 16px;
  }

  .comparison-table {
    min-width: 500px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    min-width: 150px;
  }

  .comparison-table .category-row td {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  /* Sticky FAQ header disabled on mobile */
  .faq-header {
    position: static;
  }
}
