body {
  color: #1e293b;
  scroll-behavior: smooth;
}

.btn {
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.2)));
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.btn:hover::after {
  opacity: 1;
}
.btn.btn-primary-new {
  background: linear-gradient(135deg, #0056b3, rgb(0, 61.4972067039, 128));
  border: none;
  -webkit-box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
          box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}
.btn.btn-primary-new:hover {
  -webkit-box-shadow: 0 6px 15px rgba(0, 86, 179, 0.3);
          box-shadow: 0 6px 15px rgba(0, 86, 179, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn.btn-outline-secondary {
  border: 2px solid #64748b;
  color: #1e293b;
}
.btn.btn-outline-secondary:hover {
  background-color: #f1f5f9;
  border-color: #1e293b;
}
.btn.btn-white {
  background: white;
  color: #0056b3;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.btn.btn-white:hover {
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.1), transparent 70%);
  z-index: 0;
  opacity: 0.7;
}
.hero-section h1 {
  font-size: clamp(2.2rem, 2vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-section h1 .text-blue {
  background: linear-gradient(135deg, #0056b3, rgb(0.5, 122.7737430168, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-section .lead {
  font-size: clamp(1rem, 2vw + 1rem, 1.25rem);
  line-height: 1.6;
}
.hero-section .text-highlight {
  background: linear-gradient(120deg, rgba(0, 86, 179, 0.15) 0%, rgba(0, 86, 179, 0.15) 100%);
  padding: 0.1em 0.2em;
  border-radius: 3px;
  font-weight: 500;
}
.hero-section .hero-image {
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  -webkit-transform: perspective(1000px) rotateY(-5deg);
          transform: perspective(1000px) rotateY(-5deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hero-section .hero-image:hover {
  -webkit-transform: perspective(1000px) rotateY(0deg);
          transform: perspective(1000px) rotateY(0deg);
}

.success-metrics {
  margin-top: 3rem;
}

.success-metric {
  position: relative;
  border-left: 4px solid #0056b3;
  padding-left: 1.5rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.success-metric:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.success-metric .revenue-number {
  font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #0056b3, rgb(0.5, 122.7737430168, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.success-metric p {
  color: #64748b;
  font-weight: 500;
}

.testimonial-section {
  position: relative;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: #f1f5f9;
  z-index: -1;
}

.testimonial-card {
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  background: white;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(0, 86, 179, 0.1);
  line-height: 1;
}
.testimonial-card .testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
}
.testimonial-card .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-card h6 {
  font-weight: 700;
}
.testimonial-card p {
  font-style: italic;
  color: #64748b;
  line-height: 1.6;
}

.methodology-section {
  background: #f8fafc;
  position: relative;
}
.methodology-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}
.methodology-section .methodology-container {
  position: relative;
  z-index: 1;
}

.methodology-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 2rem;
}
.methodology-step .methodology-number {
  background: linear-gradient(135deg, #0056b3, rgb(0, 61.4972067039, 128));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 4px 8px rgba(0, 86, 179, 0.2);
          box-shadow: 0 4px 8px rgba(0, 86, 179, 0.2);
}
.methodology-step h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.methodology-step p {
  color: #64748b;
  line-height: 1.6;
}

.revenue-models-section {
  position: relative;
}
.revenue-models-section .section-title {
  position: relative;
}
.revenue-models-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#0056b3), to(#00d084));
  background: linear-gradient(90deg, #0056b3, #00d084);
  border-radius: 2px;
}

.method-card {
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: white;
}
.method-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}
.method-card:hover .method-header {
  background-position: right center;
}
.method-card .method-header {
  background: -webkit-gradient(linear, left top, right top, from(#0056b3), to(rgb(0.5, 122.7737430168, 255)));
  background: linear-gradient(90deg, #0056b3, rgb(0.5, 122.7737430168, 255));
  background-size: 200% auto;
  padding: 2rem;
  color: white;
  -webkit-transition: background-position 0.3s ease;
  transition: background-position 0.3s ease;
}
.method-card .method-body {
  padding: 2rem;
}
.method-card .recurring-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 86, 179, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.5rem;
}
.method-card .recurring-icon i {
  font-size: 2rem;
  color: #0056b3;
}
.method-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.method-card .feature-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1rem;
}
.method-card .feature-list li i {
  color: #00d084;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.calculator-section {
  background: #f1f5f9;
  position: relative;
}
.calculator-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.05), transparent);
  z-index: 0;
}

.calculator-container {
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  background: white;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.calculator-container .calculator-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #f1f5f9;
}
.calculator-container .calculator-header h3 {
  font-weight: 700;
  margin-bottom: 0;
}
.calculator-container .calculator-body {
  padding: 2rem;
}
.calculator-container .calculator-slider-container {
  margin-bottom: 2rem;
}
.calculator-container .calculator-slider-container label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.calculator-container .calculator-slider-container label .badge {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}
.calculator-container .calculator-slider-container .form-range {
  height: 8px;
  border-radius: 4px;
}
.calculator-container .calculator-slider-container .form-range::-webkit-slider-thumb {
  background: #0056b3;
  -webkit-box-shadow: 0 2px 5px rgba(0, 86, 179, 0.3);
          box-shadow: 0 2px 5px rgba(0, 86, 179, 0.3);
  width: 20px;
  height: 20px;
}
.calculator-container .form-check-input {
  width: 22px;
  height: 22px;
  margin-top: 0;
}
.calculator-container .form-check-input:checked {
  background-color: #0056b3;
  border-color: #0056b3;
}

.result-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}
.result-box h5 {
  font-weight: 700;
  color: #0056b3;
  position: relative;
  padding-bottom: 0.75rem;
}
.result-box h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #0056b3;
  border-radius: 2px;
}
.result-box .revenue-value {
  font-weight: 800;
  color: #0056b3;
}

