@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #185832;
  /* Deep Trust Green */
  --primary-light: #1E6D3E;
  /* Bright Action Green */
  --primary-hover: #144A29;
  --secondary: #F2F9F4;
  /* Very Soft Green Tint for Backgrounds */
  --accent: #25D366;
  /* WhatsApp Green */
  --accent-hover: #128C7E;
  --text-dark: #333333;
  /* Dark Grey for Text */
  --text-muted: #4B5563;
  --white: #FFFFFF;
  --bg-color: #FAFAFA;
  --border-color: #E5E7EB;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 10px 20px -5px rgba(30, 109, 62, 0.4);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Utilities */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-light);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--primary-light);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(30, 109, 62, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid var(--primary-light);
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-whatsapp {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
  transition: var(--transition);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--primary-light);
}

.header-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Hero Section */
.main-hero {
  padding: 180px 0 0px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  overflow: hidden;
}

.hero-flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -15px;
}

.hero-images-wrapper {
  width: 58.333333%;
  padding: 0 15px;
}

.hero-text-wrapper {
  width: 41.666667%;
  padding: 0 15px;
}

.responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .hero-flex-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-images-wrapper,
  .hero-text-wrapper {
    width: 100%;
  }

  .hero-images-wrapper {
    margin-bottom: 40px;
  }
}

.layer-images {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.layer-images img:first-child {
  position: relative;
  z-index: 1;
}

.layer-images img:last-child {
  position: absolute;
  bottom: 0px;
  right: -20px;
  width: 50%;
  z-index: 2;
}

.content-section {
  padding-left: 15px;
}

@media (max-width: 991px) {
  .content-section {
    padding-left: 0;
  }
}

.content-section .hero-main-title {
  font-size: 2.7rem;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.content-section h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 500;
}

.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(30, 109, 62, 0.08) 0%, rgba(250, 250, 250, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--primary-light);
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-subtitle span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.hero-subtitle span svg {
  color: #10b981;
  /* Green tick */
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
}

.badge-text {
  font-size: 0.875rem;
}

.badge-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(229, 231, 235, 0.5);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-header h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: #FCFCFD;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(30, 109, 62, 0.1);
  background: var(--white);
}

.hero-form .btn {
  width: 100%;
}

/* Section Padding */
.section {
  padding: 80px 0;
}

.section-light {
  background-color: var(--white);
}

.section-overlay {
  background-color: var(--secondary);
}

/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.problem-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 64px;
  height: 64px;
  background: #FEF2F2;
  color: #EF4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.problem-card h4 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.problem-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Solution Transformation */
.transformation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-primary {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.image-floating {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 50%;
  border-radius: 16px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

.solution-list {
  list-style: none;
  margin: 30px 0;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.check-icon {
  background: #DCFCE7;
  color: #16A34A;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-list h5 {
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.solution-list p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Benefits */
.benefits-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.benefit-item {
  background: var(--white);
  padding: 25px 15px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  /* Automatically split space evenly 5 ways */
  min-height: 180px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(24, 88, 50, 0.12);
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-item i {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 20px;
  padding: 18px;
  background: rgba(24, 88, 50, 0.06);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.benefit-item:hover i {
  background: var(--primary-light);
  color: var(--white);
}

.benefit-item h4 {
  font-size: 1.15rem;
  color: #12512F;
  font-weight: 700;
  margin: 0;
}

/* Social Proof */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  height: 100%;
}

.testimonial-swiper {
  padding-bottom: 50px;
}

.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonial-swiper .swiper-slide {
  display: flex;
  align-items: stretch;
  height: auto;
}


.testimonial-swiper .swiper-pagination-bullet {
  background: var(--primary);
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--primary-light);
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.testimonial-swiper .swiper-button-next:hover,
.testimonial-swiper .swiper-button-prev:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.testimonial-swiper .swiper-button-next::after,
.testimonial-swiper .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: 800;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--secondary);
  width: 40px;
  height: 40px;
}

.stars {
  color: #FBBF24;
  margin-bottom: 15px;
  display: flex;
  gap: 5px;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.patient-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.patient-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary);
}

/* Procedure Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 4px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-light);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.step-card:hover .step-number {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
}

/* Eligibility & Offer */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 24px;
  padding: 60px 40px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.eligibility-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.e-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--primary);
}

