/********** Template CSS **********/
:root {
  --primary: #16a34a;
  --light: #0a1c14;
  --dark: #04130d;
  --accent: #22c55e;
  --accent-hover: #15803d;
  --secondary: #17412d;
  --bg-dark: #04130d;
  --bg-darker: #030b06;
  --text-light: #e8ffe6;
  --text-muted: #b3d8b0;
  --blue-dark: #0a2015;
  --blue-medium: #123024;
  --blue-light: #17412d;
  --blue-accent: #16a34a;
  --blue-glow: rgba(22, 163, 74, 0.35);
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #e8ffe6;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #e8ffe6;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(135, 80, 109, 0.6); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  /* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #e8ffe6;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #e8ffe6;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}


.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
  text-align: center;
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Google Fonts - Noto Sans Display */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Display:wght@300;400;500;600;700;800;900&display=swap");

* {
  font-family: 'Noto Sans Display', sans-serif;
}

body {
  font-family: 'Noto Sans Display', sans-serif;
  background-color: #04130d;
  color: #e8ffe6;
}

/* Premium Cookie Banner */
.cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(26, 35, 50, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(22, 163, 74, 0.3);
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
}

.cookie-wrapper.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-wrapper.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 163, 74, 0.2);
  border-radius: 12px;
  color: #22c55e;
  flex-shrink: 0;
}

.cookie-icon svg {
  width: 28px;
  height: 28px;
}

.cookie-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8ffe6;
  margin: 0;
  white-space: nowrap;
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-text p {
  margin: 0;
  color: #b3d8b0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cookie-link {
  color: #22c55e;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-left: 4px;
}

.cookie-link:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: 'Libre Franklin', sans-serif;
}

.cookie-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e8ffe6;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
  background: linear-gradient(135deg, #22c55e, #38bdf8);
}

.cookie-btn-accept:hover svg {
  transform: scale(1.1);
}

.cookie-btn-decline {
  background: rgba(15, 20, 25, 0.6);
  color: #b3d8b0;
  border: 1px solid rgba(22, 163, 74, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(15, 20, 25, 0.8);
  color: #e8ffe6;
  border-color: rgba(74, 111, 165, 0.5);
  transform: translateY(-2px);
}

.cookie-btn-decline:hover svg {
  transform: rotate(90deg);
}

@media (max-width: 992px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px;
  }

  .cookie-header {
    width: 100%;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cookie-content {
    padding: 20px;
  }

  .cookie-title {
    font-size: 1.125rem;
  }

  .cookie-text p {
    font-size: 0.875rem;
  }

  .cookie-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}

.hidden {
  display: none;
}

header i {
  color: #16a34a;
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: #16a34a;
  font-weight: 500;
  text-align: center;
}



  /* new styles  */

  :root {
    --dark-bg: #04130d;
    --light-bg: #0a1c14;
    --accent: #16a34a;
    --accent-hover: #15803d;
    --auxiliary: #22c55e;
    --light-text: #e8ffe6;
    --dark-text: #b3d8b0;
    --white: #e8ffe6;
    --light-gray: #123024;
  }

/* Premium Footer Styles */
.footer {
  background: linear-gradient(180deg, #030b06 0%, #04130d 50%, #0a2015 100%);
  border-top: 1px solid rgba(22, 163, 74, 0.2);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(22, 163, 74, 0.05), transparent 70%);
  pointer-events: none;
}

.footer-waves {
  position: relative;
  height: 120px;
  overflow: hidden;
  margin-top: -1px;
}

.footer-waves svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-main {
  padding: 70px 0 50px;
  position: relative;
  z-index: 1;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-sections {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-brand-section {
  gap: 1.5rem;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-brand-link:hover {
  transform: translateX(5px);
}

.footer-logo-container {
  position: relative;
  width: 50px;
  height: 50px;
}

.footer-brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(22, 163, 74, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.footer-brand-link:hover .footer-brand-logo {
  border-color: #16a34a;
  box-shadow: 0 6px 25px rgba(22, 163, 74, 0.4);
  transform: rotate(-5deg) scale(1.05);
}

.footer-logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.3), transparent 70%);
  animation: footerPulse 2.5s ease-in-out infinite;
}

@keyframes footerPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.1; }
}

.footer-brand-text {
  display: flex;
  align-items: baseline;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-brand-main {
  color: #e8ffe6;
}

.footer-brand-accent {
  color: #16a34a;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  color: #b3d8b0;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.footer-social-grid {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 12px;
  color: #16a34a;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  overflow: hidden;
}

.social-btn-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.3), transparent);
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover .social-btn-bg {
  transform: translate(-50%, -50%) scale(1.5);
}

.social-btn:hover {
  transform: translateY(-4px) rotate(5deg);
  background: rgba(22, 163, 74, 0.2);
  border-color: #16a34a;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
  color: #22c55e;
}

.social-btn .material-icons {
  font-size: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.social-btn:hover .material-icons {
  transform: scale(1.2);
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8ffe6;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.heading-icon {
  width: 20px;
  height: 20px;
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
  flex-shrink: 0;
}

.footer-section:hover .heading-icon {
  filter: grayscale(0);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: #b3d8b0;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.footer-menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #16a34a, #22c55e);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  border-radius: 0 3px 3px 0;
}

.footer-menu-link:hover::before {
  transform: scaleY(1);
}

.footer-menu-link:hover {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
  padding-left: 20px;
  transform: translateX(5px);
}

.link-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #16a34a;
  font-weight: 600;
}

.footer-menu-link:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}

.contact-info-item:hover {
  background: rgba(22, 163, 74, 0.1);
  transform: translateX(5px);
}

.contact-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 163, 74, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
  background: rgba(22, 163, 74, 0.25);
  transform: rotate(-5deg) scale(1.1);
}

.contact-icon-wrapper .material-icons {
  font-size: 20px;
  color: #16a34a;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.contact-label {
  font-size: 0.75rem;
  color: #b3d8b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-value {
  font-size: 0.9rem;
  color: #e8ffe6;
  line-height: 1.5;
}

.contact-info-item:hover .contact-value {
  color: #16a34a;
}

.footer-bar {
  border-top: 1px solid rgba(22, 163, 74, 0.2);
  padding: 24px 0;
  background: rgba(10, 18, 16, 0.5);
  position: relative;
}

.footer-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.3), transparent);
}

.footer-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright-text {
  color: #b3d8b0;
  font-size: 0.85rem;
  margin: 0;
}

.footer-copyright-text strong {
  color: #16a34a;
  font-weight: 700;
}

.footer-registry {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-registry span {
  color: #b3d8b0;
  font-size: 0.8rem;
}

.footer-registry .separator {
  color: rgba(22, 163, 74, 0.5);
}

@media (max-width: 1024px) {
  .footer-sections {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    padding: 0 1rem;
  }

  .footer-sections {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  .footer-registry {
    justify-content: center;
  }
}

/* Premium Tips Section */
.tips {
  padding: 100px 20px;
  background: linear-gradient(180deg, #04130d 0%, #0a2015 100%);
  position: relative;
  overflow: hidden;
}

.tips::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(22, 163, 74, 0.05), transparent 70%);
  pointer-events: none;
}

.tips-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.tips-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.tips-badge span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.5px;
}

.tips-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.title-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.tips-subtitle {
  font-size: 1.1rem;
  color: #b3d8b0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.tip-card {
  position: relative;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tip-card:hover::before {
  opacity: 1;
}

.tip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.3);
}

.tip-card-featured {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(74, 111, 165, 0.1));
  border-color: rgba(74, 111, 165, 0.3);
}

.tip-card-featured::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.1), transparent);
  animation: featuredGlow 3s ease-in-out infinite;
}

@keyframes featuredGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.tip-badge-featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 6px 14px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e8ffe6;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
}

.tip-card-inner {
  position: relative;
  z-index: 2;
}

.tip-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
}

.tip-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 16px;
  transition: all 0.4s ease;
}

.tip-card:hover .tip-icon-bg {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.3), rgba(74, 111, 165, 0.2));
  transform: rotate(5deg) scale(1.1);
}