.features-section {
  position: relative;
}
.features-section .section-title {
  margin-bottom: 3rem;
}

.feature-card {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2rem;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: white;
}
.feature-card:hover {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  border-color: transparent;
}
.feature-card:hover .feature-icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-color: rgba(0, 86, 179, 0.1);
}
.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #f8fafc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.feature-card .feature-icon i {
  font-size: 1.75rem;
  color: #0056b3;
}
.feature-card h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

.partner-program {
  background: linear-gradient(135deg, #10213C 0%, #0056b3 100%);
  position: relative;
  overflow: hidden;
}
.partner-program::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  z-index: 0;
}
.partner-program::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
  z-index: 0;
}
.partner-program .partner-content {
  position: relative;
  z-index: 1;
}
.partner-program .badge {
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.partner-program h2 {
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.partner-program .benefit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 2rem;
}
.partner-program .benefit-item .benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.partner-program .benefit-item .benefit-icon i {
  color: #0056b3;
}
.partner-program .benefit-item h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.partner-program .benefit-item p {
  margin-bottom: 0;
  opacity: 0.8;
}

.partner-testimonials {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  -webkit-box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}
.partner-testimonials h3 {
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}
.partner-testimonials h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #0056b3;
  border-radius: 2px;
}
.partner-testimonials .partner-testimonial {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #f1f5f9;
}
.partner-testimonials .partner-testimonial:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.partner-testimonials .partner-testimonial .partner-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
.partner-testimonials .partner-testimonial .partner-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid white;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.partner-testimonials .partner-testimonial .partner-info .partner-details {
  margin-left: 1rem;
}
.partner-testimonials .partner-testimonial .partner-info .partner-details h5 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.partner-testimonials .partner-testimonial .partner-info .partner-details p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0;
}
.partner-testimonials .partner-testimonial p {
  font-style: italic;
  line-height: 1.6;
}

.pricing-section {
  position: relative;
}
.pricing-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #f1f5f9;
  z-index: -1;
}

