* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #000000;
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #055924;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #055924;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
  width: 100%;
}

.nav-links>li>a.active {
  color: #055924;
}

.contact-btn {
  background-color: #055924;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #044020;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
}

.contact-btn .icon-label {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
  background-size: cover;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #ffffff;
  animation: fadeInLeft 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: slideInUp30 1s ease-out 0.3s both;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  animation: slideInUp30 1s ease-out 0.6s both;
}

.cta-button {
  display: inline-block;
  background: #ffffff;
  color: #055924;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  background-color: #f8f9fa;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 89, 36, 0.1) 0%, transparent 50%);
  opacity: 0;
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

.cta-button:hover::before {
  opacity: 1;
}

.hero-image {
  text-align: center;
  animation: fadeInRight 1s ease-out;
}

.hero-image-placeholder {
  width: 100%;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  animation: float20 3s ease-in-out infinite;
  text-align: center;
  line-height: 1.4;
}

/* ===== CLIENT STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  padding: 4rem 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="50" fill="rgba(255,255,255,0.05)"/><circle cx="900" cy="200" r="80" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
}

.block-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp30 0.8s ease-out forwards;
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  display: block;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
  color: #ffffff;
}

/* ===== YOUR FINANCIAL SUCCESS PARTNER SECTION ===== */
.benefits-section {
  background: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* 3D Background Elements */
.benefits-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,
      rgba(5, 89, 36, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float20 6s ease-in-out infinite;
}

.benefits-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(5, 89, 36, 0.05) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float20 8s ease-in-out infinite reverse;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.block-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}


.block-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}

.block-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #e9ecef;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp30 0.8s ease-out forwards;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* 3D Card Effects */
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(5, 89, 36, 0.02) 0%,
      rgba(5, 89, 36, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(5, 89, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: #055924;
}

.benefit-card:hover::before {
  opacity: 1;
}

/* Icon Styling */
.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  box-shadow: 0 8px 20px rgba(5, 89, 36, 0.3);
}

.benefit-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%);
  border-radius: 50%;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(5, 89, 36, 0.4);
}

.benefit-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.benefit-card:hover .benefit-title {
  color: #055924;
}

.benefit-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  position: relative;
  z-index: 2;
}

/* ===== OUR SERVICES INCLUDE SECTION ===== */
.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* 3D Background Pattern */
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%,
      rgba(5, 89, 36, 0.05) 0%,
      transparent 50%),
    radial-gradient(circle at 75% 75%,
      rgba(5, 89, 36, 0.03) 0%,
      transparent 50%);
  background-size: 400px 400px;
  animation: backgroundFloat 20s ease-in-out infinite;
}

.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-content {
  order: 1;
}

.services-image-container {
  order: 2;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
  position: relative;
}

.services-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #055924, #077230);
  border-radius: 2px;
}

/* Enhanced Checkmark List */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.services-list li {
  position: relative;
  padding: 0.75rem 1rem 0.75rem 3rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(5, 89, 36, 0.1);
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease-out forwards;
}

.services-list li:nth-child(1) {
  animation-delay: 0.1s;
}

.services-list li:nth-child(2) {
  animation-delay: 0.2s;
}

.services-list li:nth-child(3) {
  animation-delay: 0.3s;
}

.services-list li:nth-child(4) {
  animation-delay: 0.4s;
}

.services-list li:nth-child(5) {
  animation-delay: 0.5s;
}

.services-list li:nth-child(6) {
  animation-delay: 0.6s;
}

.services-list li:nth-child(7) {
  animation-delay: 0.7s;
}

.services-list li:nth-child(8) {
  animation-delay: 0.8s;
}

.services-list li:nth-child(9) {
  animation-delay: 0.9s;
}

.services-list li:nth-child(10) {
  animation-delay: 1s;
}

.services-list li:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(5, 89, 36, 0.15);
  border-color: #055924;
}

.services-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  color: #055924;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #055924, #077230);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-list li:hover::before {
  transform: scale(1.3) rotate(10deg);
}

/* Service Image */
.service-image {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 3px solid #055924;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #055924;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  font-size: 1.1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(5, 89, 36, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(5, 89, 36, 0.05) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 12px 25px rgba(5, 89, 36, 0.2);
}