.tip-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(0.2);
  transition: all 0.4s ease;
}

.tip-card:hover .tip-icon {
  filter: grayscale(0);
  transform: translate(-50%, -50%) scale(1.1);
}

.tip-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e8ffe6;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tip-description {
  font-size: 1rem;
  color: #b3d8b0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tip-footer {
  margin-top: auto;
}

.tip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #22c55e;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tip-card:hover .tip-link {
  color: #38bdf8;
  gap: 12px;
}

.tip-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.3), transparent);
  border-radius: 50%;
  transition: all 0.6s ease;
  pointer-events: none;
}

.tip-card:hover .tip-card-glow {
  width: 300px;
  height: 300px;
}

.tips-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-tips-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e8ffe6;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-tips-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-tips-primary:hover::before {
  left: 100%;
}

.btn-tips-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, #22c55e, #38bdf8);
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-tips-primary:hover .btn-arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 80px;
    min-height: auto;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .tips-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tip-card {
    padding: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2rem;
    min-height: auto;
  }
}

/* Premium Features Section */
.features {
  padding: 100px 20px;
  background: linear-gradient(180deg, #04130d 0%, #0a2015 100%);
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.icon-sparkle {
  color: #22c55e;
  animation: sparkleRotate 2s ease-in-out infinite;
}

@keyframes sparkleRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
}

.features-badge span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.5px;
}

.features-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.title-underline-features {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.features-description {
  font-size: 1.1rem;
  color: #b3d8b0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: rgba(26, 35, 50, 0.4);
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 111, 165, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 111, 165, 0.3);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.2);
}

.feature-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.feature-item:hover .feature-icon-box {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.3), rgba(74, 111, 165, 0.2));
  transform: rotate(5deg) scale(1.1);
}

.feature-icon {
  color: #22c55e;
  transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
  color: #38bdf8;
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8ffe6;
  margin-bottom: 1rem;
}

.feature-text {
  font-size: 1rem;
  color: #b3d8b0;
  line-height: 1.7;
}

/* Premium Stats Section */
.stats {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a2015 0%, #0a1c14 100%);
  position: relative;
  overflow: hidden;
}

.stats-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(22, 163, 74, 0.1), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(26, 35, 50, 0.5);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 25px 50px rgba(22, 163, 74, 0.3);
}

.stat-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 16px;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon-wrapper {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.3), rgba(74, 111, 165, 0.2));
  transform: rotate(-5deg) scale(1.1);
}

.stat-icon {
  color: #22c55e;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  color: #38bdf8;
  transform: scale(1.1);
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e8ffe6;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-description {
  font-size: 0.9rem;
  color: #b3d8b0;
}

/* Pricing list check icons */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.75rem 0;
  color: #b3d8b0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.check-icon {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.pricing-card:hover .check-icon {
  color: #38bdf8;
  transform: scale(1.1);
}

/* Pricing icon styles */
.pricing-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  transition: all 0.4s ease;
}

.pricing-card:hover .pricing-icon {
  color: #38bdf8;
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-item,
  .stat-card {
    padding: 1.5rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }
}

/* FAQ Page - redesigned */
.faq-hero-new {
  padding: 150px 20px 90px;
  background: radial-gradient(circle at 10% 20%, rgba(22, 163, 74, 0.1), transparent 35%),
              radial-gradient(circle at 90% 0%, rgba(22, 163, 74, 0.12), transparent 40%),
              #04130d;
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.faq-hero-left h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #e8ffe6;
  font-weight: 800;
}

.faq-hero-left p {
  margin: 0 0 18px;
  color: #b6e7c2;
  line-height: 1.7;
  max-width: 620px;
}

.faq-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.faq-hero-stats .stat {
  background: rgba(6, 46, 25, 0.7);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #e8ffe6;
}

.stat-label {
  color: #9ed2a6;
  font-weight: 700;
  font-size: 0.95rem;
}

.faq-hero-card {
  background: linear-gradient(150deg, rgba(22, 163, 74, 0.16), rgba(6, 46, 25, 0.85));
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8ffe6;
  font-weight: 800;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 46, 25, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 12px;
  padding: 12px;
  color: #e8ffe6;
}

.row-title {
  font-weight: 800;
}

.row-sub {
  color: #b6e7c2;
  font-size: 0.95rem;
}

.badge-soft,
.tag-soft {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.14);
  color: #bbf7d0;
  font-weight: 700;
  font-size: 0.9rem;
}

.tag-soft.success {
  border-color: rgba(74, 222, 128, 0.5);
  background: rgba(74, 222, 128, 0.18);
}

.card-footer {
  color: #9ed2a6;
  font-weight: 700;
  font-size: 0.95rem;
}

.faq-section-new {
  padding: 110px 20px;
  background: linear-gradient(180deg, #0a2015 0%, #03140d 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 26px;
  align-items: start;
}

.faq-topics .pill {
  width: fit-content;
}

.faq-topics h2 {
  margin: 10px 0 8px;
  color: #e8ffe6;
  font-size: 1.8rem;
  font-weight: 800;
}

.faq-topics p {
  margin: 0 0 16px;
  color: #b6e7c2;
  line-height: 1.6;
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.3);
  background: rgba(22, 163, 74, 0.1);
  color: #e8ffe6;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.5);
}

.chip.active {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #04130d;
  border-color: #22c55e;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
}

.topic-list {
  display: grid;
  gap: 12px;
}

.topic-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background: rgba(6, 46, 25, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 12px;
  color: #e8ffe6;
}

.topic-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 800;
}

.topic-card p {
  margin: 0;
  color: #9ed2a6;
}

.topic-card .count {
  color: #bbf7d0;
  font-weight: 800;
}

.faq-accordion-new {
  display: grid;
  gap: 12px;
}

.faq-accordion-new .faq-item {
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(22, 163, 74, 0.12), rgba(6, 46, 25, 0.8));
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  color: #e8ffe6;
  cursor: pointer;
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(22, 163, 74, 0.18);
  border: 1px solid rgba(22, 163, 74, 0.32);
  display: grid;
  place-items: center;
  color: #bbf7d0;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 800px;
}

.faq-answer p {
  padding: 0 16px 14px;
  margin: 0;
  color: #b6e7c2;
  line-height: 1.6;
}

.faq-cta-new {
  padding: 90px 20px 110px;
  background: radial-gradient(circle at 12% 30%, rgba(22, 163, 74, 0.08), transparent 38%),
              #04130d;
}

.faq-cta-card-new {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(140deg, rgba(22, 163, 74, 0.18), rgba(6, 46, 25, 0.82));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.faq-cta-card-new h2 {
  margin: 6px 0 8px;
  color: #e8ffe6;
  font-size: 1.9rem;
  font-weight: 800;
}

.faq-cta-card-new p {
  margin: 0;
  color: #b6e7c2;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .faq-hero-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .faq-cta-card-new {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Premium Contact Page Styles */
.contact-hero {
  padding: 160px 20px 100px;
  background: linear-gradient(180deg, #04130d 0%, #0a2015 100%);
  position: relative;
  overflow: hidden;
  margin-top: -88px;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 40%, rgba(22, 163, 74, 0.2), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(74, 111, 165, 0.15), transparent);
  background-size: 300% 300%;
  animation: patternMove 25s ease infinite;
  pointer-events: none;
}

.contact-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.contact-hero-badge svg {
  color: #22c55e;
  width: 20px;
  height: 20px;
}

.contact-hero-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.5px;
}

.contact-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.contact-title-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.contact-hero-description {
  font-size: 1.2rem;
  color: #b3d8b0;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a2015 0%, #04130d 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.3);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: #22c55e;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.3), rgba(74, 111, 165, 0.2));
  transform: scale(1.1) rotate(5deg);
  color: #38bdf8;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8ffe6;
  margin-bottom: 0.75rem;
}

.contact-link {
  display: block;
  color: #22c55e;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #38bdf8;
}

.contact-info-card p {
  color: #b3d8b0;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.contact-time,
.contact-address {
  color: #b3d8b0;
  line-height: 1.7;
  margin: 0;
}

.contact-form-column {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.contact-form-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 120px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form-card form {
  width: 100%;
  max-width: 100%;
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 0.75rem;
}

.form-header p {
  color: #b3d8b0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #b3d8b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
  padding: 14px 18px;
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 12px;
  color: #e8ffe6;
  font-size: 1rem;
  font-family: 'Libre Franklin', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #22c55e;
  background: rgba(15, 20, 25, 0.8);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e8ffe6;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
  margin-top: 0.5rem;
}

.btn-form-submit:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, #22c55e, #38bdf8);
}

.btn-form-submit svg {
  transition: transform 0.3s ease;
}

.btn-form-submit:hover svg {
  transform: translateX(5px);
}

/* Contact Form Styles */
#lead.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}

#lead .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

#lead .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}

#lead .form-group.col-md-4 {
  grid-column: span 1;
  min-width: 0;
}

#lead .form-group:not(.col-md-4) {
  grid-column: 1 / -1;
  width: 100%;
}

