/* ================================================================
   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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #F8FAFC;
  color: #0F172A;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ================================================================
   SCROLL REVEAL ANIMATION
   ================================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   NAVBAR
   ================================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 40px;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

#navbar.solid {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
}

.nav-logo-text {
  font-size: 19px;
  font-weight: 700;
  color: white;
  transition: color 0.3s;
}

#navbar.solid .nav-logo-text {
  color: #0F172A;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #0284C7;
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: #0284C7;
}

#navbar.solid .nav-link {
  color: #475569;
}

#navbar.solid .nav-link:hover {
  color: #0284C7;
}

.nav-cta {
  margin-left: 24px;
  padding: 10px 22px;
  background: #0284C7;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #0369A1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

#navbar.solid .nav-menu-btn span {
  background: #0F172A;
}

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

/* ================================================================
   MOBILE MENU
   ================================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 8px 16px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open .mobile-menu-sheet {
  transform: translateY(0);
}

.mobile-menu-handle {
  width: 40px;
  height: 4px;
  background: #E2E8F0;
  border-radius: 2px;
  margin: 8px auto 16px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 12px;
  font-size: 16px;
  font-weight: 500;
  color: #0F172A;
  border-radius: 12px;
  transition: background 0.2s;
}

.mobile-menu-link i {
  color: #0284C7;
  width: 24px;
  text-align: center;
}

.mobile-menu-link:hover {
  background: #F1F5F9;
}

.mobile-menu-cta {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: #0284C7;
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  transition: background 0.2s;
}

.mobile-menu-cta:hover {
  background: #0369A1;
}

/* ================================================================
   HERO
   ================================================================ */
#hero {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  overflow: hidden;
  padding: 140px 48px 96px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-1 {
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(2,132,199,0.12) 0%, transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-2 {
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
  animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(56, 189, 248, 0.3);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

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

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-text {
  flex: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(2, 132, 199, 0.14);
  border: 1px solid rgba(2, 132, 199, 0.3);
  border-radius: 24px;
  color: #38BDF8;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 14px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.store-btn i {
  font-size: 26px;
  color: white;
}

.store-btn-filled {
  background: #0284C7;
}

.store-btn-filled:hover {
  background: #0369A1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.3);
}

.store-btn-outline {
  border: 1px solid #334155;
  background: transparent;
}

.store-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: #475569;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
}

.store-btn-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1;
}

.store-btn-name {
  font-size: 17px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-top: 3px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.stat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.hero-carousel {
  flex: 4;
  min-width: 0;
  width: 100%;
}

/* Phone frame */
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  background: #1E293B;
  border-radius: 32px;
  border: 2px solid #334155;
  box-shadow: 0 0 80px rgba(2, 132, 199, 0.18);
  overflow: hidden;
  transition: box-shadow 0.4s;
}

.phone-frame:hover {
  box-shadow: 0 0 100px rgba(2, 132, 199, 0.28);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-img.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s;
  cursor: pointer;
}

.dot.active {
  width: 24px;
  background: white;
}

/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-inner-narrow {
  max-width: 900px;
  margin: 0 auto;
}

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

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-badge-blue {
  background: rgba(2, 132, 199, 0.08);
  color: #0284C7;
}

.section-badge-green {
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
}

.section-badge-purple {
  background: rgba(139, 92, 246, 0.08);
  color: #8B5CF6;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: #64748B;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================================================
   FEATURES SECTION
   ================================================================ */
#features {
  padding: 96px 48px;
  background: #F8FAFC;
}

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

.feature-card {
  padding: 28px;
  background: white;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

/* ================================================================
   HOW IT WORKS SECTION
   ================================================================ */
#how-it-works {
  padding: 96px 48px;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 12px;
  align-items: start;
  row-gap: 24px;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 48px;
}

.step-card {
  padding: 28px;
  background: #F8FAFC;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  background: #F1F5F9;
  transform: translateY(-3px);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0284C7, #06B6D4);
  color: white;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon {
  margin-bottom: 16px;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
}

/* Mobile steps */
.steps-mobile {
  display: none;
}

.step-mobile {
  display: flex;
  gap: 16px;
}

.step-mobile-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-line {
  flex: 1;
  width: 2px;
  background: #E2E8F0;
  margin: 4px 0;
  min-height: 20px;
}

.step-line.last {
  background: transparent;
}

.step-mobile-content {
  padding-bottom: 28px;
}

.step-mobile-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
}

.step-mobile-content p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
}

/* ================================================================
   PRICING SECTION
   ================================================================ */
#pricing {
  padding: 96px 48px;
  background: #F8FAFC;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-card {
  padding: 32px;
  background: white;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.pricing-card-highlighted {
  background: #0F172A;
  border: 2px solid #0284C7;
  color: white;
}

.pricing-card-highlighted:hover {
  box-shadow: 0 20px 50px rgba(2, 132, 199, 0.2);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #0284C7, #06B6D4);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 16px;
}