.service-image:hover::before {
  opacity: 1;
}

/* ===== TESTIMONIALS SECTION ONLY ===== */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* 3D Background Elements */
.testimonials-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(5, 89, 36, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float30 8s ease-in-out infinite;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(5, 89, 36, 0.05) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float30 12s ease-in-out infinite reverse;
}

/* Testimonials Carousel */
.testimonials-carousel {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 1rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(5, 89, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid #e9ecef;
  border-left: 6px solid #055924;
  position: relative;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(5, 89, 36, 0.02) 0%,
      rgba(5, 89, 36, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2), 0 20px 40px rgba(5, 89, 36, 0.15);
  border-color: #055924;
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Quote Mark */
.quote-mark {
  margin-bottom: 1.5rem;
  animation: scaleIn 0.6s ease-out 0.5s both;
}

.quote-icon {
  font-size: 3rem;
  color: #055924;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  transform: scale(1.1);
  opacity: 1;
}

/* Testimonial Quote */
.testimonial-quote {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #000000;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* Author Info */
.testimonial-author {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.author-image {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(5, 89, 36, 0.3);
}

.testimonial-card:hover .author-image {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 12px 30px rgba(5, 89, 36, 0.4);
}

.author-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.25rem;
}

.author-title {
  color: #666666;
  font-size: 1rem;
  font-weight: 500;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #055924;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #055924;
  font-size: 1.2rem;
  font-weight: bold;
}

.carousel-nav:hover {
  background: #055924;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 6px;
}

.carousel-next {
  right: 6px;
}

/* Carousel Navigation Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #e9ecef;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.dot.active {
  background-color: #055924;
  transform: scale(1.3);
  box-shadow: 0 4px 12px rgba(5, 89, 36, 0.3);
}

.dot:hover {
  background-color: #055924;
  opacity: 0.7;
  transform: scale(1.2);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* 3D Background Elements */
.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%),
    radial-gradient(circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%);
  background-size: 600px 600px, 800px 800px, 400px 400px;
  animation: backgroundFloatV2 25s ease-in-out infinite;
}

.text-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.6s ease-out;
}

/* Process Steps Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: scaleInUp 0.8s ease-out forwards;
  z-index: 1;
}

.process-step:nth-child(1) {
  animation-delay: 0.2s;
}

.process-step:nth-child(2) {
  animation-delay: 0.4s;
}

.process-step:nth-child(3) {
  animation-delay: 0.6s;
}

.process-step:nth-child(4) {
  animation-delay: 0.8s;
}

/* 3D Hover Effects */
.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 15px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  z-index: 10;
}

.process-step:hover::before {
  opacity: 1;
}

/* Step Numbers */
.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.1) 100%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.2) 100%);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Step Icons */
.step-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.process-step:hover .step-icon {
  transform: scale(1.05) rotate(-3deg);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.process-step:hover .step-title {
  transform: translateY(-2px);
}

.step-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* CTA Section */
.cta-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  margin-top: 4rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1.2s ease-out 1s both;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== YOU HAVE TWO OPTIONS SECTION ===== */
.options-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* 3D Background Elements */
.options-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(220, 53, 69, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float30 10s ease-in-out infinite;
}

.options-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(5, 89, 36, 0.06) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float30 12s ease-in-out infinite reverse;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.main-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #dc3545, #055924);
  border-radius: 2px;
}

/* Options Container */
.options-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

/* Option Cards */
.option-card {
  padding: 3rem 2.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp50 1s ease-out forwards;
}

.option-card:nth-child(1) {
  animation-delay: 0.2s;
}

.option-card:nth-child(2) {
  animation-delay: 0.4s;
}

/* Option 1 - Without Us (Danger/Warning Theme) */
.option-without {
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  border: 3px solid #dc3545;
  box-shadow: 0 20px 40px rgba(220, 53, 69, 0.15),
    0 8px 20px rgba(220, 53, 69, 0.1);
}

.option-without::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(220, 53, 69, 0.03) 0%,
      rgba(220, 53, 69, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.option-without:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(220, 53, 69, 0.2),
    0 15px 30px rgba(220, 53, 69, 0.15);
  border-color: #b02a37;
}