#lead .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #b3d8b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

#lead .form-control {
  padding: 14px 18px;
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 12px;
  color: #e8ffe6;
  font-size: 1rem;
  font-family: 'Libre Franklin', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

#lead .form-control::placeholder {
  color: rgba(168, 181, 200, 0.5);
}

#lead .form-control:focus {
  outline: none;
  border-color: #22c55e;
  background: rgba(15, 20, 25, 0.8);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

#lead .form-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#lead .form-control.is-invalid {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}

#lead .form-control.is-invalid:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

#lead .form-control.is-valid {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
}

#lead .form-control.is-valid:focus {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

#lead .invalid-feedback {
  display: none;
  color: #ff6b6b;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

#lead .form-control.is-invalid ~ .invalid-feedback,
#lead .was-validated .form-control:invalid ~ .invalid-feedback {
  display: block;
}

#lead textarea.form-control {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
  font-family: 'Libre Franklin', sans-serif;
}

#lead select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A8B5C8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

#lead select.form-control:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2322c55e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

#lead .form-submit {
  margin-top: 0.5rem;
}

#lead .btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e8ffe6;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
  width: 100%;
}

#lead .btn-contact-submit:hover:not(:disabled) {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, #22c55e, #38bdf8);
}

#lead .btn-contact-submit:active:not(:disabled) {
  transform: translateY(0);
}

#lead .btn-contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#lead .btn-contact-submit svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

#lead .btn-contact-submit:hover:not(:disabled) svg {
  transform: translateX(4px);
}

#lead .form-status {
  margin-top: 1rem;
  min-height: 24px;
}

#lead .form-status .loading,
#lead .form-status .error-message,
#lead .form-status .sent-message {
  display: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

#lead .form-status .loading.show,
#lead .form-status .error-message.show,
#lead .form-status .sent-message.show {
  display: block;
}

#lead .form-status .loading {
  color: #22c55e;
  background: rgba(74, 111, 165, 0.1);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

#lead .form-status .error-message {
  color: #ff6b6b;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
}

#lead .form-status .sent-message {
  color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
}

@media (max-width: 992px) {
  #lead .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #lead.contact-form {
    gap: 1.25rem;
  }
  
  #lead .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  #lead .form-group.col-md-4 {
    grid-column: span 1;
  }
  
  #lead .form-control {
    padding: 14px 18px;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
  }
  
  #lead .btn-contact-submit {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
}

.contact-cta-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #04130d 0%, #0a2015 100%);
}

.contact-cta-card {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  backdrop-filter: blur(10px);
}

.cta-content-left h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1rem;
}

.cta-content-left p {
  font-size: 1.1rem;
  color: #b3d8b0;
  line-height: 1.7;
  margin: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e8ffe6;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
  white-space: nowrap;
}

.btn-cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, #22c55e, #38bdf8);
}

.btn-cta-primary svg {
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
  transform: translateX(5px);
}

/* Premium About Page Styles */
.about-hero {
  padding: 160px 20px 100px;
  background: linear-gradient(180deg, #04130d 0%, #0a2015 100%);
  position: relative;
  overflow: hidden;
  margin-top: -88px;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 40%, rgba(22, 163, 74, 0.2), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(74, 111, 165, 0.15), transparent);
  background-size: 300% 300%;
  animation: patternMove 25s ease infinite;
  pointer-events: none;
}

.about-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.about-hero-badge svg {
  color: #22c55e;
  width: 20px;
  height: 20px;
}

.about-hero-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.5px;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.title-highlight-about {
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-title-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.about-hero-description {
  font-size: 1.2rem;
  color: #b3d8b0;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.about-mission {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a2015 0%, #04130d 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.mission-badge svg {
  color: #22c55e;
  width: 16px;
  height: 16px;
}

.mission-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.5px;
}

.mission-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.mission-text {
  font-size: 1.1rem;
  color: #b3d8b0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.mission-stat {
  text-align: center;
}

.mission-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mission-stat-label {
  font-size: 0.9rem;
  color: #b3d8b0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.mission-visual {
  position: relative;
}

.mission-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mission-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.mission-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.2), transparent 70%);
  pointer-events: none;
  border-radius: 20px;
}

.training-areas {
  padding: 100px 20px;
  background: linear-gradient(180deg, #04130d 0%, #0a2015 100%);
}

.training-areas-header {
  text-align: center;
  margin-bottom: 4rem;
}

.areas-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.areas-badge svg {
  color: #22c55e;
  width: 16px;
  height: 16px;
}

.areas-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.5px;
}

.training-areas-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1rem;
}

.training-areas-header p {
  font-size: 1.1rem;
  color: #b3d8b0;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.training-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.training-area-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.training-area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.training-area-card:hover::before {
  opacity: 1;
}

.training-area-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.3);
}

.area-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.training-area-card:hover .area-icon-wrapper {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.3), rgba(74, 111, 165, 0.2));
  transform: rotate(5deg) scale(1.1);
}

.area-icon {
  color: #22c55e;
  transition: all 0.4s ease;
}

.training-area-card:hover .area-icon {
  color: #38bdf8;
  transform: scale(1.1);
}

.training-area-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8ffe6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.training-area-card p {
  font-size: 1rem;
  color: #b3d8b0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.area-features {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.area-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 0;
  color: #b3d8b0;
  font-size: 0.95rem;
}

.area-features li svg {
  color: #22c55e;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.training-area-card:hover .area-features li svg {
  color: #38bdf8;
  transform: scale(1.1);
}

.why-works {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a2015 0%, #04130d 100%);
}

.why-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.why-badge svg {
  color: #22c55e;
  width: 16px;
  height: 16px;
}

.why-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.5px;
}

.why-works-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1rem;
}

.why-works-header p {
  font-size: 1.1rem;
  color: #b3d8b0;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.why-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  text-align: center;
}

.why-item:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.3);
}

.why-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 16px;
  transition: all 0.4s ease;
}

.why-item:hover .why-icon-box {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.3), rgba(74, 111, 165, 0.2));
  transform: rotate(-5deg) scale(1.1);
}

.why-icon {
  color: #22c55e;
  transition: all 0.4s ease;
}

.why-item:hover .why-icon {
  color: #38bdf8;
  transform: scale(1.1);
}

.why-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8ffe6;
  margin-bottom: 1rem;
}

.why-item p {
  font-size: 1rem;
  color: #b3d8b0;
  line-height: 1.7;
  margin: 0;
}

.company-info {
  padding: 100px 20px;
  background: linear-gradient(180deg, #04130d 0%, #0a2015 100%);
}

.company-info-header {
  text-align: center;
  margin-bottom: 4rem;
}

.company-info-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1rem;
}

.company-info-header p {
  font-size: 1.1rem;
  color: #b3d8b0;
  line-height: 1.7;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.company-info-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.company-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.3);
}

.company-info-card-full {
  grid-column: 1 / -1;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(22, 163, 74, 0.2);
}

