:root {
  --primary: rgb(92, 103, 247);
  --primary-dark: rgb(72, 83, 227);
  --primary-light: rgba(92, 103, 247, 0.1);
  --secondary: rgb(158, 92, 247);
  --success: rgb(33, 206, 158);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-dark: linear-gradient(135deg, #1a1f3e 0%, #0d1025 100%);
  --text-primary: #212b37;
  --text-secondary: #6e829f;
  --text-muted: #8a9bb5;
  --bg-light: #f8fafd;
  --border-color: #ecf3fb;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 12px 40px rgba(92, 103, 247, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.section-padding {
  padding: 100px 0;
}

.bg-light-custom {
  background: var(--bg-light);
}

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

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

.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

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

.navbar {
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.navbar.scrolled .brand-text {
  color: var(--text-primary);
}

.brand-accent {
  font-weight: 400;
  opacity: 0.7;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px !important;
  transition: var(--transition);
  border-radius: 8px;
}

.navbar.scrolled .nav-link {
  color: var(--text-secondary);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.btn-nav {
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-toggler {
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 4px 8px;
}

.navbar.scrolled .navbar-toggler {
  color: var(--text-primary);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 103, 247, 0.35);
}

.btn-cta {
  padding: 14px 32px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
}

.btn-cta i {
  transition: transform 0.3s ease;
}

.btn-cta:hover i {
  transform: translateX(4px);
}

.btn-outline-light {
  border-radius: 14px;
  font-weight: 600;
  border-width: 2px;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(92, 103, 247, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(158, 92, 247, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(33, 206, 158, 0.08) 0%, transparent 40%);
}

.hero-content {
  padding: 120px 0 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(33, 206, 158, 0.15);
  color: var(--success);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.stat-suffix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--success);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease 0.5s both;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #1a1f3e;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1e2750 0%, #0f1428 100%);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.route-path {
  animation: drawRoute 3s ease forwards;
  stroke-dashoffset: 600;
}

@keyframes drawRoute {
  from { stroke-dashoffset: 600; }
  to { stroke-dashoffset: 0; }
}

.vehicle-marker {
  animation: fadeIn 1s ease 2s both;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 3;
  white-space: nowrap;
}

.floating-card i {
  font-size: 1.2rem;
}

.card-1 {
  top: 15%;
  right: 0;
  animation: floatCard 6s ease-in-out infinite;
}

.card-2 {
  top: 45%;
  left: -20px;
  animation: floatCard 6s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 18%;
  right: 10px;
  animation: floatCard 6s ease-in-out infinite 2s;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.hero-wave path {
  fill: #fff;
}

.trust-bar {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-item i {
  font-size: 1.4rem;
  color: var(--primary);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-6px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.bg-primary-soft {
  background: rgba(92, 103, 247, 0.1);
  color: var(--primary);
}

.bg-danger-soft {
  background: rgba(247, 92, 92, 0.1);
  color: #f75c5c;
}

.bg-success-soft {
  background: rgba(33, 206, 158, 0.1);
  color: var(--success);
}

.bg-warning-soft {
  background: rgba(247, 186, 92, 0.1);
  color: #f7ba5c;
}

.bg-info-soft {
  background: rgba(92, 198, 247, 0.1);
  color: #5cc6f7;
}

.bg-purple-soft {
  background: rgba(158, 92, 247, 0.1);
  color: var(--secondary);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

.diff-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.diff-phone {
  width: 300px;
  background: #1a1f3e;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--border-color);
}

.diff-screen {
  background: #fff;
  border-radius: 28px;
  padding: 20px 16px;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.notification-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: var(--bg-light);
  opacity: 0;
  transform: translateY(20px);
  animation: slideInNotif 0.5s ease forwards;
}

.notif-1 { animation-delay: 0.3s; }
.notif-2 { animation-delay: 0.6s; }
.notif-3 { animation-delay: 0.9s; }
.notif-4 { animation-delay: 1.2s; }

.notif-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.notif-text {
  display: flex;
  flex-direction: column;
}

.notif-text strong {
  font-size: 0.78rem;
  font-weight: 600;
}

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

.diff-list {
  margin-top: 24px;
}

.diff-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.diff-item:last-child {
  border-bottom: none;
}

.diff-check i {
  font-size: 1.4rem;
  color: var(--success);
  margin-top: 2px;
}

.diff-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.diff-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  position: relative;
  height: 100%;
  transition: var(--transition);
}

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

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
}

.bg-dark-gradient {
  background: var(--gradient-dark);
}

.counter-item {
  padding: 20px;
}

.counter-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  display: inline;
}

.counter-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--success);
}

.counter-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.vehicle-card {
  text-align: center;
  padding: 36px 16px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
}

.vehicle-card:hover {
  border-color: var(--primary);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.vehicle-card i {
  display: block;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.vehicle-card span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.pricing-card:hover {
  box-shadow: var(--card-shadow);
}

.pricing-featured {
  border: 2px solid var(--primary);
  box-shadow: var(--card-shadow-hover);
  z-index: 2;
}

.pricing-featured:hover {
  box-shadow: var(--card-shadow-hover);
}

.pricing-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.pricing-icon-wrap.secondary {
  background: rgba(158, 92, 247, 0.1);
  color: var(--secondary);
}

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

.pricing-note {
  text-align: center;
  margin-top: 36px;
  padding: 16px 24px;
  background: rgba(92, 103, 247, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pricing-note i {
  font-size: 1.1rem;
  color: var(--primary);
}

.pricing-note a {
  color: var(--primary);
  font-weight: 500;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  border-radius: 14px;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 103, 247, 0.35);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-header {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 12px;
}

.pricing-featured .pricing-label {
  color: var(--primary);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.pricing-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-featured .pricing-value {
  color: var(--primary);
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-positive i {
  color: var(--success);
  font-size: 1.1rem;
}

.feature-negative i {
  color: #e74c3c;
  font-size: 1.1rem;
}

.feature-negative {
  color: var(--text-muted);
}

.cta-section {
  background: #fff;
}

.cta-box {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(92, 103, 247, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 14px;
  transition: var(--transition);
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

.app-btn i {
  font-size: 1.8rem;
}

.app-btn small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
}

.app-btn strong {
  display: block;
  font-size: 0.95rem;
}

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

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

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-icon.bg-success {
  background: rgba(33, 206, 158, 0.12) !important;
  color: var(--success) !important;
}

.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-info-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--card-shadow);
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.site-footer {
  background: #0d1025;
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .brand-text {
  color: #fff;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  color: #fff;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  padding: 4px 0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li i {
  font-size: 0.9rem;
  color: var(--primary);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 100px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

@keyframes mapPulse {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

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

@keyframes slideInNotif {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 100px 0 40px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-padding {
    padding: 70px 0;
  }

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

  .pricing-note {
    flex-direction: column;
    text-align: center;
  }

  .navbar-collapse {
    background: rgba(26, 31, 62, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    margin-top: 12px;
  }

  .navbar.scrolled .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
  }

  .cta-box {
    padding: 40px 28px;
    text-align: center;
  }

  .app-buttons {
    margin-top: 24px;
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.8rem;
  }

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

  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

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

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

  .section-padding {
    padding: 50px 0;
  }

  .counter-number {
    font-size: 2rem;
  }

  .contact-form-card {
    padding: 24px;
  }

  .app-buttons {
    flex-direction: column;
  }

  .diff-visual {
    padding: 20px;
  }

  .diff-phone {
    width: 260px;
  }
}

@media (max-width: 575.98px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .pricing-card {
    padding: 28px 20px;
  }
}
