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

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --bg-color: #030014;
  --card-bg: rgba(10, 9, 24, 0.4);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-glow: rgba(0, 242, 254, 0.15);
  
  /* Palette - Ocean & Linear hybrid */
  --primary-glow: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0.05) 50%, transparent 100%);
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --text-main: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
}

.text-cyan {
  color: var(--accent-cyan);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  cursor: none;
}

/* Background Grids & Ambient Glows */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  pointer-events: none;
  z-index: 1;
}

.ambient-glow-1 {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 600px;
  background: var(--primary-glow);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: absolute;
  top: 50%;
  left: -20%;
  width: 60vw;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-3 {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 50vw;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 75%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Custom Cursor */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-cyan);
}

.cursor-dot.clicking {
  width: 6px;
  height: 6px;
  background: #fff;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 242, 254, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.hovering {
  width: 52px;
  height: 52px;
  border-color: rgba(0, 242, 254, 0.7);
}

#trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
}

.click-pulse {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9996;
  border: 2px solid var(--accent-cyan);
  animation: pulseRing 0.6s ease-out forwards;
}

@keyframes pulseRing {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
    transform: translate(-50%, -50%);
  }
}

@media (hover: none) {
  .cursor-dot, .cursor-ring, #trail-canvas {
    display: none;
  }
}

/* ==========================================================================
   TYPOGRAPHY & SECTIONS
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  color: var(--text-secondary);
}

.section {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #fff;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   BUTTONS & ACCENTS (Linear style)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: #fff;
  color: #030014;
  border: 1px solid #fff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.9);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.btn-outline:hover {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), rgba(79, 172, 254, 0.1));
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.25);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION (Capsule Menu Centered)
   ========================================================================== */
