/* ============================================
   AniAlert Landing Page — Dark Tech / Anime Fusion
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --void-blue: #0B1E3D;
  --dark-surface: #132847;
  --anime-orange: #FF8C00;
  --anime-orange-light: #FFB347;
  --neon-cyan: #00D4FF;
  --neon-purple: #7B68EE;
  --white: #FFFFFF;
  --muted-gray: #8B95A5;
  --light-gray: #C0C8D4;
  --success: #00E676;
  --danger: #FF5252;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Orbitron', monospace;

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

  --shadow-glow-orange: 0 0 30px rgba(255, 140, 0, 0.25);
  --shadow-glow-cyan: 0 0 30px rgba(0, 212, 255, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.4);
}

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

body {
  font-family: var(--font-primary);
  background: var(--void-blue);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: var(--anime-orange); }

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

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

/* === PARTICLES BACKGROUND === */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(11, 30, 61, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-icon {
  font-size: 1.5rem;
  animation: bellRing 3s ease-in-out infinite;
}

@keyframes bellRing {
  0%, 80%, 100% { transform: rotate(0deg); }
  85% { transform: rotate(15deg); }
  90% { transform: rotate(-10deg); }
  95% { transform: rotate(5deg); }
}

.logo-text {
  font-family: var(--font-primary);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--anime-orange);
}

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

.nav-links a {
  color: var(--muted-gray);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--anime-orange) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--anime-orange-light) !important;
  box-shadow: var(--shadow-glow-orange) !important;
  transform: translateY(-1px);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--anime-orange), var(--anime-orange-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 140, 0, 0.5);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--muted-gray);
  border: 1px solid rgba(139, 149, 165, 0.3);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--neon-cyan);
  background: rgba(0, 212, 255, 0.05);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--anime-orange);
  color: var(--anime-orange);
  background: rgba(255, 140, 0, 0.05);
  transform: translateY(-2px);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-cyan:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 212, 255, 0.5);
  color: var(--white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.15rem;
}

.btn-block {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
}

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

.hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--neon-cyan);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0, 212, 255, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--anime-orange) 0%, var(--anime-orange-light) 50%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted-gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-subtitle strong {
  color: var(--white);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--anime-orange);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(139, 149, 165, 0.2);
}

/* Hero Mockup */
.hero-mockup {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-notification {
  background: rgba(19, 40, 71, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  width: 320px;
  box-shadow: var(--shadow-card);
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.mockup-2 {
  animation-delay: 0.3s;
  margin-left: 30px;
}

@keyframes slideInRight {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.notif-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.notif-avatar {
  font-size: 1.2rem;
}

.notif-name {
  font-weight: 700;
  font-size: 0.85rem;
  flex: 1;
}

.notif-time {
  font-size: 0.75rem;
  color: var(--muted-gray);
}

.notif-body {
  font-size: 0.9rem;
  line-height: 1.5;
}

.notif-body strong {
  color: var(--anime-orange);
}

.notif-detail {
  font-size: 0.8rem;
  color: var(--muted-gray);
  margin-top: 2px;
}

/* Floating animation */
.animate-float {
  animation: float 5s ease-in-out infinite;
}

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

/* === PROBLEM / SOLUTION === */
.problem-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: var(--dark-surface);
}

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

.problem-card, .solution-card {
  padding: 40px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.problem-card {
  background: rgba(255, 82, 82, 0.05);
  border: 1px solid rgba(255, 82, 82, 0.15);
}

.solution-card {
  background: rgba(0, 230, 118, 0.05);
  border: 1px solid rgba(0, 230, 118, 0.15);
}

.problem-icon, .solution-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.problem-card h3, .solution-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.problem-list, .solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-list li {
  padding-left: 24px;
  position: relative;
  color: var(--light-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.problem-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--light-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.check {
  flex-shrink: 0;
}

/* === HOW IT WORKS === */
.how-it-works {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--void-blue);
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--muted-gray);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.step-card {
  background: rgba(19, 40, 71, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  max-width: 320px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-glow-cyan);
}

.step-number {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-cyan);
  opacity: 0.5;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--muted-gray);
  line-height: 1.6;
}

.step-connector {
  flex-shrink: 0;
  opacity: 0.4;
}

/* === ANIME TICKER === */
.anime-ticker {
  position: relative;
  z-index: 1;
  background: var(--dark-surface);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 212, 255, 0.05);
  border-bottom: 1px solid rgba(0, 212, 255, 0.05);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

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

.ticker-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.ticker-item {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker-dot {
  font-size: 0.7rem;
  opacity: 0.5;
}

/* === PRICING === */
.pricing {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--void-blue);
}

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

.price-card {
  background: rgba(19, 40, 71, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.price-card-featured {
  background: rgba(19, 40, 71, 0.8);
  border: 2px solid var(--anime-orange);
  box-shadow: var(--shadow-glow-orange);
  transform: scale(1.05);
  z-index: 2;
}

.price-card-featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--anime-orange), var(--anime-orange-light));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.price-plan-tag {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.tag-free { color: var(--muted-gray); }
.tag-pro { color: var(--anime-orange); }
.tag-otaku { color: var(--neon-cyan); }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--muted-gray);
}

.price-value {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.price-period {
  font-size: 0.85rem;
  color: var(--muted-gray);
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 0.9rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feat-check {
  flex-shrink: 0;
}

.feat-disabled {
  color: var(--muted-gray);
  opacity: 0.5;
}

.feat-x {
  flex-shrink: 0;
  color: var(--muted-gray);
}

.coming-soon {
  font-size: 0.65rem;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neon-cyan);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}

.price-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-gray);
  margin-top: 12px;
}

/* === TRUST SECTION === */
.trust-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: var(--dark-surface);
}

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

.trust-item {
  text-align: center;
  padding: 24px;
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.trust-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--muted-gray);
  line-height: 1.6;
}

/* === FAQ === */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--void-blue);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(19, 40, 71, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: rgba(0, 212, 255, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--neon-cyan);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--neon-cyan);
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted-gray);
  line-height: 1.7;
}

/* === FINAL CTA === */
.final-cta {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--dark-surface);
  overflow: hidden;
  text-align: center;
}

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

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-content > p {
  font-size: 1.15rem;
  color: var(--muted-gray);
  margin-bottom: 40px;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--muted-gray);
  margin-top: 20px;
}

.cta-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 140, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* === FOOTER === */
.footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 32px;
  background: rgba(5, 12, 28, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo-text {
  font-size: 1.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted-gray);
  margin-top: 12px;
  line-height: 1.6;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-gray);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--light-gray);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--anime-orange);
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 24px;
  margin-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-gray);
}

.footer-bottom a {
  color: var(--anime-orange);
}

/* === ANIMATIONS === */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-mockup {
    display: none;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 30, 61, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
    color: var(--white);
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

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

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

  .steps-grid {
    flex-direction: column;
  }

  .step-connector {
    transform: rotate(90deg);
  }

  .step-card {
    max-width: 100%;
  }

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

  .price-card-featured {
    transform: scale(1);
  }

  .price-card-featured:hover {
    transform: translateY(-6px);
  }

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

  .footer-content {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg, .btn-xl {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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