.info-card-header svg {
  color: #22c55e;
  width: 24px;
  height: 24px;
}

.info-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8ffe6;
  margin: 0;
}

.info-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1rem;
  color: #e8ffe6;
  line-height: 1.7;
}

.info-link {
  color: #22c55e;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-link:hover {
  color: #38bdf8;
}

.info-card-content p {
  font-size: 1rem;
  color: #b3d8b0;
  line-height: 1.8;
  margin: 0;
}

.about-cta-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0a2015 0%, #04130d 100%);
}

.about-cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.about-cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1rem;
}

.about-cta-content p {
  font-size: 1.1rem;
  color: #b3d8b0;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-about-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e8ffe6;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

.btn-about-cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, #22c55e, #38bdf8);
}

.btn-about-cta-primary svg {
  transition: transform 0.3s ease;
}

.btn-about-cta-primary:hover svg {
  transform: translateX(5px);
}

.btn-about-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: rgba(22, 163, 74, 0.1);
  color: #b3d8b0;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid rgba(22, 163, 74, 0.2);
  transition: all 0.3s ease;
}

.btn-about-cta-secondary:hover {
  background: rgba(22, 163, 74, 0.2);
  color: #e8ffe6;
  border-color: rgba(74, 111, 165, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-card {
    flex-direction: column;
    text-align: center;
  }

  .about-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-about-cta-primary,
  .btn-about-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .training-areas-grid,
  .why-works-grid,
  .company-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium Legal Pages Styles (Cookies, Privacy, Terms) */
.legal-hero {
  padding: 160px 20px 100px;
  background: linear-gradient(180deg, #04130d 0%, #0a2015 100%);
  position: relative;
  overflow: hidden;
  margin-top: -88px;
}

.legal-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 40%, rgba(22, 163, 74, 0.2), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(74, 111, 165, 0.15), transparent);
  background-size: 300% 300%;
  animation: patternMove 25s ease infinite;
  pointer-events: none;
}

.legal-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.legal-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.legal-hero-badge svg {
  color: #22c55e;
  width: 20px;
  height: 20px;
}

.legal-hero-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.5px;
}

.legal-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.legal-title-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.5);
}

.legal-hero-description {
  font-size: 1.2rem;
  color: #b3d8b0;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.legal-hero-meta {
  font-size: 0.9rem;
  color: #22c55e;
  font-weight: 600;
}

.legal-content {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a2015 0%, #04130d 100%);
}

.legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.legal-section:hover {
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 12px 35px rgba(22, 163, 74, 0.2);
  transform: translateY(-3px);
}

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(22, 163, 74, 0.2);
}

.legal-section-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 60px;
}

.legal-section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e8ffe6;
  margin: 0;
  flex: 1;
}

.legal-section-body {
  color: #b3d8b0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.legal-section-body p {
  margin-bottom: 1.5rem;
}

.legal-section-body p:last-child {
  margin-bottom: 0;
}

.legal-bullet-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.legal-bullet-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #b3d8b0;
  line-height: 1.7;
}

.legal-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(74, 111, 165, 0.5);
}

.legal-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.legal-list-item {
  background: rgba(15, 20, 25, 0.4);
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  gap: 1rem;
}

.legal-list-item:hover {
  border-color: rgba(74, 111, 165, 0.3);
  background: rgba(15, 20, 25, 0.6);
  transform: translateY(-3px);
}

.list-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 12px;
  flex-shrink: 0;
  color: #22c55e;
  transition: all 0.3s ease;
}

.legal-list-item:hover .list-item-icon {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.3), rgba(74, 111, 165, 0.2));
  transform: scale(1.1) rotate(5deg);
  color: #38bdf8;
}

.list-item-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e8ffe6;
  margin-bottom: 0.5rem;
}

.list-item-content p {
  font-size: 0.95rem;
  color: #b3d8b0;
  line-height: 1.6;
  margin: 0;
}

.legal-info-box {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(74, 111, 165, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.legal-info-box svg {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-info-box div {
  color: #b3d8b0;
  line-height: 1.7;
}

.legal-info-box strong {
  color: #e8ffe6;
  font-weight: 600;
}

.legal-link {
  color: #22c55e;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.legal-link:hover {
  color: #38bdf8;
  border-bottom-color: #38bdf8;
}

/* Premium Thanks Page Styles */
.thanks-section {
  padding: 180px 20px 120px;
  background: linear-gradient(180deg, #04130d 0%, #0a2015 100%);
  position: relative;
  overflow: hidden;
  margin-top: -88px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thanks-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 40%, rgba(22, 163, 74, 0.2), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(74, 111, 165, 0.15), transparent);
  background-size: 300% 300%;
  animation: patternMove 25s ease infinite;
  pointer-events: none;
}

.thanks-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.thanks-icon-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.thanks-icon-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(74, 111, 165, 0.1));
  border: 2px solid rgba(74, 111, 165, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: thanksPulse 2s ease-in-out infinite;
}

@keyframes thanksPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 111, 165, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(74, 111, 165, 0);
  }
}

.thanks-check-icon {
  color: #22c55e;
  animation: thanksCheck 0.6s ease-out;
}

@keyframes thanksCheck {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.thanks-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #e8ffe6;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #e8ffe6, #b3d8b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 1rem;
}

.thanks-description {
  font-size: 1.1rem;
  color: #b3d8b0;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.thanks-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-thanks-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e8ffe6;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

.btn-thanks-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, #22c55e, #38bdf8);
}

.btn-thanks-primary svg {
  transition: transform 0.3s ease;
}

.btn-thanks-primary:hover svg {
  transform: translateX(5px);
}

.btn-thanks-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: rgba(22, 163, 74, 0.1);
  color: #b3d8b0;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid rgba(22, 163, 74, 0.2);
  transition: all 0.3s ease;
}

.btn-thanks-secondary:hover {
  background: rgba(22, 163, 74, 0.2);
  color: #e8ffe6;
  border-color: rgba(74, 111, 165, 0.4);
  transform: translateY(-2px);
}

.thanks-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.thanks-info-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  text-align: center;
}

.thanks-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 111, 165, 0.4);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.3);
}

.info-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(74, 111, 165, 0.1));
  border-radius: 12px;
  color: #22c55e;
  transition: all 0.4s ease;
}

.thanks-info-card:hover .info-card-icon {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.3), rgba(74, 111, 165, 0.2));
  transform: scale(1.1) rotate(5deg);
  color: #38bdf8;
}

.thanks-info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e8ffe6;
  margin-bottom: 0.75rem;
}

.thanks-info-card p {
  font-size: 0.95rem;
  color: #b3d8b0;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .legal-section {
    padding: 2rem 1.5rem;
  }

  .legal-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .legal-section-number {
    font-size: 2rem;
    min-width: auto;
  }

  .legal-list-grid {
    grid-template-columns: 1fr;
  }

  .thanks-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-thanks-primary,
  .btn-thanks-secondary {
    width: 100%;
    justify-content: center;
  }

  .thanks-info-cards {
    grid-template-columns: 1fr;
  }
}

/* new styles  */
/* Styles généraux */
:root {
  --background-color: #04130d;
  --text-color: #e8ffe6;
  --accent-color: #16a34a;
  --light-accent: rgba(22, 163, 74, 0.2);
  --header-height: 80px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}



h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 12px 30px;
}

.btn-accent:hover {
  background-color: #17412d;
  color: white;
  transform: translateY(-2px);
}

