:root {
  --primary-color: #22c55e;
  --primary-dark: #15803d;
  --primary-light: #86efac;
  --bg-primary: #ffffff;
  --bg-secondary: #f0fdf4;
  --bg-tertiary: #dcfce7;
  --text-primary: #1a2332;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --gradient-primary: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #f0fdf4 0%,
    #ffffff 50%,
    #f0fdf4 100%
  );
  --shadow-sm: 0 2px 8px rgba(34, 197, 94, 0.08);
  --shadow-md: 0 4px 16px rgba(34, 197, 94, 0.12);
  --shadow-lg: 0 8px 32px rgba(34, 197, 94, 0.16);
  --shadow-xl: 0 16px 48px rgba(34, 197, 94, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  transition: var(--transition-base);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}
.navbar-logo-dark {
  height: 40px;
  width: auto;
}
.nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  transition: var(--transition-fast);
}
.nav-link:hover {
  color: var(--primary-color) !important;
}
.navbar-toggler {
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-nav-cta {
  text-decoration: none;
  background: var(--gradient-primary);
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  padding: 96px 0 60px;
  overflow: hidden;
  background: var(--gradient-hero);
}
.hero-section .row {
  align-items: center;
}
.hero-bg-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-hero-primary {
  text-decoration: none;
  background: var(--gradient-primary);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
  border: none;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: white;
}
.btn-whatsapp {
  text-decoration: none;
  background: #25d366;
  color: white;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  background: #1ebe59;
  color: white;
}
/* Feature Icon Row */
.hero-feature-row {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.hero-feature-item i {
  font-size: 28px;
  color: var(--primary-color);
  background: rgba(34, 197, 94, 0.1);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 197, 94, 0.18);
}
.hero-feature-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Trust Line */
.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 20px;
}
.hero-trust-line i {
  font-size: 16px;
  color: var(--primary-color);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  height: 100%;
}
.hero-app-image {
  max-width: 680px;
  height: auto;
  min-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(34, 197, 94, 0.18));
}

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

/* ===== TRUSTED BY ===== */
.trusted-section {
  padding: 32px 0;
  background: white;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.trusted-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  justify-content: center;
}
.trusted-type-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid #e2e8f0;
}
.trusted-type-item:last-child {
  border-right: none;
}
.trusted-type-item i {
  font-size: 22px;
  color: #94a3b8;
}