.option-without:hover::before {
  opacity: 1;
}

/* Option 2 - With Us (Success/Safety Theme) */
.option-with {
  background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
  border: 3px solid #055924;
  box-shadow: 0 20px 40px rgba(5, 89, 36, 0.15), 0 8px 20px rgba(5, 89, 36, 0.1);
}

.option-with::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(5, 89, 36, 0.03) 0%,
      rgba(5, 89, 36, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.option-with:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(5, 89, 36, 0.2),
    0 15px 30px rgba(5, 89, 36, 0.15);
  border-color: #044020;
}

.option-with:hover::before {
  opacity: 1;
}

/* Option Headers */
.option-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.option-number {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.option-without .option-number {
  color: #dc3545;
}

.option-with .option-number {
  color: #055924;
}

.option-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.option-without .option-title {
  color: #dc3545;
}

.option-with .option-title {
  color: #055924;
}

.option-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
}

.option-without .option-subtitle {
  color: #721c24;
}

.option-with .option-subtitle {
  color: #044020;
}

/* Option Content */
.option-content {
  position: relative;
  z-index: 2;
}

.consequences-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consequences-list li {
  padding: 0.75rem 0;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 2.5rem;
  transition: all 0.3s ease;
}

.consequences-list li:hover {
  transform: translateX(12px) scale(1.02);
}

/* Without Us - Warning Icons */
.option-without .consequences-list li::before {
  content: "⚠️";
  position: absolute;
  /* left: 0.75rem; */
  left: 0.25rem;
  top: 0.75rem;
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.option-without .consequences-list li {
  background: rgba(220, 53, 69, 0.05);
  border-left: 4px solid #dc3545;
  color: #721c24;
}

.option-without .consequences-list li:hover {
  background: rgba(220, 53, 69, 0.1);
  transform: translateX(8px);
}

/* With Us - Success Icons */
.option-with .consequences-list li::before {
  content: "✅";
  position: absolute;
  /* left: 0.75rem; */
  left: 0.25rem;
  top: 0.75rem;
  font-size: 1.2rem;
  animation: bounce5 2s infinite;
}

.option-with .consequences-list li {
  background: rgba(5, 89, 36, 0.05);
  border-left: 4px solid #055924;
  color: #044020;
}

.option-with .consequences-list li:hover {
  background: rgba(5, 89, 36, 0.1);
  transform: translateX(8px);
}

/* CTA Button */
.option-cta {
  margin-top: 2rem;
  text-align: center;
}

.option-with .cta-button {
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
}

.option-with .cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(5, 89, 36, 0.4);
}

/* ===== FINAL CTA FOOTER SECTION ===== */
.final-cta-footer {
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* 3D Background Elements */
.final-cta-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.08)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
  background-size: cover;
}

.final-cta-footer::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: float30 8s ease-in-out infinite;
}

.cta-footer-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}

.footer-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.footer-button-container {
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

.footer-btn {
  display: inline-block;
  background: #ffffff;
  color: #055924;
  padding: 1.5rem 4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.footer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 89, 36, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.footer-btn:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-btn:hover::before {
  opacity: 1;
}

.footer-btn:active {
  transform: translateY(-4px) scale(1.05);
}

.footer-guarantee {
  animation: fadeInUp 1.4s ease-out 0.6s both;
}

.footer-guarantee p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Go to Top Button */
#go-to-top {
  position: fixed;
  bottom: 30px;
  right: 95px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #055924 0%, #077230 100%);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(5, 89, 36, 0.3);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}

#go-to-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#go-to-top img {
  width: 24px;
  height: 24px;
}

/* WhatsApp Button */
#whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}

#whatsapp-button img {
  width: 28px;
  height: 28px;
}

#whatsapp-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Floating WhatsApp Icon Animation */
.whatsapp-float {
  position: relative;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 20px;
  font-size: 1.5rem;
  animation: bounce10 2s infinite;
}

/* Footer */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin: 0 200px;
  padding: 60px 32px;
}