/* Premium Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  transform: translateY(0);
}

.header.scrolled .header-glass {
  background: rgba(15, 24, 21, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(22, 163, 74, 0.1);
}

.header-glass {
  background: rgba(15, 24, 21, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(22, 163, 74, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.1), transparent);
  transition: left 0.6s ease;
}

.header:hover .header-glass::before {
  left: 100%;
}

.header-gradient-line {
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #16a34a 20%, 
    #22c55e 50%, 
    #16a34a 80%, 
    transparent 100%);
  background-size: 200% 100%;
  animation: gradientFlow 3s ease infinite;
  box-shadow: 0 0 20px rgba(22, 163, 74, 0.5);
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  gap: 3rem;
  position: relative;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-brand:hover {
  transform: translateX(5px) scale(1.02);
}

.logo-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(22, 163, 74, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.header-brand:hover .brand-logo {
  border-color: #16a34a;
  box-shadow: 0 6px 25px rgba(22, 163, 74, 0.4);
  transform: rotate(5deg) scale(1.05);
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: pulseGlow 2s ease-in-out infinite;
}

.header-brand:hover .logo-glow {
  opacity: 1;
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.brand-name {
  display: flex;
  align-items: baseline;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-name-main {
  color: #e8ffe6;
  transition: color 0.3s ease;
}

.brand-name-accent {
  color: #16a34a;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.header-brand:hover .brand-name-accent {
  background: linear-gradient(135deg, #22c55e, #6AB89A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
  .nav {
    display: flex !important;
    position: static !important;
    transform: none !important;
  }
}

.nav-link-premium {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  text-decoration: none;
  color: #b3d8b0;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: transparent;
}

.nav-link-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(74, 111, 165, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.nav-link-premium:hover::before {
  opacity: 1;
}

.nav-link-premium {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-text {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.nav-link-premium:hover .nav-text {
  color: #16a34a;
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(22, 163, 74, 0.5);
}

.nav-link-premium:hover .nav-underline {
  width: 80%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 991px) {
  .header-cta {
    gap: 0.5rem;
  }
}

.btn-cta {
  position: relative;
  padding: 12px 28px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e8ffe6;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
  border: 1px solid rgba(22, 163, 74, 0.3);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.5);
  background: linear-gradient(135deg, #22c55e, #6AB89A);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}

.btn-cta:hover .btn-shine {
  left: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
  z-index: 10001;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: #e8ffe6;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover span {
  background: #22c55e;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #04130d;
  z-index: 10000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #e8ffe6;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.mobile-menu-close:hover {
  color: #22c55e;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 100px 0 40px 0;
}

.mobile-menu-link {
  display: block;
  padding: 18px 30px;
  color: #e8ffe6;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(22, 163, 74, 0.2);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-link:hover {
  background: rgba(22, 163, 74, 0.15);
  color: #e8ffe6;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.mobile-menu-backdrop.active {
  display: block;
}

@media (max-width: 991px) {
  .mobile-menu-btn {
    display: flex !important;
  }

  .btn-cta {
    display: none !important;
  }

  .nav {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }

  .header-content {
    padding: 0 1rem;
    height: 75px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .logo-wrapper {
    width: 42px;
    height: 42px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }
}


/* Styles pour le bloc principal (hero) */
/* Add padding for fixed header */
body {
  padding-top: 88px;
}

/* Premium Hero Section */
.hero {
  position: relative;
  margin-top: -88px;
  padding: 160px 20px 120px;
  background: linear-gradient(180deg, #04130d 0%, #0a2015 50%, #0a1c14 100%);
  color: #e8ffe6;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(22, 163, 74, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(74, 111, 165, 0.2), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(22, 163, 74, 0.4), transparent);
  background-size: 200% 200%;
  animation: particleMove 20s ease infinite;
  pointer-events: none;
}

@keyframes particleMove {
  0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
  50% { background-position: 100% 0%, 0% 100%, 50% 50%; }
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.6), transparent);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 111, 165, 0.5), transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(45, 74, 110, 0.4), transparent);
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
}

.badge-icon {
  width: 16px;
  height: 16px;
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.5px;
}

.hero-main-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.title-line {
  display: block;
  color: #e8ffe6;
  opacity: 0.9;
}

.title-highlight {
  position: relative;
  display: inline-block;
  margin: 0.5rem 0;
}

.highlight-text {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.highlight-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(74, 111, 165, 0.4), transparent 70%);
  filter: blur(20px);
  z-index: 1;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #b3d8b0;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #b3d8b0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(22, 163, 74, 0.5), transparent);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e8ffe6;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, #22c55e, #38bdf8);
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-icon {
  transform: translateX(5px);
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}

.btn-hero-primary:hover .btn-shimmer {
  left: 100%;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(22, 163, 74, 0.1);
  color: #b3d8b0;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(22, 163, 74, 0.2);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(22, 163, 74, 0.2);
  color: #e8ffe6;
  border-color: rgba(74, 111, 165, 0.4);
  transform: translateY(-2px);
}

.btn-icon-secondary {
  width: 18px;
  height: 18px;
  color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: 50px;
  font-size: 0.9rem;
  color: #b3d8b0;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(22, 163, 74, 0.15);
  border-color: rgba(74, 111, 165, 0.3);
  color: #e8ffe6;
  transform: translateY(-2px);
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-bottom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  color: #04130d;
  overflow: hidden;
}

.hero-bottom-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Legacy hero styles for compatibility */
.hero-section-dark {
  position: relative;
  margin-top: -88px;
  padding: 140px 20px;
  background: radial-gradient(circle at center, #0a1c14, #04130d);
  color: #e8ffe6;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title-dark {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight-gradient {
  background: linear-gradient(to right, #16a34a, #22c55e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-dark {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.button-dark {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(91, 155, 213, 0.2));
  border: 2px solid #16a34a;
  color: #e8ffe6;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.button-dark:hover {
  background: rgba(74, 144, 226, 0.3);
  border-color: #22c55e;
  transform: translateY(-2px);
}

.hero-background-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.2), transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .hero-title-dark {
    font-size: 2.5rem;
  }
  .hero-subtitle-dark {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title-dark {
    font-size: 2rem;
  }
  .hero-subtitle-dark {
    font-size: 1rem;
  }
}

/* Styles pour le bloc À propos de nous */
.about-section {
  padding: 100px 0;
  position: relative;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--light-accent);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
}

.about-card {
  background-color: #0a1c14;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent-color);
}

.about-card-title {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

.about-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--accent-color);
  opacity: 0.15;
  font-size: 3rem;
}

/* Styles pour le bloc Nos programmes */
.programs-section {
  padding: 100px 0;
  background-color: #0a1c14;
  position: relative;
}

.programs-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: var(--light-accent);
  border-radius: 50%;
  z-index: 1;
}

.programs-section::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 100px;
  height: 100px;
  background-color: var(--light-accent);
  border-radius: 50%;
  z-index: 1;
}