/* ===== SECTION SHARED STYLES ===== */
.section-label {
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-title {
  font-family: "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-description {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 48px;
}

/* ===== EVERYTHING YOU NEED ===== */
.features-section {
  padding: 96px 0;
  background: var(--bg-primary);
}
.panel-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.panel-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.panel-card--green { background: #f0fdf4; }
.panel-card--blue  { background: #eff6ff; }

.panel-card-image {
  flex-shrink: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.panel-card-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  display: block;
}

.panel-card-body {
  flex: 1;
  padding: 32px 28px 32px 8px;
}
.panel-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.panel-card-icon--green { background: rgba(34,197,94,0.15); }
.panel-card-icon--blue  { background: rgba(59,130,246,0.15); }
.panel-card-icon--green i { font-size: 24px; color: var(--primary-color); }
.panel-card-icon--blue  i { font-size: 24px; color: #3b82f6; }

.panel-card-title {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.panel-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.panel-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-weight: 500;
}
.panel-card--green .panel-check-list li i { color: var(--primary-color); font-size: 16px; flex-shrink: 0; }
.panel-card--blue  .panel-check-list li i { color: #3b82f6; font-size: 16px; flex-shrink: 0; }

/* ===== POWERFUL FEATURES ===== */
.powerful-section {
  padding: 56px 0;
  background: white;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.why-choose-row {
  display: flex;
  align-items: center;
  gap: 48px;
}
.why-choose-left {
  flex-shrink: 0;
  min-width: 260px;
  max-width: 300px;
}
.powerful-tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.powerful-title {
  font-family: "Outfit", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0;
}
.why-choose-right {
  display: flex;
  flex: 1;
  gap: 8px;
  flex-wrap: wrap;
}
.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 140px;
}
.why-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 197, 94, 0.18);
}
.why-feature-icon i {
  font-size: 18px;
  color: var(--primary-color);
}
.why-feature-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 3px;
}
.why-feature-item p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* ===== 3 STEPS ===== */
.steps-section {
  padding: 72px 0;
  background: var(--bg-primary);
}
.steps-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}
.steps-left {
  flex: 1;
}
.steps-title {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 8px 0 32px;
  line-height: 1.2;
}
.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.step-item {
  flex: 1;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid #e9eef6;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.step-icon-num {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.step-circle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-circle i { font-size: 22px; color: white; }
.step-circle--green  { background: #22c55e; }
.step-circle--blue   { background: #60a5fa; }
.step-circle--purple { background: #a78bfa; }
.step-num {
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #d1d9e6;
  line-height: 1;
}
.step-item h3 {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.step-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.step-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 4px;
  margin-top: 0;
  color: #93c5fd;
}
.step-arrow-line {
  display: block;
  width: 28px;
  border-top: 2px dashed #93c5fd;
}
.step-arrow i {
  font-size: 18px;
  margin-left: -4px;
}
.steps-right {
  flex-shrink: 0;
  width: 280px;
}
.steps-rocket-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== STATS ===== */
.stats-section {
  padding: 48px 0;
  background: var(--bg-primary);
}
.stats-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  border-radius: 24px;
  padding: 40px 48px;
  gap: 0;
  overflow: hidden;
}
.stats-left {
  display: flex;
  gap: 40px;
  flex: 1;
}
.stat-item {
  text-align: left;
  color: white;
}
.stat-item i {
  font-size: 26px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
  display: block;
}
.stat-item h3 {
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1;
}
.stat-item p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
  font-weight: 500;
}
.stats-divider {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.25);
  margin: 0 48px;
  flex-shrink: 0;
}
.stats-testimonial {
  flex: 1;
  color: white;
}
.testimonial-quote {
  font-size: 56px;
  line-height: 0.6;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-avatar i {
  font-size: 20px;
  color: white;
}
.testimonial-author h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin: 0 0 2px;
}
.testimonial-author span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* ===== DEMO MODAL ===== */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.demo-modal.hidden { display: none; }
.demo-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,15,25,0.75);
  backdrop-filter: blur(6px);
  z-index: 1;
}
.demo-modal-card {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
}
.demo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.demo-modal-close:hover { background: #f1f5f9; color: var(--text-primary); }
.demo-modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.demo-modal-icon {
  width: 56px;
  height: 56px;
  background: rgba(34,197,94,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.demo-modal-icon i { font-size: 26px; color: var(--primary-color); }
.demo-modal-header h3 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.demo-modal-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}
.demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}
.form-input:focus {
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 16px;
  color: white;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  margin-top: 8px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ===== MODAL ===== */
#contact-thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#contact-thank-you-modal.hidden {
  display: none;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 25, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1;
}
.modal-content-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  background: white;
  border-radius: 36px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}