.header {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 0 24px;
  pointer-events: none; /* Allows click through outer container */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding: 10px 24px;
  background: rgba(10, 9, 24, 0.6);
  border: 1px solid var(--card-border);
  border-radius: 9999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: auto; /* Re-enable pointer events for the menu itself */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.nav-container:hover {
  border-color: rgba(0, 242, 254, 0.25);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.logo svg {
  width: 28px;
  height: 28px;
}

.logo-text {
  background: linear-gradient(135deg, #fff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  cursor: none;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  transition: var(--transition-smooth);
}

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

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 9999px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 9999px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 180px;
  padding-bottom: 80px;
  text-align: center;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 9999px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-main);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
  animation: badgePulse 4s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

.hero-tag:hover {
  border-color: rgba(0, 242, 254, 0.3);
}

.hero-tag span {
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent-cyan);
}

.hero-title {
  font-size: 4rem;
  max-width: 800px;
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.05;
  background: linear-gradient(185deg, #fff 50%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

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

/* Linear-style Hero Mockup/Visual (floating browser frame) */
.hero-visual-wrapper {
  perspective: 1200px;
  width: 100%;
  max-width: 1000px;
}

.hero-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  padding: 12px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  animation: floatTilt 6s ease-in-out infinite;
}

@keyframes floatTilt {
  0%, 100% { transform: rotateX(2deg) rotateY(-1deg) translateY(0px); }
  25% { transform: rotateX(-1deg) rotateY(1.5deg) translateY(-4px); }
  50% { transform: rotateX(1deg) rotateY(-0.5deg) translateY(-2px); }
  75% { transform: rotateX(-1.5deg) rotateY(0.5deg) translateY(-5px); }
}

.hero-visual:hover {
  border-color: rgba(0, 242, 254, 0.2);
  box-shadow: 0 30px 80px rgba(0, 242, 254, 0.04), 0 30px 70px rgba(0, 0, 0, 0.7);
}

.hero-visual .tilt-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(
    600px circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(0, 242, 254, 0.08),
    transparent 40%
  );
}

.hero-visual:hover .tilt-shine {
  opacity: 1;
}

.hero-visual .browser-content,
.hero-visual .browser-header {
  transform: translateZ(30px);
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.browser-dot:nth-child(1) { background: #ff5f56; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #27c93f; }

.browser-address {
  margin-left: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 2px 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  width: 250px;
  text-align: left;
}

.browser-content {
  flex: 1;
  background: #060515;
  border-radius: 8px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Simulated elegant web dashboard design inside the mockup */
.simulated-ui {
  width: 92%;
  height: 88%;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
}

.sim-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  padding-right: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

.sim-line.logo {
  height: 16px;
  width: 60%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  margin-bottom: 4px;
}

.sim-sidebar-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2px;
}

.sim-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.sim-contact:hover {
  background: rgba(255, 255, 255, 0.04);
}

.sim-avatar {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}

.sim-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  flex: 1;
}

.sim-contact-name {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.sim-contact-msg {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sim-contact-time {
  font-size: 0.5rem;
  color: rgba(0, 242, 254, 0.5);
  white-space: nowrap;
}

.sim-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.sim-card {
  height: 80px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.sim-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
  opacity: 0.6;
}

.sim-card-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sim-card-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.sim-card-change {
  font-size: 0.65rem;
  font-weight: 600;
}

.sim-card-change.positive {
  color: #34d399;
}

.sim-card-change.negative {
  color: #f87171;
}

.sim-chart {
  flex: 1;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 10px;
}

.sim-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-chart-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.sim-bar {
  flex: 1;
  background: linear-gradient(0deg, var(--accent-blue), var(--accent-cyan));
  border-radius: 4px 4px 0 0;
  opacity: 0.6;
  transition: opacity 0.3s ease, height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.sim-bar span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
}

.sim-bar.active {
  opacity: 1;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.3);
}

.sim-chart:hover .sim-bar {
  opacity: 0.8;
}

.sim-chart:hover .sim-bar.active {
  opacity: 1;
}

/* ==========================================================================
   FEATURES / BENEFITS
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
  border-color: rgba(0, 242, 254, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 242, 254, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.08), transparent 50%);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

/* Mouse cursor hover glow effect */
.feature-card::after,
.pricing-card::after,
.contact-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(0, 242, 254, 0.06), transparent 40%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover::after,
.pricing-card:hover::after,
.contact-container:hover::after {
  opacity: 1;
}

.feature-card > *,
.pricing-card > *,
.contact-container > * {
  position: relative;
  z-index: 2;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-cyan);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #030014;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   TIMELINE (7-Day Process)
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(-50%);
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 0%;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-blue));
  transform: translateX(-50%);
  transition: height 0.1s ease-out;
  box-shadow: 0 0 8px var(--accent-cyan), 0 0 16px rgba(0, 242, 254, 0.3);
  z-index: 2;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #030014;
  border: 2px solid rgba(255, 255, 255, 0.15);
  z-index: 5;
  transition: all 0.4s ease;
}

.timeline-dot.active {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-cyan), 0 0 24px rgba(0, 242, 254, 0.4);
  transform: translate(-50%, 0) scale(1.3);
}

.timeline-content {
  width: 44%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  opacity: 0.5;
  transform: translateY(10px);
}

.timeline-item.active .timeline-content {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(0, 242, 254, 0.2);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.05);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-day {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--accent-cyan);
  border-radius: 6px;
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.pricing-card-featured {
  border-color: rgba(0, 242, 254, 0.3);
  background: linear-gradient(180deg, rgba(0, 242, 254, 0.06) 0%, rgba(255,255,255,0.02) 100%);
  transform: scale(1.03);
  padding: 48px 40px;
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card-featured::before {
  background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-blue), transparent);
  height: 2px;
}

.pricing-card-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0, 242, 254, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-badge.featured {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(79, 172, 254, 0.15));
  border-color: rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}

.pricing-price span.currency {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 12px;
}

.pricing-subprice {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pricing-divider {
  height: 1px;
  background: var(--card-border);
  margin: 32px 0;
}

.pricing-features {
  text-align: left;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-feature-item svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

/* ==========================================================================
   FINANCING SECTION
   ========================================================================== */
.financing-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.financing-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-blue), transparent);
}

.financing-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.financing-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.financing-desc strong {
  color: var(--accent-cyan);
  font-weight: 600;
}