.program-card {
  border-radius: 8px;
  background-color: var(--background-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 2;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.program-card-header {
  background-color: var(--accent-color);
  color: white;
  padding: 20px;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.program-card-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.program-card-body {
  padding: 25px;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.program-feature-icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 1.25rem;
}

.program-feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.program-feature-text p {
  margin: 0;
  font-size: 0.95rem;
}

.program-number {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
}

.program-cta {
  margin-top: 20px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .about-section, .programs-section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-card {
    margin-bottom: 30px;
  }
  
  .program-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .about-card-title {
    font-size: 1.3rem;
  }
  
  .program-card-header h3 {
    font-size: 1.3rem;
  }
}

/* Styles pour le bloc Nos formules d'abonnement */
.pricing-section {
  padding: 100px 0;
  background: radial-gradient(circle at top, #f2f6fc, #e4ecf5);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2d2d3a;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #606c76;
}

.pricing-card {
  background: #0a1c14;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #e8ffe6;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #123024, #0a1c14);
  border: 2px solid #16a34a;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1d1d2c;
  margin-bottom: 10px;
}

.pricing-desc {
  font-size: 1rem;
  color: #7a7a8c;
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}

.pricing-price span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}

.btn {
  display: inline-block;
  padding: 12px 12px;
  font-size: 0.95rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-select {
  background-color: #16a34a;
  color: #e8ffe6;
}

.btn-select:hover {
  background-color: #17412d;
}

.btn-featured {
  background-color: #e8ffe6;
  color: #16a34a;
  border: 2px solid #16a34a;
}

.btn-featured:hover {
  background-color: #16a34a;
  color: #e8ffe6;
}

/* Pricing Section (new layout) */
.pricing-section {
  padding: 120px 0;
  background: radial-gradient(circle at 15% 20%, rgba(22, 163, 74, 0.08), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(22, 163, 74, 0.12), transparent 40%),
              #04130d;
}

.pricing {
  max-width: 1200px;
}

.pricing-headline {
  text-align: center;
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto 48px;
}

.pricing-headline h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 800;
  color: #e8ffe6;
}

.pricing-headline p {
  margin: 0 auto;
  max-width: 640px;
  color: #b6e7c2;
  line-height: 1.7;
}

.pill.soft {
  background: rgba(22, 163, 74, 0.14);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #bbf7d0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.pricing-card {
  position: relative;
  background: linear-gradient(150deg, rgba(22, 163, 74, 0.14), rgba(6, 46, 25, 0.9));
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 20px;
  padding: 22px;
  color: #e8ffe6;
  display: grid;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.pricing-card.neon::after {
  content: '';
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card.featured {
  border: 1.5px solid #22c55e;
  box-shadow: 0 30px 60px rgba(34, 197, 94, 0.18);
}

.pricing-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: #22c55e;
  color: #04130d;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.pricing-top {
  display: grid;
  gap: 8px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: #e8ffe6;
}

.price span {
  display: block;
  font-size: 0.9rem;
  color: #9ed2a6;
  font-weight: 500;
}

.pricing-card .desc {
  margin: 0;
  color: #b6e7c2;
  line-height: 1.6;
}

.pricing-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.pricing-bullets li {
  padding: 10px 12px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 12px;
  color: #d8f3dc;
  font-weight: 600;
}

.btn-hero-primary.full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.pricing-compare {
  background: #0a1c14;
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 16px;
}

.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.compare-head .label {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #9ed2a6;
  margin: 0 0 4px;
}

.compare-head h3 {
  margin: 0;
  color: #e8ffe6;
  font-size: 1.4rem;
  font-weight: 800;
}

.legend {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b6e7c2;
}

.legend .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.dot.basic { background: rgba(22, 163, 74, 0.4); }
.dot.pro { background: rgba(34, 197, 94, 0.8); }
.dot.master { background: #e0ff6a; }

.compare-grid {
  display: grid;
  gap: 12px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  align-items: center;
  padding: 12px 14px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 12px;
  color: #d8f3dc;
  font-weight: 600;
}

.compare-row .muted {
  color: #9ed2a6;
  font-weight: 500;
}

@media (max-width: 900px) {
  .compare-row {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .compare-row span:nth-child(2) {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 680px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .compare-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .compare-row span:first-child {
    grid-column: 1 / -1;
  }
}


/* Premium Testimonials Section */
.testimonials {
  padding: 120px 20px;
  background: radial-gradient(circle at 20% 20%, rgba(22, 163, 74, 0.08), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(22, 163, 74, 0.12), transparent 40%),
              #03140d;
}

.testimonials-headline {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  display: grid;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #22c55e;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 999px;
  letter-spacing: 0.3px;
  width: fit-content;
  margin: 0 auto;
}

.testimonials-headline h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 800;
  color: #e8ffe6;
  margin: 0;
}

.testimonials-headline p {
  color: #b6e7c2;
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.7;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: linear-gradient(160deg, rgba(22, 163, 74, 0.15), rgba(6, 46, 25, 0.9));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  padding: 22px;
  color: #e8ffe6;
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-card.wide {
  grid-column: span 2;
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.stars {
  letter-spacing: 3px;
  color: #22c55e;
  font-weight: 800;
}

.tag {
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  font-weight: 700;
  color: #bbf7d0;
  font-size: 0.9rem;
}

.testimonial-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d8f3dc;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.testimonial-meta strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.testimonial-meta span {
  color: #9ed2a6;
  font-size: 0.95rem;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 10px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.35);
  border-radius: 12px;
  color: #bbf7d0;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .testimonial-card.wide {
    grid-column: span 1;
  }
  .testimonial-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Legacy testimonials styles */
.testimonials-dark {
  background: #04130d;
  color: #e8ffe6;
  padding: 100px 0;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8ffe6;
  margin-bottom: 10px;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  color: #b5b5b5;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-box {
  background: #1c1f2a;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.testimonial-message {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #dedede;
}

.testimonial-person {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #16a34a;
}

.testimonial-name {
  font-weight: 600;
  color: #e8ffe6;
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #a0a0a0;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .testimonial-box {
    padding: 25px 20px;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonial-message {
    font-size: 1rem;
  }
}


/* Styles pour le bloc Avantages */
.advantages-section-dark {
  padding: 100px 0;
  background: linear-gradient(to bottom, #101820, #0d0d12);
  color: #f2f2f2;
  position: relative;
}

.section-title.text-gradient {
  background: linear-gradient(to right, #16a34a, #22c55e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 2.2rem;
}

.text-muted {
  color: rgba(255, 255, 255, 0.65);
}

/* Features & Stats Redesign Overrides */
.features {
  padding: 120px 20px;
  background: radial-gradient(circle at 15% 20%, rgba(22, 163, 74, 0.08), transparent 35%),
              radial-gradient(circle at 85% 0%, rgba(22, 163, 74, 0.12), transparent 40%),
              #04130d;
}

.features-headline {
  text-align: center;
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto 48px;
}

.features-headline h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 800;
  color: #e8ffe6;
}

.features-headline p {
  margin: 0 auto;
  color: #b6e7c2;
  max-width: 660px;
  line-height: 1.7;
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.feature-hero {
  background: linear-gradient(160deg, rgba(22, 163, 74, 0.18), rgba(6, 46, 25, 0.85));
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 20px;
  padding: 28px;
  color: #e8ffe6;
  display: grid;
  gap: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.feature-flag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.32);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #bbf7d0;
  width: fit-content;
}

.feature-hero h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 800;
}

.feature-hero p {
  margin: 0;
  color: #d8f3dc;
  line-height: 1.7;
}

.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
  color: #e8ffe6;
}

.feature-bullets .check {
  color: #22c55e;
  font-weight: 900;
}

.feature-meta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.feature-meta-card {
  background: rgba(6, 46, 25, 0.6);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.meta-label {
  color: #9ed2a6;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.meta-value {
  color: #e8ffe6;
  font-weight: 800;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.feature-card {
  background: linear-gradient(150deg, rgba(22, 163, 74, 0.14), rgba(6, 46, 25, 0.88));
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(22, 163, 74, 0.16);
  border: 1px solid rgba(22, 163, 74, 0.3);
  display: grid;
  place-items: center;
  color: #22c55e;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.18);
  z-index: 1;
}

.feature-card-body h4 {
  margin: 0 0 6px;
  color: #e8ffe6;
  font-size: 1.1rem;
  font-weight: 800;
}

.feature-card-body p {
  margin: 0 0 10px;
  color: #d8f3dc;
  line-height: 1.6;
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-tags span {
  padding: 6px 10px;
  background: rgba(22, 163, 74, 0.14);
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 10px;
  color: #bbf7d0;
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .features-layout {
    grid-template-columns: 1fr;
  }
}

.stats {
  padding: 120px 20px;
  background: radial-gradient(circle at 10% 10%, rgba(22, 163, 74, 0.08), transparent 35%),
              radial-gradient(circle at 90% 5%, rgba(22, 163, 74, 0.1), transparent 40%),
              #03140d;
}

.stats-wrapper {
  display: grid;
  gap: 24px;
}

.stats-headline {
  text-align: center;
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}

.stats-headline h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #e8ffe6;
}

.stats-headline p {
  margin: 0;
  color: #b6e7c2;
  line-height: 1.7;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.kpi-card {
  background: linear-gradient(150deg, rgba(22, 163, 74, 0.12), rgba(6, 46, 25, 0.85));
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 16px;
  padding: 18px;
  color: #e8ffe6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.kpi-label {
  color: #9ed2a6;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 0.95rem;
}

.kpi-value {
  font-size: 2rem;
  font-weight: 800;
  margin: 6px 0;
}

.kpi-value span {
  font-size: 1rem;
  margin-left: 4px;
  color: #b6e7c2;
}

.kpi-sub {
  margin: 0;
  color: #d8f3dc;
  font-size: 0.95rem;
}

.stats-progress {
  background: #0a1c14;
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 12px;
}

.progress-row {
  display: grid;
  grid-template-columns: 1.4fr 3fr auto;
  gap: 12px;
  align-items: center;
}

.progress-label {
  color: #e8ffe6;
  font-weight: 700;
}

.progress-bar {
  position: relative;
  height: 12px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.24);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border-radius: 999px;
}

.progress-value {
  color: #bbf7d0;
  font-weight: 800;
}

@media (max-width: 720px) {
  .progress-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .progress-value {
    justify-self: start;
  }
}

/* About page new sections */
.about-hero {
  padding: 140px 20px 80px;
  background: radial-gradient(circle at 20% 10%, rgba(22, 163, 74, 0.1), transparent 40%),
              radial-gradient(circle at 85% 0%, rgba(22, 163, 74, 0.12), transparent 45%),
              #03140d;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.about-hero-copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.2rem, 3.2vw, 3.1rem);
  font-weight: 800;
  color: #e8ffe6;
}

.about-hero-copy p {
  color: #b6e7c2;
  line-height: 1.7;
  margin: 0 0 20px;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.hero-stat {
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.28);
  border-radius: 14px;
  padding: 14px;
  color: #e8ffe6;
}

.hero-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
}

.hero-stat-label {
  color: #9ed2a6;
  font-weight: 700;
}

.about-hero-visual .hero-card {
  background: linear-gradient(160deg, rgba(22, 163, 74, 0.2), rgba(4, 19, 13, 0.9));
  border: 1px solid rgba(22, 163, 74, 0.32);
  border-radius: 18px;
  padding: 16px;
  color: #e8ffe6;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.hero-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.dot-live {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
  display: inline-block;
}

.hero-card-body {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  color: #d8f3dc;
  font-weight: 700;
}

.mini-label {
  color: #9ed2a6;
  font-weight: 700;
}

.mini-value {
  color: #e8ffe6;
}

.mini-badge {
  padding: 4px 10px;
  background: rgba(22, 163, 74, 0.16);
  border: 1px solid rgba(22, 163, 74, 0.32);
  border-radius: 999px;
  font-weight: 800;
  color: #bbf7d0;
}

.hero-card-progress {
  height: 10px;
  background: rgba(22, 163, 74, 0.12);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(22, 163, 74, 0.24);
  position: relative;
}

.hero-card-progress span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

.hero-card-footer {
  color: #9ed2a6;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.about-mission {
  padding: 100px 20px;
  background: #04130d;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.mission-copy h2 {
  color: #e8ffe6;
  font-weight: 800;
  margin: 10px 0 12px;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
}

.mission-copy p {
  color: #b6e7c2;
  line-height: 1.7;
  margin: 0 0 12px;
}

.pillars {
  display: grid;
  gap: 12px;
}

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: 14px;
  background: rgba(22, 163, 74, 0.08);
}

.pillar-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.pillar h4 {
  margin: 0 0 4px;
  color: #e8ffe6;
  font-weight: 800;
}

.pillar p {
  margin: 0;
  color: #b6e7c2;
}

.mission-cards {
  display: grid;
  gap: 12px;
}

.metric-card {
  background: linear-gradient(150deg, rgba(22, 163, 74, 0.14), rgba(6, 46, 25, 0.9));
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 16px;
  padding: 16px;
  color: #e8ffe6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.metric-label {
  color: #9ed2a6;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 6px 0;
}

.metric-sub {
  margin: 0;
  color: #d8f3dc;
}

@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

.learning-tracks {
  padding: 100px 20px;
  background: #0a1c14;
}

.section-headline {
  text-align: center;
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.section-headline h2 {
  margin: 0;
  color: #e8ffe6;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.section-headline p {
  margin: 0;
  color: #b6e7c2;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.track-card {
  background: linear-gradient(150deg, rgba(22, 163, 74, 0.12), rgba(6, 46, 25, 0.9));
  border: 1px solid rgba(22, 163, 74, 0.26);
  border-radius: 16px;
  padding: 18px;
  color: #e8ffe6;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 10px;
}

.track-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.16);
  border: 1px solid rgba(22, 163, 74, 0.28);
  display: grid;
  place-items: center;
  color: #22c55e;
}

.track-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.track-card p {
  margin: 0;
  color: #d8f3dc;
  line-height: 1.6;
}

.track-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #bbf7d0;
  font-weight: 700;
}

.proof {
  padding: 100px 20px;
  background: #04130d;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.proof-copy h2 {
  margin: 10px 0 12px;
  color: #e8ffe6;
  font-weight: 800;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
}

.proof-copy p {
  color: #b6e7c2;
  line-height: 1.7;
  margin: 0 0 14px;
}

.proof-steps {
  display: grid;
  gap: 12px;
}

.proof-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(22, 163, 74, 0.2);
  background: rgba(22, 163, 74, 0.08);
}

.step-number {
  font-weight: 900;
  color: #22c55e;
}

.proof-step h4 {
  margin: 0 0 4px;
  color: #e8ffe6;
}

.proof-step p {
  margin: 0;
  color: #b6e7c2;
}

.proof-panel {
  background: linear-gradient(150deg, rgba(22, 163, 74, 0.14), rgba(6, 46, 25, 0.9));
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 16px;
  padding: 16px;
  color: #e8ffe6;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 10px;
}

.panel-head {
  font-weight: 800;
  letter-spacing: 0.4px;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 10px;
  padding: 8px 10px;
}

.panel-row .tag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.3);
  font-weight: 700;
}

.tag.success { color: #bbf7d0; border-color: rgba(22,163,74,0.4); }
.tag.warn { color: #e0ff6a; border-color: rgba(224,255,106,0.5); }
.tag.small { color: #b6e7c2; border-color: rgba(22,163,74,0.3); }

.panel-footer {
  color: #9ed2a6;
  font-size: 0.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot.todo { background: rgba(34, 197, 94, 0.4); }
.dot.done { background: #22c55e; }
.dot.review { background: #e0ff6a; }

@media (max-width: 900px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

.company-facts {
  padding: 100px 20px;
  background: #0a1c14;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.fact-card {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 14px;
  padding: 16px;
  color: #e8ffe6;
  display: grid;
  gap: 8px;
}

.fact-card.full {
  grid-column: span 2;
}

.fact-card h3 {
  margin: 0;
  font-weight: 800;
  color: #e8ffe6;
}

.fact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #d8f3dc;
  display: grid;
  gap: 6px;
}

.fact-card p {
  margin: 0;
  color: #d8f3dc;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .fact-card.full {
    grid-column: span 1;
  }
}

.about-cta {
  padding: 100px 20px;
  background: radial-gradient(circle at 10% 10%, rgba(22, 163, 74, 0.1), transparent 35%), #04130d;
}

.about-cta-card {
  background: linear-gradient(150deg, rgba(22, 163, 74, 0.16), rgba(6, 46, 25, 0.9));
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 16px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  color: #e8ffe6;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.about-cta-card h2 {
  margin: 8px 0 6px;
  font-weight: 800;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
}

.about-cta-card p {
  margin: 0;
  color: #b6e7c2;
  line-height: 1.6;
}

.about-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-cta .btn-hero-primary,
.about-cta .btn-hero-secondary {
  padding: 12px 16px;
  border-radius: 12px;
}

@media (max-width: 720px) {
  .about-cta-card {
    grid-template-columns: 1fr;
  }
}

.image-wrapper img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.advantage-dark {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease;
}

.advantage-dark:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(74, 144, 226, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle span {
  color: #16a34a;
  font-size: 1.7rem;
}

.advantage-dark h5 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  font-weight: 600;
}

.advantage-dark p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Styles pour le bloc Appel à l'action */
.cta-section-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1c14 0%, #04130d 100%);
}

.cta-modern-content {
  background: #0a1c14;
  padding: 50px 40px;
  color: #e8ffe6;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.cta-modern-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f1f2c;
}

.cta-modern-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

.cta-modern-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #16a34a;
  color: #e8ffe6;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-modern-btn:hover {
  background-color: #17412d;
}

.cta-visual {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-modern-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}


/* Styles pour le bloc Contacts */
.contact-section-dark {
  background: #12141b;
  color: #e5e5e5;
  padding: 100px 0;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8ffe6;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #1d1f29;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-box {
  background-color: #292c3e;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box .material-icons {
  color: #16a34a;
  font-size: 24px;
}

.contact-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fdfdfd;
}

.contact-link {
  color: #16a34a;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Legacy contact form styles - kept for backward compatibility */
.contact-form:not(#lead) {
  background-color: rgba(26, 35, 50, 0.6);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(22, 163, 74, 0.2);
  backdrop-filter: blur(10px);
}

.form-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #e8ffe6;
}

.form-input:not(.form-control),
.form-textarea:not(.form-control) {
  width: 100%;
  background: rgba(15, 20, 25, 0.6);
  border: 2px solid rgba(22, 163, 74, 0.25);
  padding: 15px 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  color: #e8ffe6;
  font-size: 1rem;
  font-family: 'Libre Franklin', sans-serif;
  transition: all 0.3s ease;
}

.form-input:not(.form-control)::placeholder,
.form-textarea:not(.form-control)::placeholder {
  color: rgba(168, 181, 200, 0.5);
}

.form-input:not(.form-control):focus,
.form-textarea:not(.form-control):focus {
  outline: none;
  border-color: #22c55e;
  background: rgba(15, 20, 25, 0.8);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

.form-textarea:not(.form-control) {
  height: 120px;
  resize: vertical;
  min-height: 120px;
}

.btn-submit:not(.btn-contact-submit) {
  width: 100%;
  padding: 16px 36px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e8ffe6;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
  border: 1px solid rgba(74, 111, 165, 0.3);
}

.btn-submit:not(.btn-contact-submit):hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, #22c55e, #38bdf8);
}

/* Media queries */
@media (max-width: 991.98px) {
  .advantages-section, .cta-section, .contact-section, .form-section {
    padding: 70px 0;
  }
  
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-section.image-right .cta-text,
  .cta-section.image-left .cta-text {
    margin-right: 0;
    margin-left: 0;
    margin-top: 30px;
  }
  
  .cta-image-container {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .cta-title {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 30px 20px;
  }
}


/* new styles */


/* business-section */
.business-category {
  padding: 80px 0;
  background: #f4f6fb;
}

.section-header h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: #e8ffe6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 24px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #16a34a;
}

.service-content p {
  font-size: 15px;
  color: #444;
  flex-grow: 1;
  margin-bottom: 16px;
  line-height: 1.6;
}

.tag {
  display: inline-block;
  background-color: #0a1c14;
  color: #16a34a;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 576px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 14px;
  }
}



/* Dark table styles */
.table {
  color: #e8ffe6;
}

.table thead th {
  background-color: #0a1c14 !important;
  color: #e8ffe6 !important;
  border-color: #123024 !important;
}

.table tbody td {
  background-color: #04130d !important;
  color: #e8ffe6 !important;
  border-color: #123024 !important;
}

.table-bordered {
  border-color: #123024 !important;
}

/* === Hero & Tips Redesign Overrides === */
.hero {
  position: relative;
  margin-top: -88px;
  padding: 140px 20px 80px;
  background: radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.15), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(20, 83, 45, 0.4), transparent 45%),
              linear-gradient(180deg, #04130d 0%, #0a1c14 60%, #04130d 100%);
  overflow: hidden;
  color: #e8ffe6;
}

.hero-bg-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.06), rgba(34, 197, 94, 0.04));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.35);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.12;
  font-weight: 800;
}