.pricing-plan {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 28px;
}

.price-amount {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.price-period {
  font-size: 15px;
  color: #94A3B8;
  padding-bottom: 6px;
}

.pricing-card-highlighted .price-period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-divider {
  border: none;
  height: 1px;
  background: #E2E8F0;
  margin-bottom: 20px;
}

.pricing-divider-dark {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
}

.pricing-features li.included {
  color: #334155;
}

.pricing-card-highlighted .pricing-features li.included {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features li.excluded {
  color: #CBD5E1;
  text-decoration: line-through;
}

.pricing-card-highlighted .pricing-features li.excluded {
  color: rgba(255, 255, 255, 0.3);
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
}

.pricing-cta-light {
  background: #F1F5F9;
  color: #0F172A;
}

.pricing-cta-light:hover {
  background: #E2E8F0;
  transform: translateY(-1px);
}

.pricing-cta-primary {
  background: #0284C7;
  color: white;
}

.pricing-cta-primary:hover {
  background: #0369A1;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
#contact {
  padding: 96px 48px;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  padding: 36px;
  background: white;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 28px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #0F172A;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0284C7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-submit {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0284C7, #06B6D4);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0369A1, #0284C7);
  opacity: 0;
  transition: opacity 0.3s;
}

.contact-submit:hover::before {
  opacity: 1;
}

.contact-submit:hover {
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.35);
  transform: translateY(-1px);
}

.contact-submit svg,
.contact-submit span {
  position: relative;
  z-index: 1;
}

.contact-submit.sending {
  pointer-events: none;
  opacity: 0.8;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.contact-card-whatsapp {
  cursor: pointer;
}

.contact-card-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.08);
  transform: translateY(-2px);
}

.contact-card:not(.contact-card-whatsapp):hover {
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.08);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-info {
  flex: 1;
}

.contact-card-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.contact-card-info span {
  font-size: 13px;
  color: #64748B;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
#cta {
  padding: 96px 48px;
  background: linear-gradient(135deg, #0284C7 0%, #06B6D4 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(5%, 5%); }
  50% { transform: translate(-5%, 3%); }
  75% { transform: translate(3%, -5%); }
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: 42px;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
}

.cta-btn-white {
  background: white;
  color: #0F172A;
}

.cta-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: white;
}

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

/* ================================================================
   FOOTER
   ================================================================ */
#footer {
  background: #0F172A;
  padding: 64px 48px;
  color: white;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 3fr 6fr;
  gap: 60px;
}

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

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 700;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 320px;
}

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

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 40px 0 24px;
}

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ================================================================
   TOAST
   ================================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  padding: 14px 28px;
  background: #0F172A;
  color: white;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

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

  .steps-grid {
    grid-template-columns: 1fr auto 1fr;
  }

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

  .footer-brand {
    text-align: center;
  }

  .footer-brand-desc {
    margin: 0 auto;
  }

  .footer-logo {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 14px 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
  }

  #hero {
    padding: 100px 24px 56px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 48px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .hero-carousel {
    width: 100%;
    flex: none;
  }

  .phone-frame {
    max-width: 300px;
    margin: 0 auto;
  }

  #features,
  #how-it-works,
  #pricing,
  #contact {
    padding: 64px 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

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

  .steps-grid {
    display: none;
  }

  .steps-mobile {
    display: block;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #cta {
    padding: 72px 24px;
  }

  .cta-inner h2 {
    font-size: 30px;
  }

  .cta-inner p {
    font-size: 16px;
  }

  #footer {
    padding: 48px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .phone-frame {
    max-width: 260px;
  }

  .store-btn {
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
  }

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

  .hero-stats {
    gap: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

@media (min-width: 769px) and (max-width: 1100px) {
  .hero-inner {
    gap: 40px;
  }

  .phone-frame {
    max-width: 320px;
  }
}

/* ================================================================
   DYNAMIC FEATURE CARD BORDER COLOR ON HOVER
   ================================================================ */
.feature-card[data-color="#0284C7"]:hover { border-color: rgba(2,132,199,0.3); box-shadow: 0 20px 40px rgba(2,132,199,0.08); }
.feature-card[data-color="#F59E0B"]:hover { border-color: rgba(245,158,11,0.3); box-shadow: 0 20px 40px rgba(245,158,11,0.08); }
.feature-card[data-color="#10B981"]:hover { border-color: rgba(16,185,129,0.3); box-shadow: 0 20px 40px rgba(16,185,129,0.08); }
.feature-card[data-color="#8B5CF6"]:hover { border-color: rgba(139,92,246,0.3); box-shadow: 0 20px 40px rgba(139,92,246,0.08); }

/* ================================================================
   COUNTER ANIMATION FOR STATS
   ================================================================ */
.stat-chip {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

.stat-chip.visible {
  opacity: 1;
  transform: translateY(0);
}
