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

:root {
  /* Color Palette - Cinematic Dark + AI Violet */
  --bg-deep: #050506;
  --bg-base: #0a0a0f;
  --surface-elevated: rgba(255, 255, 255, 0.03);
  --surface-card: rgba(255, 255, 255, 0.05);
  --border-card: rgba(255, 255, 255, 0.08);

  --accent-primary: #7C3AED;
  --accent-secondary: #A78BFA;
  --accent-tertiary: #0891B2;
  --accent-glow: rgba(124, 58, 237, 0.2);
  --accent-glow-strong: rgba(124, 58, 237, 0.4);

  --fg-main: #EDEDEF;
  --fg-muted: #8A8F98;
  --success: #10B981;
  --whatsapp: #25D366;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-deep);
  background-image: linear-gradient(to bottom, var(--bg-base), var(--bg-deep));
  color: var(--fg-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Subtle noise texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* Prevent scroll when mobile menu open */
body.menu-open {
  overflow: hidden;
}

/* ==============================
   CUSTOM SCROLLBAR
   ============================== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ==============================
   SELECTION
   ============================== */
::selection {
  background-color: var(--accent-primary);
  color: white;
}

/* ==============================
   TYPOGRAPHY
   ============================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg-main);
}

p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

section {
  padding: 7rem 0;
  position: relative;
}

/* ==============================
   SECTION HEADERS
   ============================== */
.section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-secondary);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn i {
  font-size: 1.2rem;
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 10px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), #6d28d9);
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8b5cf6, var(--accent-primary));
  box-shadow: 0 6px 30px var(--accent-glow-strong), 0 1px 3px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--fg-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), #128C7E);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-email {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg-main);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

/* ==============================
   GLASS CARD
   ============================== */
.glass-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
}

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

.navbar.scrolled {
  background: rgba(5, 5, 6, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  padding: 0.8rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #ffffff, var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s var(--ease-smooth);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  /* Inherits .btn .btn-primary .btn-sm */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 6, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-links a {
  color: var(--fg-main);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu-overlay.active .mobile-menu-links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu-links a:hover {
  color: var(--accent-secondary);
}

/* ==============================
   HERO SECTION
   ============================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-secondary);
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(124, 58, 237, 0); }
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==============================
   AMBIENT BLOBS
   ============================== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.4;
  will-change: transform;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-primary), transparent 70%);
  top: 5%;
  left: 15%;
  animation: float-1 15s infinite alternate ease-in-out;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-tertiary), transparent 70%);
  bottom: 10%;
  right: 10%;
  animation: float-2 18s infinite alternate ease-in-out;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-secondary), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-3 12s infinite alternate ease-in-out;
}

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

@keyframes float-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 30px) scale(1.08); }
  100% { transform: translate(30px, -40px) scale(0.96); }
}

@keyframes float-3 {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(calc(-50% + 30px), calc(-50% - 20px)) scale(1.06); }
  100% { transform: translate(calc(-50% - 20px), calc(-50% + 30px)) scale(0.97); }
}

/* ==============================
   FEATURES SECTION
   ============================== */
.features-section {
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.02), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.feature-card {
  padding: 2.2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(124, 58, 237, 0.08);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(8, 145, 178, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-secondary);
  font-size: 1.6rem;
  border: 1px solid rgba(167, 139, 250, 0.15);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==============================
   HOW IT WORKS SECTION
   ============================== */
.how-it-works-section {
  background: linear-gradient(180deg, transparent, rgba(8, 145, 178, 0.02), transparent);
}

.timeline {
  max-width: 700px;
  margin: 3.5rem auto 0;
  position: relative;
  padding-left: 3rem;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 23px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-primary), var(--accent-tertiary), transparent);
  border-radius: 1px;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
  position: relative;
}

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

.step-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent-secondary);
  z-index: 2;
  box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(124, 58, 237, 0.1);
  position: relative;
  left: -3rem;
  margin-right: -3rem;
}

.step-content {
  padding: 1.8rem;
  flex-grow: 1;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
}

/* ==============================
   DEMO VIDEO SECTION
   ============================== */
.demo-section {
  text-align: center;
  padding: 7rem 0 8rem;
  position: relative;
}

.video-wrapper {
  position: relative;
  margin-top: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse at center,
    rgba(124, 58, 237, 0.2) 0%,
    rgba(8, 145, 178, 0.1) 40%,
    transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: glow-pulse 4s infinite alternate ease-in-out;
}

@keyframes glow-pulse {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.video-container {
  position: relative;
  z-index: 1;
  padding: 8px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(124, 58, 237, 0.1);
}

.video-container video {
  width: 100%;
  display: block;
  border-radius: 14px;
  background: #000;
}

/* ==============================
   STATS SECTION
   ============================== */
.stats-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  background: rgba(255, 255, 255, 0.01);
}

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

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 16px;
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.2);
}

.stat-value {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==============================
   CONTACT / CTA SECTION
   ============================== */
.contact-section {
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-content .section-title {
  margin-bottom: 1rem;
}

.contact-content .section-subtitle {
  margin-bottom: 2.5rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-card);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #ffffff, var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  margin: 0.5rem 0;
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

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

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(138, 143, 152, 0.6);
  margin-top: 0.5rem;
}

/* ==============================
   ANIMATION UTILITIES
   ============================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

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

.visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

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

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

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

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

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

  section {
    padding: 5rem 0;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
    min-height: 90vh;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    letter-spacing: -1.5px;
  }

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

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    letter-spacing: -1px;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline-line {
    left: 15px;
  }

  .step-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.85rem;
    left: -2rem;
    margin-right: -2rem;
  }

  .step-content {
    padding: 1.2rem;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
  }

  .contact-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-links {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .video-container {
    padding: 5px;
    border-radius: 14px;
  }

  .video-container video {
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

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

  .stat-card {
    padding: 1.5rem 0.8rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .feature-card {
    padding: 1.8rem;
  }
}