.hero-title-accent {
  color: #22c55e;
  text-shadow: 0 10px 30px rgba(34, 197, 94, 0.25);
}

.hero-copy {
  color: #b3d8b0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 12px;
  color: #e8ffe6;
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.15);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #04130d;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.4);
}

.btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-hero-primary:hover .btn-shimmer {
  transform: translateX(100%);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(22, 163, 74, 0.35);
  color: #e8ffe6;
  text-decoration: none;
  background: rgba(22, 163, 74, 0.06);
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  color: #22c55e;
  border-color: #22c55e;
  transform: translateY(-2px);
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  color: #b3d8b0;
}

.assurance-item {
  padding: 10px 12px;
  background: rgba(22, 163, 74, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.assurance-divider {
  width: 1px;
  height: 18px;
  background: rgba(22, 163, 74, 0.35);
}

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: linear-gradient(160deg, rgba(10, 28, 20, 0.9), rgba(4, 19, 13, 0.9));
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.label {
  font-size: 0.85rem;
  color: #b3d8b0;
  margin: 0;
}

.status-pill {
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.16);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  font-weight: 700;
}

.hero-progress {
  margin: 12px 0 16px;
}

.progress-label {
  color: #b3d8b0;
  margin-bottom: 6px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(22, 163, 74, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.35);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  color: #b3d8b0;
  margin-top: 6px;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 16px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(22, 163, 74, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(22, 163, 74, 0.12);
  color: #e8ffe6;
}

.check-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #16a34a;
  color: #04130d;
  font-weight: 800;
  font-size: 12px;
}

.check-icon.pending {
  background: rgba(22, 163, 74, 0.12);
  color: #22c55e;
}

.hero-mentors {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 12px;
}

.mentor-stack {
  display: flex;
  align-items: center;
  gap: 4px;
}

.avatar-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.mentor-link {
  margin-left: auto;
  color: #22c55e;
  text-decoration: none;
  font-weight: 700;
}

.hero-floats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.float-card {
  flex: 1;
  min-width: 180px;
  padding: 12px 14px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: 12px;
  color: #e8ffe6;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.mini-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #22c55e;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.hero-bottom-wave {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 16px 70px;
  }
  .hero-grid {
    gap: 22px;
  }
  .hero-card {
    padding: 16px;
  }
}