.cta-banner .btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* Doctor Section */
.doctor-profile {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.doc-info h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.doc-title {
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.doc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.doc-stat {
  background: var(--secondary);
  padding: 15px;
  border-radius: 12px;
}

.doc-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  font-family: 'Outfit';
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 15px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 300px;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info p {
  color: #9CA3AF;
  margin-top: 15px;
  max-width: 400px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: #9CA3AF;
  font-size: 0.9rem;
}

/* Floating CTAs */
.floating-ctas {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  text-decoration: none;
}

.float-wa {
  background: var(--accent);
}

.float-wa:hover {
  background: var(--accent-hover);
  transform: scale(1.1);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Exit Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.popup-content {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition);
}

.popup-overlay.show .popup-content {
  transform: scale(1);
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
    text-align: center;
  }

  .hero-subtitle,
  .hero-actions,
  .trust-badges {
    justify-content: center;
  }

  .transformation {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .doctor-profile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-actions .btn-primary {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .problem-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 50px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 24px 28px;
  border-bottom: 1px solid #EFEFEF;
  font-size: 1.05rem;
  color: #4A4A4A;
  vertical-align: middle;
}

.comparison-table th {
  background-color: #12512F;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
  background-color: #F8F9FA;
}

.comparison-table td:first-child {
  font-weight: 700;
  color: #222;
}

/* Highlight SILK Column */
.comparison-table td:nth-child(5) {
  background-color: rgba(30, 109, 62, 0.04) !important;
  /* Forces over the even row bg */
  font-weight: 700;
  color: #185832;
  border-left: 3px solid rgba(24, 88, 50, 0.15);
  border-right: 3px solid rgba(24, 88, 50, 0.15);
}

.comparison-table th:nth-child(5) {
  background-color: #185832;
  /* Slightly shifted tone for the header column to emphasize it slightly */
}

/* ------------------------------------- */
/* Mobile Comparison Cards UI */
/* ------------------------------------- */
.mobile-comparison-cards {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.mobile-comp-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-comp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mobile-comp-card.silk-card {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px rgba(24, 88, 50, 0.12);
}

.mobile-comp-card .card-header {
  padding: 16px 20px;
  background: #F8F9FA;
  border-bottom: 1px solid var(--border-color);
}

.mobile-comp-card.silk-card .card-header {
  background: var(--primary);
  color: var(--white);
}

.mobile-comp-card .card-header h3 {
  margin: 0;
  font-size: 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  color: #1A202C;
}

.mobile-comp-card.silk-card .card-header h3 {
  color: var(--white);
}

.mobile-comp-card .card-header .badge {
  font-size: 0.75rem;
  background: var(--accent);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.mobile-comp-card .card-body {
  padding: 20px;
}

.mobile-comp-card .comp-item {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F0F4F8;
}

.mobile-comp-card .comp-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.mobile-comp-card .comp-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #718096;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-comp-card .comp-value {
  display: block;
  font-size: 1.05rem;
  color: #2D3748;
  font-weight: 500;
  line-height: 1.4;
}

.mobile-comp-card.silk-card .comp-value {
  color: #185832;
  font-weight: 700;
}

/* Responsive Switching */
@media (max-width: 900px) {
  .comparison-table-wrapper {
    display: none !important;
  }
  .mobile-comparison-cards {
    display: flex;
  }
}

/* Why Choose Us Grid */
/* Why Choose Us Grid */
.why-choose-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-choose-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--white);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-light);
}

.why-choose-item i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

/* Split Hero Section (Conversion Optimized) */
.hero-split {
  padding: 140px 0 80px 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-main-title {
  font-size: 3rem;
  color: #000;
  /* Dark Navy for title */
  margin-bottom: 25px;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

.hero-main-title span {
  color: var(--primary);
  /* Theme primary color */
}

.hero-benefits-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.hero-benefits-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: #4a5568;
  font-family: 'Inter', sans-serif;
}

.hero-benefits-grid li i {
  color: #4A5568;
  font-size: 1.1rem;
}

.hero-split-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

/* Primary CTA */
.hero-split-actions .btn-primary {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 50px;
}

.hero-split-actions .btn-primary:hover {
  background: #0f4626 !important;
}

.hero-divider {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 30px 0;
}

.hero-trust-metrics {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-trust-metrics .metric {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust-metrics .metric i {
  font-size: 1.8rem;
}

.hero-trust-metrics .metric-text {
  display: flex;
  flex-direction: column;
}

.hero-trust-metrics .metric-text strong {
  font-size: 1.1rem;
  color: #1a365d;
  line-height: 1.2;
}

.hero-trust-metrics .metric-text span {
  font-size: 0.9rem;
  color: #718096;
}

/* Right Side Vertical Form matching White Floating Box in screenshot */
.hero-vertical-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  /* Deep premium shadow */
}

.hero-vertical-form .form-header {
  text-align: center;
  margin-bottom: 25px;
}

.hero-vertical-form .form-header h3 {
  font-size: 1.6rem;
  color: #1a365d;
  margin-bottom: 5px;
}

.hero-vertical-form .form-header p {
  font-size: 0.95rem;
  color: #718096;
}

/* Overriding global form to match user screenshot */
.hero-vertical-form .form-control {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
  background: #FAFAFA;
}

.hero-vertical-form .btn-primary {
  background: var(--primary) !important;
  border: none;
  border-radius: 50px;
}

.hero-vertical-form .btn-primary:hover {
  background: #0f4626 !important;
}

@media (max-width: 900px) {
  .hero-split-container {
    grid-template-columns: 1fr;
  }

  .hero-split {
    padding-top: 120px;
    text-align: center;
  }

  .hero-benefits-grid {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 300px;
    margin: 0 auto 35px auto;
  }

  .hero-split-actions {
    flex-direction: column;
  }

  .hero-trust-metrics {
    justify-content: center;
  }
}

/* Modern Procedure Grid */
.modern-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 50px;
}

.modern-steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(to right, #16A34A 0, #16A34A 10px, transparent 10px, transparent 20px);
  z-index: 0;
}

.modern-step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 3px solid #16A34A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #16A34A;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(22, 163, 74, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.modern-step-card:hover .step-circle {
  background: #16A34A;
  color: var(--white);
  transform: scale(1.1);
}

.step-content {
  background: var(--white);
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-top: 4px solid transparent;
  transition: all 0.3s ease;
}

.modern-step-card:hover .step-content {
  border-top-color: #16A34A;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-content h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .modern-steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .modern-steps-grid::before {
    top: 0;
    bottom: 0;
    left: 50px;
    right: auto;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, #16A34A 0, #16A34A 10px, transparent 10px, transparent 20px);
  }

  .modern-step-card {
    flex-direction: row;
    align-items: stretch;
    text-align: left;
  }

  .step-circle {
    margin-bottom: 0;
    margin-right: 25px;
    flex-shrink: 0;
    margin-left: 20px;
  }
}

@media (max-width: 990px) {
  .benefits-grid {
    flex-wrap: wrap;
  }

  .benefit-item {
    flex: 1 1 200px;
  }
}