.financing-options {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.financing-option {
  text-align: center;
}

.financing-option-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.financing-option-detail {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.financing-option-detail strong {
  color: var(--accent-cyan);
}

.financing-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: -16px;
  margin-bottom: 24px;
  font-style: italic;
}

.financing-divider {
  width: 1px;
  height: 60px;
  background: var(--card-border);
}

.financing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.financing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.financing-feature svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.financing-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.financing-card-main {
  width: 300px;
  background: linear-gradient(180deg, rgba(0, 242, 254, 0.08) 0%, rgba(0, 242, 254, 0.02) 100%);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.financing-card-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 150px;
  background: radial-gradient(ellipse, rgba(0, 242, 254, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

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

.financing-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(79, 172, 254, 0.2));
  border: 1px solid rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.financing-badge-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  padding: 5px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.financing-dot-pulse {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(0, 242, 254, 0); }
}

.financing-plan-selector {
  display: flex;
  gap: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 24px;
}

.financing-plan-btn {
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.financing-plan-btn.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(79, 172, 254, 0.2));
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.15);
}

.financing-plan-btn:hover:not(.active) {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

.financing-card-body {
  text-align: center;
  margin-bottom: 24px;
}

.financing-months {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.financing-months-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  transition: all 0.3s ease;
}

.financing-months-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.financing-slider-container {
  position: relative;
  padding: 0 8px;
  margin-bottom: 24px;
}

.financing-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
}

.financing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.4), 0 0 20px rgba(0, 242, 254, 0.2);
  transition: box-shadow 0.2s ease;
}

.financing-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.6), 0 0 30px rgba(0, 242, 254, 0.3);
}

.financing-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.4), 0 0 20px rgba(0, 242, 254, 0.2);
}

.financing-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.financing-slider-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease;
  cursor: pointer;
}

.financing-slider-label.active {
  color: var(--accent-cyan);
}

.financing-installment small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.financing-installment strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
  transition: all 0.3s ease;
}

.financing-installment strong span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.financing-card-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.financing-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

.financing-trust svg {
  color: var(--accent-cyan);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-title {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.contact-method-text h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-method-text p {
  color: #fff;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  cursor: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

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

.form-submit {
  border: none;
  width: 100%;
}

.form-message {
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.form-message.success {
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.3);
  color: #27c93f;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--card-border);
  padding: 60px 24px;
  background: #02000d;
}

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

.footer-copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: none;
}

.footer-link:hover {
  color: #fff;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(0, 242, 254, 0.2);
}

.faq-item.active {
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.05);
}

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

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

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   BOTTOM STICKY BAR
   ========================================================================== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 20px 28px;
  pointer-events: none;
}

.bottom-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  padding: 12px 28px;
  background: rgba(10, 9, 24, 0.85);
  border: 1px solid var(--card-border);
  border-radius: 9999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  animation: breathe 3s ease-in-out infinite;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bottom-bar-container:hover {
  border-color: rgba(0, 242, 254, 0.25);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.08);
}