.pricing-card {
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  position: relative;
}
.pricing-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}
.pricing-card .pricing-header {
  padding: 2rem;
  border-bottom: 1px solid #f1f5f9;
}
.pricing-card .pricing-header h3 {
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.pricing-card .pricing-header p {
  color: #64748b;
  margin-bottom: 1.5rem;
}
.pricing-card .pricing-header .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.pricing-card .pricing-header .price .amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.pricing-card .pricing-header .price .period {
  color: #64748b;
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
}
.pricing-card .pricing-body {
  padding: 2rem;
}
.pricing-card .pricing-body ul {
  margin-bottom: 2rem;
}
.pricing-card .pricing-body ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1rem;
}
.pricing-card .pricing-body ul li i {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}
.pricing-card .pricing-body ul li i.text-success {
  color: #00d084 !important;
}
.pricing-card .pricing-body ul li.disabled {
  color: #64748b;
}
.pricing-card.pricing-popular {
  position: relative;
  border: 2px solid #0056b3;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  z-index: 2;
}
.pricing-card.pricing-popular .popular-badge {
  position: absolute;
  top: 10px;
  right: 3px;
  background-color: #0056b3;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-gradient {
  background: linear-gradient(135deg, #10213C 0%, #0056b3 100%);
  position: relative;
  overflow: hidden;
}
.cta-gradient::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  z-index: 0;
}
.cta-gradient .container {
  position: relative;
  z-index: 1;
}
.cta-gradient h2 {
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.cta-gradient .lead {
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-gradient .btn-white {
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 30px;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cta-gradient .btn-white:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}
.cta-gradient .small {
  opacity: 0.8;
}

section {
  position: relative;
  margin: 0;
}
section:not(:last-child) {
  margin-bottom: 0;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

footer {
  margin-top: 0;
}

@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section .hero-image {
    margin-top: 2rem;
    -webkit-transform: none;
            transform: none;
  }
  .success-metric {
    margin-bottom: 2rem;
  }
  .methodology-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .methodology-container img {
    margin-bottom: 2rem;
  }
  .method-card {
    margin-bottom: 2rem;
  }
  .calculator-container {
    padding: 1.5rem;
  }
  .result-box {
    margin-bottom: 1.5rem;
  }
  .partner-program .partner-content {
    margin-bottom: 2rem;
  }
  .pricing-card {
    margin-bottom: 2rem;
  }
  .pricing-card.pricing-popular {
    -webkit-transform: none;
            transform: none;
    margin-top: 2.5rem;
  }
  .pricing-card.pricing-popular .popular-badge {
    top: -15px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
  .hero-section .cta-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .success-metric {
    text-align: center;
    border-left: none;
    border-bottom: 4px solid #0056b3;
    padding-left: 0;
    padding-bottom: 1rem;
  }
  .testimonial-card {
    margin-bottom: 1.5rem;
  }
  .methodology-step {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .methodology-step .methodology-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .partner-program .benefit-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .partner-program .benefit-item .benefit-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.sticky-nav {
  display: none;
}
@media (max-width: 768px) {
  .sticky-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.75rem;
    -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .sticky-nav .nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .sticky-nav .nav-items .nav-item {
    text-align: center;
    font-size: 0.8rem;
    color: #1e293b;
    text-decoration: none;
  }
  .sticky-nav .nav-items .nav-item i {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.2rem;
    color: #0056b3;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.animate-in {
  -webkit-animation: fadeIn 0.6s ease forwards;
          animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}
.animate-in:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.animate-in:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.animate-in:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.animate-in:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.animate-in:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.animate-in:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.animate-in:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.animate-in:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.animate-in:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.animate-in:nth-child(10) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.coaching-section {
  position: relative;
  overflow: hidden;
}
.coaching-section::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.1), transparent 70%);
  z-index: 0;
  opacity: 0.5;
}

.coaching-image-container {
  position: relative;
}
.coaching-image-container .coaching-image {
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.coaching-image-container .coaching-image:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.coaching-image-container .coaching-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(135deg, #0056b3, rgb(0, 49.2458100559, 102.5));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}

.coaching-features .coaching-feature {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.coaching-features .coaching-feature:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.coaching-features .coaching-feature .feature-icon-container {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: rgba(0, 86, 179, 0.1);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.coaching-features .coaching-feature .feature-icon-container i {
  font-size: 1.5rem;
}
.coaching-features .coaching-feature h4 {
  font-weight: 600;
}

.coaching-pricing {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.coaching-pricing h3 {
  font-weight: 700;
  color: #0056b3;
}
.coaching-pricing .coaching-guarantee {
  background-color: rgba(0, 208, 132, 0.1);
  border-left: 3px solid #00d084;
}

@media (max-width: 992px) {
  .coaching-image-container {
    margin-bottom: 2rem;
  }
  .coaching-image-container .coaching-badge {
    right: 50%;
    -webkit-transform: translateX(50%) rotate(5deg);
            transform: translateX(50%) rotate(5deg);
  }
  .coaching-pricing .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .coaching-pricing .d-flex .btn {
    margin-top: 1rem;
    width: 100%;
  }
}
.premium-coaching-teaser {
  background: linear-gradient(135deg, #0a1828 0%, #0d2e5a 100%);
  position: relative;
  overflow: hidden;
}
.premium-coaching-teaser::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  z-index: 0;
}
.premium-coaching-teaser::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
  z-index: 0;
}
.premium-coaching-teaser .container {
  position: relative;
  z-index: 1;
}
.premium-coaching-teaser .text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.premium-coaching-teaser .premium-features .bi {
  font-size: 1.2rem;
}
.premium-coaching-teaser .btn-white {
  background: white;
  color: #10213C;
  border: none;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.premium-coaching-teaser .btn-white:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.premium-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.premium-card:hover {
  -webkit-transform: rotate(0deg) translateY(-10px);
          transform: rotate(0deg) translateY(-10px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.premium-card .premium-card-header {
  background: #f8fafc;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.premium-card .premium-card-header h3 {
  font-weight: 700;
  color: #10213C;
}
.premium-card .premium-card-body {
  padding: 1.5rem;
}
.premium-card .premium-card-body .premium-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}
.premium-card .premium-card-body .premium-price .price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10213C;
}
.premium-card .premium-card-body .premium-price .price-period {
  color: #64748b;
}
.premium-card .premium-card-body .premium-guarantee {
  background: rgba(0, 208, 132, 0.1);
  border-radius: 8px;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
}
.premium-card .premium-card-body .premium-guarantee i {
  font-size: 1.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.premium-card .premium-card-footer {
  padding: 1.5rem;
  background: #f8fafc;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .premium-card {
    -webkit-transform: none;
            transform: none;
    margin-top: 2rem;
  }
  .premium-card:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.bg-white.rounded-circle {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50% !important;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.bg-white.rounded-circle .bi-check-lg {
  font-size: 1.5rem;
  line-height: 1;
}

.d-flex.align-items-start .bg-white.rounded-circle {
  margin-top: 0 !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/*# sourceMappingURL=freelancers-agencies.css.map */