.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary-color);
  font-size: 40px;
}
.modal-content-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.modal-content-card > p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.whatsapp-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}
.whatsapp-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #25d366;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}
.btn-modal-close {
  width: 100%;
  background: var(--text-primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-modal-close:hover {
  background: #1e293b;
}
.rotate-infinite {
  animation: rotate 1s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== CTA BANNER ===== */
.cta-banner-section {
  padding: 48px 0;
  background: var(--bg-primary);
}
.cta-banner-card {
  position: relative;
  background: #f0fdf4;
  border-radius: 24px;
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 0 48px 0 0;
  min-height: 180px;
  clip-path: inset(0 0 0 0 round 24px);
}
.cta-banner-img {
  flex-shrink: 0;
  width: 240px;
  align-self: center;
}
.cta-banner-img img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-banner-text {
  flex: 1;
  padding: 36px 32px 36px 36px;
}
.cta-banner-text h2 {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-banner-text p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.cta-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-cta-primary {
  text-decoration: none;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: white; }
.btn-cta-outline {
  text-decoration: none;
  background: white;
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e2e8f0;
  transition: var(--transition-base);
}
.btn-cta-outline:hover { border-color: var(--primary-color); color: var(--primary-dark); }
.cta-banner-features {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 32px;
  border-left: 1px solid rgba(34,197,94,0.2);
}
.cta-banner-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.cta-banner-feat i {
  font-size: 18px;
  color: var(--primary-color);
  background: rgba(34,197,94,0.1);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-leaf {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(34,197,94,0.15);
  border-radius: 50% 0;
  pointer-events: none;
}
.cta-leaf-tl { top: 0; right: 260px; transform: rotate(180deg); }
.cta-leaf-br { bottom: 0; right: 0; border-radius: 50% 0; opacity: 0.5; }

@media (max-width: 991px) {
  .cta-banner-card { flex-wrap: wrap; padding: 28px 24px; gap: 20px; }
  .cta-banner-img { width: 140px; }
  .cta-banner-text { padding: 0; flex: 1 1 200px; }
  .cta-banner-features { border-left: none; border-top: 1px solid rgba(34,197,94,0.2); padding: 16px 0 0; width: 100%; flex-direction: row; flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 576px) {
  .cta-banner-img { display: none; }
  .cta-banner-text h2 { font-size: 20px; }
}

/* ===== FOOTER ===== */
.footer {
  background: #1a2332;
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
}
.footer-logo {
  height: 40px;
  width: auto;
}
.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 14px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition-base);
}
.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}
.footer-title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  font-family: "Outfit", sans-serif;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
}
.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}
.footer-links.address-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-links.address-list i {
  color: var(--primary-color);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-links.address-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-links.address-list a:hover {
  color: var(--primary-light);
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  text-decoration: none;
}
.whatsapp-float i {
  font-size: 26px;
  color: white;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-app-image {
    max-width: 560px;
  }
}
@media (max-width: 991px) {
  .hero-section {
    padding: 80px 0 48px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-image-wrapper {
    margin-top: 40px;
  }
  .hero-app-image {
    max-width: 100%;
    min-height: unset;
  }
  .section-title {
    font-size: 34px;
  }
  .panel-cards-grid {
    grid-template-columns: 1fr;
  }
  .panel-card {
    flex-direction: column;
  }
  .panel-card-image {
    width: 100%;
    padding: 24px 24px 0;
  }
  .panel-card-body {
    padding: 20px 24px 28px;
  }
  .steps-layout {
    flex-direction: column;
  }
  .steps-right {
    width: 220px;
    margin: 0 auto;
  }
  .steps-row {
    flex-direction: column;
    gap: 20px;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
    padding: 0;
  }
  .stats-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
  }
  .stats-left {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .stats-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .stat-item {
    text-align: center;
    min-width: 80px;
  }
  .stat-item i { display: block; margin: 0 auto 8px; }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 34px;
  }
  .section-title {
    font-size: 28px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn-hero-primary,
  .btn-whatsapp {
    justify-content: center;
  }
  .hero-feature-row {
    gap: 16px;
  }
  .hero-feature-item i {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .stats-card {
    padding: 28px 20px;
  }
  .stat-item h3 {
    font-size: 28px;
  }
  .demo-modal-card {
    padding: 28px 20px;
  }
  .demo-form-row {
    grid-template-columns: 1fr;
  }
  .features-section,
  .steps-section {
    padding: 64px 0;
  }
  .why-choose-row {
    flex-direction: column;
    gap: 32px;
  }
  .why-choose-left {
    max-width: 100%;
    text-align: center;
  }
  .why-choose-right {
    justify-content: center;
  }
  .cta-text-side h2 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trusted-logos {
    gap: 10px;
  }
  .hero-feature-row {
    gap: 12px;
  }
  .hero-feature-item span {
    font-size: 11px;
  }
}