.tips {
  padding: 90px 20px 80px;
  background: linear-gradient(180deg, #04130d 0%, #0a1c14 100%);
}

.tips-headline {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tips-headline .pill {
  align-self: center;
  padding: 10px 18px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 999px;
  font-weight: 700;
  color: #22c55e;
}

.tips-headline h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #e8ffe6;
}

.tips-headline p {
  margin: 0;
  color: #b3d8b0;
  line-height: 1.7;
}

.tips-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.tips-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tip-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 16px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 14px;
}

.step-index {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid rgba(22, 163, 74, 0.35);
  background: rgba(22, 163, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #22c55e;
  font-size: 1.1rem;
}

.tip-step h3 {
  margin: 0 0 6px;
  color: #e8ffe6;
}

.tip-step p {
  margin: 0 0 10px;
  color: #b3d8b0;
  line-height: 1.6;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 10px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 999px;
  color: #22c55e;
  font-weight: 700;
  font-size: 0.85rem;
}

.tips-right {
  position: relative;
}

.tip-card-large {
  background: linear-gradient(170deg, rgba(10, 28, 20, 0.9), rgba(4, 19, 13, 0.95));
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.tip-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.15);
}

.tip-board {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.board-column {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 12px;
  padding: 10px;
}

.board-column .label {
  margin-bottom: 8px;
  color: #b3d8b0;
}

.board-item {
  padding: 10px;
  background: rgba(22, 163, 74, 0.06);
  border: 1px dashed rgba(22, 163, 74, 0.25);
  border-radius: 10px;
  color: #e8ffe6;
  margin-bottom: 8px;
}

.board-item.active {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
}

.board-item.done {
  border-color: rgba(22, 163, 74, 0.2);
  text-decoration: line-through;
  color: #b3d8b0;
}

.tip-card-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(22, 163, 74, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cta-inline {
  color: #22c55e;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 992px) {
  .tips-layout {
    grid-template-columns: 1fr;
  }
}