.logo-footer {
  font-size: 1.5rem;
  font-weight: 700;
  color: #055924;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

footer ul li a {
  text-decoration: none;
  color: #055924;
}

footer ul li a:hover {
  text-decoration: underline;
}

.copyright {
  padding: 19px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp30 {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float20 {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes backgroundFloat {

  0%,
  100% {
    background-position: 0% 0%, 100% 100%;
  }

  50% {
    background-position: 100% 100%, 0% 0%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float30 {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }
}

@keyframes scaleInUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes backgroundFloatV2 {

  0%,
  100% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
  }

  33% {
    background-position: 100% 0%, 0% 100%, 0% 50%;
  }

  66% {
    background-position: 0% 100%, 100% 0%, 100% 50%;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes bounce5 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes bounce10 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideInUp50 {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    left: 0;
  }

  .footer-container {
    margin: 0 50px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 8rem 1rem 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .subtitle {
    font-size: 1.1rem;
  }

  .hero-image-placeholder {
    height: 300px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .block-intro {
    font-size: 1.1rem;
  }

  .benefits-section {
    padding: 3rem 0;
  }

  .block-inner {
    padding: 0 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-content {
    order: 2;
    text-align: left;
  }

  .services-image-container {
    order: 1;
  }

  .services-title {
    font-size: 2rem;
    text-align: left;
  }

  .services-title::after {
    left: 0;
    transform: none;
  }

  .services-section {
    padding: 3rem 0;
  }

  .service-image {
    height: 300px;
    font-size: 1rem;
  }

  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }

  .author-image {
    width: 70px;
    height: 70px;
    font-size: 1.2rem;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-prev {
    left: 10px;
    margin-top: 36px;
  }

  .carousel-next {
    right: 10px;
    margin-top: 36px;
  }

  .process-section {
    padding: 3rem 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step {
    padding: 2rem 1.5rem;
  }

  .process-step:hover {
    transform: translateY(-10px) scale(1.02);
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .step-icon {
    width: 90px;
    height: 90px;
    font-size: 0.8rem;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .options-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .option-card {
    padding: 2rem 1.5rem;
  }

  .option-title {
    font-size: 1.5rem;
  }

  .options-section {
    padding: 4rem 0;
  }

  .footer-title {
    font-size: 2.2rem;
  }

  .footer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .footer-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
  }

  .final-cta-footer {
    padding: 4rem 0;
  }

  .footer-guarantee p {
    flex-direction: column;
    gap: 0.75rem;
  }

  .logo-text {
    display: none;
  }

  .contact-btn .text-label {
    display: none;
  }

  .contact-btn .icon-label {
    display: flex;
    font-size: 1.2rem;
    color: white;
  }

  .testimonial-slide {
    min-width: 100vw;
    padding: 0;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .testimonial-card {
    max-width: 100vw;
    width: calc(100% - 32px);
    margin: 0;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
  }

  .carousel-container {
    padding: 0;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  footer ul {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .block-title {
    font-size: 1.8rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 0.7rem;
  }

  .services-title {
    font-size: 1.8rem;
  }

  .service-image {
    height: 250px;
    font-size: 0.9rem;
  }

  .services-list li {
    font-size: 0.95rem;
    padding-left: 2.5rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* .carousel-container {
    padding: 0;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  .testimonial-slide {
    min-width: 100vw;
    padding: 0;
    flex-shrink: 0;
    box-sizing: border-box;
  } */

  .testimonial-quote {
    font-size: 1rem;
  }

  .author-image {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .process-step {
    padding: 1.5rem 1rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-icon {
    width: 80px;
    height: 80px;
    font-size: 0.7rem;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .option-card {
    padding: 1.5rem 1rem;
  }

  .option-title {
    font-size: 1.3rem;
  }

  .consequences-list li {
    font-size: 0.95rem;
    padding-left: 2rem;
  }

  .footer-title {
    font-size: 1.8rem;
  }

  .footer-subtitle {
    font-size: 1rem;
  }

  .footer-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }

  .guarantee-item {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  footer ul {
    margin-top: 24px;
  }

  /* .logo-text {
    display: none;
  }

  .contact-btn .text-label {
    display: none;
  }

  .contact-btn .icon-label {
    display: flex;
    font-size: 1.2rem;
    color: white;
  } */
}