/* ===================================
   ENHANCED HOME PAGE STYLES
   =================================== */

/* Enhanced Hero Section */
.hero-enhanced {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #356b5e 0%, #28544a 100%);
  overflow: hidden;
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 2rem;
}

.hero-content-enhanced {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-title-enhanced {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.gradient-text {
  background: linear-gradient(90deg, #356b5e, #28544a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Animated Gradient Text for "Starts Here" */
.gradient-text-animated {
  background: linear-gradient(
    120deg,
    #1766e5 0%,
    #3b82f6 20%,
    #0d4fc2 40%,
    #1766e5 60%,
    #3b82f6 80%,
    #0d4fc2 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  font-weight: 900;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 30px rgba(23, 102, 229, 0.3);
  letter-spacing: 2px;
}

.gradient-text-animated::before {
  content: 'Starts Here';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(120deg, #1766e5, #3b82f6, #0d4fc2, #1766e5, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px);
  opacity: 0.6;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-subtitle-enhanced {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
  justify-content: center;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
  min-width: 120px;
  max-width: 200px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.stat-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  display: block;
  line-height: 1.2;
  word-break: break-word;
  text-align: center;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
  text-align: center;
  line-height: 1.3;
  word-break: break-word;
}

.hero-buttons-enhanced {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary-enhanced {
  padding: 1rem 2rem;
  background: white;
  color: var(--primary);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary-enhanced {
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-enhanced:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hero Image with Floating Cards */
.hero-image-enhanced {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-image-enhanced img {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: auto;
}

.hero-floating-card {
  position: absolute;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  bottom: 30%;
  left: -10%;
  animation-delay: 1s;
}

.hero-floating-card.card-3 {
  bottom: 10%;
  right: 5%;
  animation-delay: 2s;
}

.card-icon {
  font-size: 1.5rem;
}

.card-text {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.875rem;
}

/* Who We Are Enhanced */
.who-we-are-enhanced {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.section-header-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(53, 107, 94, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-large {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
}

.founder-intro-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  align-items: center;
}

.founder-image-wrapper {
  position: relative;
}

.founder-image {
  border-radius: 16px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(76, 140, 243, 0.4);
}

.founder-story h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.founder-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--primary);
}

.founder-story p {
  color: var(--text-dark);
  line-height: 1.7;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.difference-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.difference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.difference-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.difference-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.difference-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Services Grid - 6 Items */
.services-enhanced {
  padding: 6rem 0;
  background: white;
}

.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card-enhanced {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.service-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
  background: white;
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-icon-wrapper.blue {
  background: rgba(53, 107, 94, 0.1);
  color: var(--accent);
}

.service-icon-wrapper.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.service-icon-wrapper.green {
  background: rgba(53, 107, 94, 0.1);
  color: var(--accent);
}

.service-icon-wrapper.orange {
  background: rgba(251, 146, 60, 0.1);
  color: #fb923c;
}

.service-icon-wrapper.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.service-icon-wrapper.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}

.service-card-enhanced:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.service-card-enhanced h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card-enhanced p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Enhanced Testimonials Section */
.testimonials-enhanced {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.subsection-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.video-testimonials-section {
  margin-bottom: 5rem;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.video-testimonial-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.video-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-testimonial-info {
  padding: 1.5rem;
}

.video-testimonial-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.score-badge {
  display: inline-block;
  background: rgba(53, 107, 94, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.video-testimonial-info p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Text Testimonials */
.text-testimonials-section {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-carousel-enhanced {
  position: relative;
  overflow: hidden;
}

.testimonial-slide-enhanced {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.testimonial-slide-enhanced.active {
  display: block;
}

.testimonial-content-enhanced {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.testimonial-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  flex: 1;
}

.star-rating {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text blockquote p {
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author cite {
  font-size: 1.125rem;
  color: var(--text-dark);
  font-style: normal;
}

.testimonial-score {
  color: var(--text-light);
  font-size: 0.95rem;
}

.carousel-controls-enhanced {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn-enhanced {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border-light);
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
}

.carousel-btn-enhanced:active {
  transform: scale(0.95);
}

.carousel-btn-enhanced:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.1);
}

/* Footer Logo Section */
.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: white;
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-logo-section h4 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* Enhanced Newsletter */
.newsletter-enhanced {
  padding: 6rem 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.newsletter-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(53,107,94,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.newsletter-content-enhanced {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: linear-gradient(90deg, #28544a 0%, #356b5e 50%, #4a8a7a 100%);
  border-radius: 24px;
  border: 1px solid rgba(53, 107, 94, 0.3);
  box-shadow: 0 20px 60px rgba(53, 107, 94, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .newsletter-content-enhanced {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 4rem;
    text-align: left;
  }
}

.newsletter-icon {
  font-size: 3rem;
  margin-bottom: 0;
  display: none;
}

.newsletter-content-enhanced h2 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .newsletter-content-enhanced h2 {
    font-size: 2.5rem;
  }
}

.newsletter-content-enhanced > p,
.newsletter-text-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .newsletter-content-enhanced > p {
    font-size: 1.125rem;
  }
}

.newsletter-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .newsletter-text-content {
    text-align: left;
  }
}

.newsletter-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .newsletter-form-wrapper {
    max-width: 450px;
    flex-shrink: 0;
  }
}

.newsletter-form-enhanced {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.newsletter-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 640px) {
  .newsletter-inputs {
    flex-direction: row;
    gap: 0.75rem;
  }
}

.newsletter-form-enhanced input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border-radius: 10px;
  border: none;
  font-size: 0.95rem;
  background: white;
  color: #1a202c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
}

.newsletter-form-enhanced input::placeholder {
  color: #9ca3af;
}

.newsletter-form-enhanced input:focus {
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.newsletter-submit-btn {
  padding: 0.875rem 1.75rem;
  background: rgba(23, 102, 229, 1);
  color: white;
  border-radius: 10px;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(23, 102, 229, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (min-width: 640px) {
  .newsletter-submit-btn {
    width: auto;
    min-width: 160px;
  }
}

.newsletter-submit-btn:hover {
  background: rgba(21, 94, 211, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 102, 229, 0.4);
}

.newsletter-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Newsletter form validation error styles */
.newsletter-input-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.newsletter-inputs .newsletter-input-wrapper {
  gap: 0;
}

.newsletter-form-enhanced .text-danger {
  color: #dc3545 !important;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
  width: 100%;
}

.newsletter-disclaimer {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .newsletter-disclaimer {
    text-align: left;
  }
}

.newsletter-message {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  animation: fadeIn 0.3s ease;
}

.newsletter-message.success {
  background: rgba(53, 107, 94, 0.2);
  color: var(--accent);
  border: 1px solid rgba(53, 107, 94, 0.3);
}

.newsletter-message.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* ===================================
   WHY US PAGE STYLES
   =================================== */

/* Why Different Section */
.why-different-section {
  padding: 6rem 0;
  background: white;
}

.why-different-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-different-card {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-different-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
  background: white;
}

.why-different-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.why-different-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.why-different-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.comparison-table-wrapper {
  margin-top: 3rem;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: white;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table thead {
  background: linear-gradient(135deg, #356b5e 0%, #28544a 100%);
  color: white;
}

.comparison-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1.125rem;
}

.comparison-table th:first-child {
  border-top-left-radius: 16px;
}

.comparison-table th:last-child {
  border-top-right-radius: 16px;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 1.5rem;
  color: var(--text-dark);
}

.comparison-table td:first-child {
  font-weight: 600;
}

.free-column {
  text-align: center;
  background: rgba(239, 68, 68, 0.05);
}

.upgraded-column {
  text-align: center;
  background: rgba(53, 107, 94, 0.05);
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1;
}

.cross-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.pricing-card.featured {
  border-color: var(--primary);
  border-width: 3px;
  box-shadow: 0 10px 30px rgba(76, 140, 243, 0.2);
}

.pricing-badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #356b5e 0%, #28544a 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(76, 140, 243, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(53, 107, 94, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-price {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-light);
}

.price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.strike-price {
  font-size: 1.5rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.current-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.billing-cycle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.auto-renew {
  color: var(--text-light);
  font-size: 0.875rem;
  font-style: italic;
}

.savings {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li .check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
}


.pricing-cta {
  margin-top: auto;
}

.pricing-cta .btn-primary-enhanced {
  width: 100%;
  text-align: center;
  display: block;
}

.pricing-note {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 1.5rem;
  background: rgba(53, 107, 94, 0.05);
  border-radius: 12px;
  text-align: center;
  color: var(--text-dark);
}

.pricing-note p {
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image-enhanced {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons-enhanced {
    justify-content: center;
  }
  
  .founder-intro-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title-enhanced {
    font-size: 2.5rem;
  }
  
  .section-title-large {
    font-size: 2rem;
  }
  
  .difference-grid,
  .services-grid-6 {
    grid-template-columns: 1fr;
  }
  
  .hero-floating-card {
    display: none;
  }
  
  .founder-intro-card {
    padding: 2rem;
  }
  
  .testimonial-content-enhanced {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .newsletter-form-enhanced {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
  
  .stat-pill {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 100px;
    max-width: none;
    padding: 0.75rem 1rem;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .why-different-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-table-wrapper {
    border-radius: 0;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .pricing-header h3 {
    font-size: 1.75rem;
  }
  
  .current-price {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  
  .stat-pill {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 1rem 1.25rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

/* Bootstrap-style Pagination with Theme Colors */
.paging .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.paging .pagination .page-item {
  margin: 0;
}

.paging .pagination .page-link {
  display: block;
  padding: 0.75rem 1rem;
  min-width: 44px;
  text-align: center;
  color: var(--text-dark);
  background-color: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.paging .pagination .page-link:hover:not(.disabled) {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 102, 229, 0.3);
}

.paging .pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(23, 102, 229, 0.3);
}

.paging .pagination .page-item.disabled .page-link,
.paging .pagination .page-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background-color: var(--bg-light);
  color: var(--text-light);
  border-color: var(--border-light);
}

.paging .pagination .page-item.disabled .page-link:hover,
.paging .pagination .page-link.disabled:hover {
  transform: none;
  box-shadow: none;
}
