@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");
@import 'https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css';
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #1E293B;
  background-color: #FAFBFC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #1E293B;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
}

h2 {
  font-size: clamp(1.45rem, 2.9vw, 2.125rem);
}

h3 {
  font-size: clamp(1.05rem, 2.1vw, 1.5rem);
}

h4 {
  font-size: 1.0625rem;
}

p {
  margin-bottom: 0.625rem;
  color: #64748B;
}

a {
  color: #1E3A5F;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #2D4A6F;
}

img {
  max-width: 100%;
  height: auto;
}

.text-primary-dark {
  color: #0A1628 !important;
}

.text-primary {
  color: #1E3A5F !important;
}

.text-accent {
  color: #10B981 !important;
}

.text-cta {
  color: #F97316 !important;
}

.text-secondary {
  color: #64748B !important;
}

.text-light {
  color: #94A3B8 !important;
}

.bg-primary-dark {
  background-color: #0A1628 !important;
}

.bg-primary {
  background-color: #1E3A5F !important;
}

.bg-accent {
  background-color: #10B981 !important;
}

.bg-cta {
  background-color: #F97316 !important;
}

.bg-white-soft {
  background-color: #FAFBFC !important;
}

.bg-gray {
  background-color: #F1F5F9 !important;
}

.font-heading {
  font-family: "Poppins", sans-serif !important;
}