.bottom-bar-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.bottom-bar-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 16px;
  }
  
  .hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  
  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .header {
    top: 12px;
    padding: 0 12px;
  }
  
  .nav-container {
    border-radius: 20px;
    padding: 10px 16px;
    max-width: 100%;
    gap: 8px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    width: auto;
    background: rgba(10, 9, 24, 0.98);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    margin-top: 8px;
    pointer-events: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  
  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-link {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-menu .nav-link:hover {
    background: rgba(0, 242, 254, 0.08);
    color: var(--accent-cyan);
  }

  .nav-menu .nav-link::after {
    display: none;
  }
  
  .nav-cta {
    margin-left: auto;
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .hamburger {
    display: flex;
    margin-left: 4px;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

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

  .nav-menu.active {
    animation: menuSlideDown 0.25s ease forwards;
  }
  
  /* Browser Mockup Mobile */
  .hero-visual-wrapper {
    perspective: 600px;
    width: 100%;
    margin-top: 30px;
  }
  
  .hero-visual {
    max-width: 100%;
    aspect-ratio: auto;
    min-height: 420px;
    padding: 8px;
  }
  
  .browser-header {
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  
  .browser-dot {
    width: 6px;
    height: 6px;
  }
  
  .browser-address {
    font-size: 0.6rem;
    width: 180px;
    padding: 2px 10px;
    margin-left: 12px;
  }
  
  .simulated-ui {
    grid-template-columns: 140px 1fr;
    gap: 8px;
    padding: 10px;
    height: 100%;
  }
  
  .sim-sidebar {
    padding-right: 6px;
    gap: 4px;
  }
  
  .sim-line.logo {
    height: 10px;
    width: 60%;
  }
  
  .sim-sidebar-title {
    font-size: 0.4rem;
  }
  
  .sim-contact {
    padding: 4px;
    gap: 4px;
  }
  
  .sim-avatar {
    width: 18px;
    height: 18px;
    min-width: 18px;
    font-size: 0.45rem;
  }
  
  .sim-contact-name {
    font-size: 0.45rem;
  }
  
  .sim-contact-msg {
    font-size: 0.4rem;
  }
  
  .sim-contact-time {
    font-size: 0.35rem;
  }
  
  .sim-main {
    gap: 6px;
  }
  
  .sim-grid {
    gap: 4px;
  }
  
  .sim-card {
    padding: 6px;
    height: 54px;
  }
  
  .sim-card-label {
    font-size: 0.4rem;
    line-height: 1.2;
  }
  
  .sim-card-value {
    font-size: 0.85rem;
  }
  
  .sim-card-change {
    font-size: 0.4rem;
  }
  
  .sim-chart {
    padding: 6px;
  }
  
  .sim-chart-header {
    margin-bottom: 2px;
  }
  
  .sim-chart-bars {
    gap: 3px;
  }
  
  .sim-bar span {
    font-size: 0.35rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 24px;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-desc {
    font-size: 0.9rem;
  }
  
  .timeline::before {
    left: 16px;
  }
  
  .timeline-progress {
    left: 16px;
    width: 2px;
  }
  
  .timeline-dot {
    left: 16px;
    width: 12px;
    height: 12px;
  }
  
  .timeline-item {
    justify-content: flex-end;
    margin-bottom: 32px;
  }
  
  .timeline-content {
    width: calc(100% - 44px);
    padding: 20px;
  }
  
  .timeline-day {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  
  .timeline-title {
    font-size: 1rem;
  }
  
  .timeline-desc {
    font-size: 0.85rem;
  }
  
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card-featured {
    order: -1;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .pricing-price {
    font-size: 3.5rem;
  }
  
  .pricing-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .pricing-feature-item {
    font-size: 0.9rem;
  }

  .financing-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px;
  }

  .financing-content {
    display: flex;
    flex-direction: column;
  }

  .financing-visual {
    order: 3;
    margin-top: 8px;
  }

  .financing-title {
    font-size: 1.5rem;
  }

  .financing-desc {
    font-size: 0.9rem;
  }

  .financing-options {
    flex-direction: row;
    gap: 16px;
  }

  .financing-option {
    flex: 1;
  }

  .financing-option-price {
    font-size: 2rem;
  }

  .financing-divider {
    width: 1px;
    height: 60px;
  }

  .financing-card-main {
    width: 100%;
    max-width: 320px;
  }

  .financing-months-number {
    font-size: 3rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* === MOBILE PERFORMANCE === */
  #particle-canvas,
  .cursor-dot,
  .cursor-ring,
  #trail-canvas {
    display: none !important;
  }

  .hero-visual,
  .feature-card,
  .pricing-card,
  .timeline-content,
  .contact-container,
  .faq-item,
  .financing-card-main {
    animation: none !important;
    transition: opacity 0.3s ease, border-color 0.3s ease !important;
    will-change: auto !important;
  }

  .hero-visual {
    animation: floatTilt 6s ease-in-out infinite !important;
  }

  .feature-card:hover,
  .pricing-card:hover {
    transform: none !important;
  }

  .pricing-card-featured {
    transform: scale(1.03) !important;
  }

  .pricing-card-featured:hover {
    transform: scale(1.03) !important;
  }

  .browser-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .bottom-bar {
    padding: 8px 12px;
  }

  .bottom-bar-container {
    padding: 8px 16px;
  }

  .bottom-bar-btn {
    font-size: 0.8rem;
  }
}

/* Scroll reveal - removed */