.font-body {
  font-family: "Inter", sans-serif !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-5 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-5 {
  padding: 1.5rem !important;
}

.lead {
  font-size: 1.0625rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1rem !important;
}

.fs-1 {
  font-size: 2rem !important;
}

.fs-2 {
  font-size: 1.75rem !important;
}

.fs-3 {
  font-size: 1.5rem !important;
}

.fs-4 {
  font-size: 1.25rem !important;
}

.fs-5 {
  font-size: 1rem !important;
}

.fs-6 {
  font-size: 0.875rem !important;
}

.display-1 {
  font-size: 4rem !important;
  line-height: 1.2 !important;
}

.display-2 {
  font-size: 3.5rem !important;
  line-height: 1.2 !important;
}

.display-3 {
  font-size: 3rem !important;
  line-height: 1.2 !important;
}

.display-4 {
  font-size: 2.5rem !important;
  line-height: 1.2 !important;
}

.section {
  padding: 3rem 0;
}
@media (max-width: 992px) {
  .section {
    padding: 2rem 0;
  }
}

.section-dark {
  background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
  color: #FFFFFF;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6 {
  color: #FFFFFF;
}
.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-gray {
  background-color: #F1F5F9;
}

.section-white {
  background-color: #FAFBFC;
}

.btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn:focus {
  box-shadow: none;
}

.btn-cta {
  background-color: #F97316;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}
.btn-cta:hover {
  background-color: #EA580C;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
}

.btn-outline-light {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}

.btn-outline-primary {
  background-color: transparent;
  color: #1E3A5F;
  border: 2px solid #1E3A5F;
}
.btn-outline-primary:hover {
  background-color: #1E3A5F;
  color: #FFFFFF;
}

.btn-white {
  background-color: #FFFFFF;
  color: #F97316;
  font-weight: 700;
}
.btn-white:hover {
  background-color: #F1F5F9;
  color: #EA580C;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.card {
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: #FFFFFF;
}
.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card-feature {
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}
.card-feature .icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(30, 58, 95, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.card-feature .icon-wrapper i {
  font-size: 1.375rem;
  color: #1E3A5F;
}
.card-feature h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}
.card-feature p {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.card-problem {
  padding: 1.5rem;
  text-align: center;
  border-left: 4px solid #F97316;
}
.card-problem .icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: rgba(249, 115, 22, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.card-problem .icon-wrapper i {
  font-size: 1.25rem;
  color: #F97316;
}
.card-problem h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
.card-problem p {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.card-plan {
  padding: 1.75rem;
  height: 100%;
  position: relative;
}
.card-plan.plan-recommended {
  border: 2px solid #F97316;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.card-plan.plan-recommended .badge-recommended {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F97316;
  color: #FFFFFF;
  padding: 0.3125rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-plan .plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card-plan .plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 1rem;
}
.card-plan .plan-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #64748B;
}
.card-plan .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.card-plan .plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.card-plan .plan-features li:last-child {
  border-bottom: none;
}
.card-plan .plan-features li i {
  color: #10B981;
  font-size: 1rem;
}
.card-plan .plan-features li span {
  font-size: 0.8125rem;
}

.card-testimonial {
  padding: 1.5rem;
  height: 100%;
}
.card-testimonial .testimonial-rating {
  color: #FBBF24;
  margin-bottom: 0.75rem;
}
.card-testimonial .testimonial-rating i {
  font-size: 0.875rem;
}
.card-testimonial .testimonial-text {
  font-size: 0.8125rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.card-testimonial .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.card-testimonial .testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  object-fit: cover;
}
.card-testimonial .testimonial-author .author-info h5 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.card-testimonial .testimonial-author .author-info p {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.card-income {
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
  color: #FFFFFF;
  border: none;
}
.card-income .income-clients {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
.card-income .income-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 0.5rem;
}
.card-income .income-details {
  font-size: 0.8125rem;
  opacity: 0.8;
  margin-bottom: 0;
}

.form-control {
  padding: 0.625rem 0.75rem;
  border: 1px solid #E2E8F0;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  border-color: #1E3A5F;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}
.form-control::placeholder {
  color: #94A3B8;
}

.form-label {
  font-weight: 500;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  color: #1E293B;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background-color: #0A1628;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.navbar.navbar-scrolled {
  background-color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}
.navbar.navbar-scrolled .navbar-brand {
  color: #0A1628;
}
.navbar.navbar-scrolled .nav-link {
  color: #1E293B;
}
.navbar.navbar-scrolled .nav-link:hover {
  color: #1E3A5F;
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}
.navbar-brand span {
  color: #F97316;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  color: rgba(255, 255, 255, 0.9);
}
.nav-link:hover {
  color: #FFFFFF;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
  display: flex;
  align-items: center;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(45, 74, 111, 0.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero-section .hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #FB923C;
  margin-bottom: 0.625rem;
}
.hero-section .hero-title {
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hero-section .hero-title .highlight {
  color: #10B981;
}
.hero-section .hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 540px;
}
.hero-section .hero-income {
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 1rem;
  padding: 0.75rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.hero-section .hero-income i {
  font-size: 1.25rem;
  color: #10B981;
}
.hero-section .hero-income span {
  color: #FFFFFF;
  font-weight: 600;
}
.hero-section .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.hero-section .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-section .hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-section .hero-trust .trust-item i {
  font-size: 1rem;
  color: #10B981;
}
.hero-section .hero-trust .trust-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 500;
}
.hero-section .hero-image {
  position: relative;
}
.hero-section .hero-image img {
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.hero-section .hero-image::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid #F97316;
  border-radius: 1.5rem;
  z-index: -1;
}
.hero-section .hero-longform {
  margin-bottom: 1.5rem;
}
.hero-section .hero-longform p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.hero-section .hero-longform p:last-child {
  margin-bottom: 0;
}

.stats-section {
  background-color: #0A1628;
  padding: 2.5rem 0;
}
.stats-section .stat-item {
  text-align: center;
}
.stats-section .stat-item .stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 0.375rem;
}
.stats-section .stat-item .stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-step {
  text-align: center;
  position: relative;
}
.process-step .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1E3A5F 0%, #0A1628 100%);
  color: #FFFFFF;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.process-step .step-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.process-step .step-content p {
  font-size: 0.8125rem;
  margin-bottom: 0;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #E2E8F0 0%, transparent 100%);
}
@media (max-width: 992px) {
  .process-step::after {
    display: none;
  }
}
.process-step:last-child::after {
  display: none;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.timeline-item .timeline-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-item .timeline-marker i {
  color: #10B981;
  font-size: 1.25rem;
}
.timeline-item .timeline-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.timeline-item .timeline-content p {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.guarantee-item {
  text-align: center;
  padding: 2rem;
}
.guarantee-item .guarantee-icon {
  width: 72px;
  height: 72px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.guarantee-item .guarantee-icon i {
  font-size: 2rem;
  color: #10B981;
}
.guarantee-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.guarantee-item p {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.urgency-section {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  padding: 4rem 0;
}
.urgency-section .urgency-title {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.urgency-section .urgency-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.urgency-section .urgency-progress {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  height: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.urgency-section .urgency-progress .progress-bar {
  background-color: #FFFFFF;
  height: 100%;
  border-radius: 9999px;
  transition: width 1s ease;
}
.urgency-section .urgency-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.urgency-section .urgency-stats .urgency-stat {
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-weight: 500;
}
.urgency-section .urgency-stats .urgency-stat i {
  margin-right: 0.5rem;
}

.footer {
  background-color: #0A1628;
  padding: 3rem 0 2rem;
}
.footer .footer-logo {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.footer .footer-logo span {
  color: #F97316;
}
.footer .footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 0.75rem;
}
.footer .footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
}
.footer .footer-links li a:hover {
  color: #FFFFFF;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}
.footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 992px) {
  .hero-section {
    padding: 5rem 0 3rem;
    text-align: center;
  }
  .hero-section .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section .hero-ctas {
    justify-content: center;
  }
  .hero-section .hero-trust {
    justify-content: center;
  }
  .hero-section .hero-image {
    margin-top: 3rem;
  }
  .hero-section .hero-image::after {
    display: none;
  }
  .process-step::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .stats-section .stat-item {
    margin-bottom: 1.5rem;
  }
}
.alert {
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}
.alert.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
}
.alert.alert-error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #DC2626;
}

/*# sourceMappingURL=style.css.map */
