/*--------------------------------------------------------------
  OPUX360 — Components
  Contient : Header, Hero, Counter, Features, Services/Iconbox,
             Pricing, FAQ, CTA, Footer, Buttons, Language Switcher,
             Scroll to Top.
  Charger APRÈS opux360-base.css, AVANT opux360-responsive.css
--------------------------------------------------------------*/

/* ============================================================
   1. HEADER — Premium (version définitive de premium-header.css)
   ============================================================ */

/* --- Base --- */
.cs_site_header.cs_style_1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(-20px);
  animation: headerReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

@keyframes headerReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initial state - transparent */
.cs_site_header.cs_style_1 .cs_main_header {
  background: rgba(250, 250, 248, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Scrolled state - frosted glass effect */
.cs_site_header.cs_style_1.cs_sticky_active .cs_main_header {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 4px 30px rgba(13, 27, 42, 0.04);
}

/* --- Header Container --- */
.cs_main_header_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  gap: 16px;
  position: relative;
  z-index: 1001;
  width: 100%;
}

.cs_sticky_active .cs_main_header_in {
  padding: 0.875rem 0;
}

/* --- Logo --- */
.cs_site_branding {
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.cs_site_branding img {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  width: auto;
}

.cs_site_branding:hover {
  opacity: 0.8;
}

/* --- Navigation Desktop --- */
.cs_nav {
  display: flex;
  align-items: center;
}

.cs_nav_list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cs_nav_list > li {
  position: relative;
}

.cs_nav_list > li > a {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--premium-gray-600, #5c5a54);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_nav_list > li > a:hover {
  color: var(--premium-primary, #0d1b2a);
}

/* --- Header CTA Buttons --- */
.cs_header_cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--premium-primary, #0d1b2a);
  color: var(--premium-white, #fafaf8);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_header_cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--premium-accent, #60c4e3);
  transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.cs_header_cta span {
  position: relative;
  z-index: 1;
}

.cs_header_cta:hover {
  color: var(--premium-primary, #0d1b2a);
}

.cs_header_cta:hover::before {
  left: 0;
}

.cs_header_cta span::after {
  content: "→";
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cs_header_cta:hover span::after {
  transform: translateX(3px);
}

/* Demo CTA Button — outline style */
.cs_header_cta--outline {
  background: transparent !important;
  color: var(--premium-primary, #0d1b2a) !important;
  border: 1.5px solid var(--premium-primary, #0d1b2a) !important;
}

.cs_header_cta--outline::before {
  background: var(--premium-primary, #0d1b2a) !important;
}

.cs_header_cta--outline:hover {
  color: var(--premium-white, #fafaf8) !important;
}

/* Trial Button — filled accent (primary CTA) */
.cs_header_trial {
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
  padding: 0.75rem 1.25rem;
  background: transparent;
  color: var(--premium-primary, #0d1b2a);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_header_trial.cs_header_trial--filled {
  background: var(--premium-accent, #60c4e3);
  border-color: var(--premium-accent, #60c4e3);
  color: var(--premium-primary, #0d1b2a);
}

.cs_header_trial.cs_header_trial--filled:hover {
  background: var(--premium-accent-light, #76d8f7);
  border-color: var(--premium-accent-light, #76d8f7);
  color: var(--premium-primary, #0d1b2a);
}

/* --- Mobile Menu Toggle --- */
.cs_menu_toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--premium-gray-200, #d4d2cd);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
}

.cs_menu_toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--premium-primary, #0d1b2a);
  margin: 2px 0;
  transition: all 0.3s ease;
}

.cs_menu_toggle:hover {
  border-color: var(--premium-accent, #60c4e3);
}

.cs_menu_toggle:hover span {
  background: var(--premium-accent, #60c4e3);
}

.cs_menu_toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.cs_menu_toggle.active span:nth-child(2) {
  opacity: 0;
}
.cs_menu_toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* --- Overlay --- */
.cs_header_overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 998;
}

.cs_header_overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Body lock when menu open --- */
body.cs_menu_open {
  overflow: hidden;
}

/* ============================================================
   2. HERO SECTION
   ============================================================ */

#home {
  min-height: 100vh;
}

.cs_hero.cs_style_1 {
  background: linear-gradient(
    165deg,
    var(--premium-white) 0%,
    var(--premium-cream) 50%,
    rgba(201, 162, 39, 0.03) 100%
  );
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative element */
.cs_hero.cs_style_1::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cs_hero_bg {
  display: none;
}

.cs_hero_title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem) !important;
  font-weight: 500;
  color: var(--premium-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.cs_hero_subtitle {
  font-size: 1.125rem;
  color: var(--premium-gray-600);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 400;
}

/* Hero image refinement */
.cs_hero_thumbnail img {
  border-radius: 1rem;
  box-shadow:
    0 25px 80px -20px rgba(13, 27, 42, 0.15),
    0 10px 30px -10px rgba(13, 27, 42, 0.1);
  transition: var(--transition-elegant);
}

.cs_hero_thumbnail:hover img {
  transform: translateY(-8px);
  box-shadow:
    0 35px 100px -25px rgba(13, 27, 42, 0.2),
    0 15px 40px -15px rgba(13, 27, 42, 0.12);
}

.cs_hero_shape_vector {
  opacity: 0.4;
}

/* ============================================================
   3. COUNTER SECTION
   ============================================================ */

.cs_heading_bg {
  background: var(--premium-primary) !important;
  position: relative;
}

.cs_heading_bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.cs_contet_title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.cs_funfact_number {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.cs_funfact.cs_style_1 h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.cs_counter_shape_1,
.cs_counter_shape_2 {
  display: none;
}

/* ============================================================
   4. SECTION HEADINGS
   ============================================================ */

.cs_section_heading.cs_style_1 {
  margin-bottom: var(--space-lg);
}

.cs_section_title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--premium-primary);
  position: relative;
}

.cs_section_text {
  font-size: 1.125rem;
  color: var(--premium-gray-600);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   5. FEATURES CARDS (fusion premium-features + alternate + dark-section)
   ============================================================ */

/* --- Section Wrapper --- */
.cs_features_section {
  position: relative;
}

/* --- Card Container --- */
.cs_card.cs_style_1 {
  padding: var(--space-lg, 4rem) 0;
  position: relative;
}

.cs_card.cs_style_1:first-of-type {
  padding-top: 0;
}

/* Remove default separator (overridden by dark-section) */
.cs_card.cs_style_1::after {
  display: none;
}

/* Light card row */
.cs_card.cs_style_1 > .row:not(.cs_heading_bg) {
  background: transparent;
  padding: 4rem 0;
}

.cs_card.cs_style_1 > .row:not(.cs_heading_bg) .cs_card_content::before {
  color: var(--premium-accent, #60c4e3);
}

/* --- Thumbnail — Sophisticated Frame --- */
.cs_card_thumbnail {
  position: relative;
  border-radius: 0 !important;
  overflow: visible;
}

/* Elegant offset border frame */
.cs_card_thumbnail::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--premium-accent, #60c4e3);
  opacity: 0.3;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

/* Subtle corner accents */
.cs_card_thumbnail::after {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--premium-accent, #60c4e3);
  border-left: 2px solid var(--premium-accent, #60c4e3);
  opacity: 0.6;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_card_thumbnail:hover::before {
  top: -20px;
  left: -20px;
  opacity: 0.5;
}

.cs_card_thumbnail:hover::after {
  width: 60px;
  height: 60px;
  opacity: 1;
}

.cs_card_thumbnail img {
  border-radius: 0 !important;
  box-shadow:
    0 30px 80px -20px rgba(13, 27, 42, 0.18),
    0 0 0 1px rgba(13, 27, 42, 0.04);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_card_thumbnail:hover img {
  transform: scale(1.02);
  box-shadow:
    0 40px 100px -25px rgba(13, 27, 42, 0.22),
    0 0 0 1px rgba(13, 27, 42, 0.06);
}

/* Mirrored frame for alternating cards */
.order-lg-2 .cs_card_thumbnail::before {
  left: 16px;
  right: -16px;
}

.order-lg-2 .cs_card_thumbnail::after {
  left: auto;
  right: -16px;
  border-left: none;
  border-right: 2px solid var(--premium-accent, #60c4e3);
}

/* --- Content Area --- */
.cs_card_content {
  padding-left: 1rem;
}

/* Subtle section label */
.cs_card_content::before {
  content: '.';
  display: block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--premium-accent, #60c4e3);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.cs_card_content .cs_section_title {
  font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--premium-primary, #0d1b2a);
  margin-bottom: 1.5rem;
}

.cs_card_content .cs_section_text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--premium-gray-600, #5c5a54);
  max-width: 520px;
}

/* Animation on scroll */
.cs_card_content .cs_section_heading {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.1s;
}

.cs_card_content .cs_btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.5s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Feature List --- */
.cs_list.cs_style_1 {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  counter-reset: feature-counter;
}

.cs_list.cs_style_1 li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--premium-gray-100, #e8e6e1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  counter-increment: feature-counter;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cs_list.cs_style_1 li:nth-child(1) { animation-delay: 0.2s; }
.cs_list.cs_style_1 li:nth-child(2) { animation-delay: 0.3s; }
.cs_list.cs_style_1 li:nth-child(3) { animation-delay: 0.4s; }

.cs_list.cs_style_1 li:first-child {
  border-top: 1px solid var(--premium-gray-100, #e8e6e1);
}

/* Hover lift effect */
.cs_list.cs_style_1 li:hover {
  padding-left: 0.75rem;
  background: linear-gradient(
    90deg,
    rgba(201, 162, 39, 0.04) 0%,
    transparent 100%
  );
}

/* Premium numbered indicator */
.cs_list_icon {
  position: inherit !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: var(--premium-cream, #f5f4f0);
  border: 1px solid var(--premium-gray-100, #e8e6e1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hide original SVG, show number instead */
.cs_list_icon svg {
  display: none;
}

.cs_list_icon::before {
  content: counter(feature-counter, decimal-leading-zero);
  font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--premium-gray-400, #9a9890);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_list.cs_style_1 li:hover .cs_list_icon {
  background: var(--premium-accent, #60c4e3);
  border-color: var(--premium-accent, #60c4e3);
}

.cs_list.cs_style_1 li:hover .cs_list_icon::before {
  color: var(--premium-primary, #0d1b2a);
}

/* Feature text */
.cs_list.cs_style_1 li > span:last-child {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--premium-primary, #0d1b2a);
  line-height: 1.5;
  padding-top: 0.65rem;
}

/* --- CTA Button in Features (light bg) --- */
.cs_card_content .cs_btn.cs_style_1 {
  margin-top: 1rem;
  background: transparent;
  color: var(--premium-primary, #0d1b2a);
  border: 1.5px solid var(--premium-primary, #0d1b2a);
  padding: 1rem 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_card_content .cs_btn.cs_style_1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--premium-primary, #0d1b2a);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.cs_card_content .cs_btn.cs_style_1 span {
  position: relative;
  z-index: 1;
}

.cs_card_content .cs_btn.cs_style_1:hover {
  color: var(--premium-white, #fafaf8);
  border-color: var(--premium-primary, #0d1b2a);
}

.cs_card_content .cs_btn.cs_style_1:hover::before {
  left: 0;
}

/* Small arrow indicator */
.cs_card_content .cs_btn.cs_style_1 span::after {
  content: '→';
  display: inline-block;
  margin-left: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_card_content .cs_btn.cs_style_1:hover span::after {
  transform: translateX(4px);
}

/* ============================================================
   6. DARK SECTION (features with cs_heading_bg)
   Version définitive de premium-features-dark-section.css
   ============================================================ */

/* Dark card — Full-width background */
.cs_card.cs_style_1 .row.cs_heading_bg {
  background: var(--premium-primary, #0d1b2a);
  position: relative;
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Gradient overlay */
.cs_card.cs_style_1 .row.cs_heading_bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(96, 196, 227, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 20%, rgba(96, 196, 227, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* Top accent line */
.cs_card.cs_style_1 .row.cs_heading_bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--premium-accent, #60c4e3) 20%,
    var(--premium-accent, #60c4e3) 80%,
    transparent 100%
  );
  opacity: 0.3;
  z-index: 2;
}

/* Dark section — Image full height */
.row.cs_heading_bg .col-xl-5.order-lg-2,
.row.cs_heading_bg .col-lg-5.order-lg-2 {
  position: absolute !important;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  padding: 0;
  width: 45%;
  max-width: 45%;
}

.row.cs_heading_bg .cs_card_thumbnail {
  position: absolute !important;
  inset: 0;
  height: 100% !important;
  width: 100% !important;
  border-radius: 0 !important;
  overflow: hidden;
}

/* Remove decorative frames for full-height image */
.row.cs_heading_bg .cs_card_thumbnail::before {
  display: block !important;
  content: '';
  position: absolute;
  inset: 0;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  border: none !important;
  background: linear-gradient(
    90deg,
    var(--premium-primary, #0d1b2a) 0%,
    rgba(13, 27, 42, 0.4) 20%,
    transparent 50%
  );
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.row.cs_heading_bg .cs_card_thumbnail::after {
  display: block !important;
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  right: auto;
  width: 3px;
  height: auto;
  border: none !important;
  background: var(--premium-accent, #60c4e3);
  opacity: 0.6;
  z-index: 2;
}

.row.cs_heading_bg .cs_card_thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.row.cs_heading_bg .cs_card_thumbnail:hover img {
  transform: none !important;
}

/* Dark section — Content column (aligned with Bootstrap container) */
.row.cs_heading_bg .col-xl-6.order-lg-1,
.row.cs_heading_bg .col-lg-7.order-lg-1 {
  position: relative;
  z-index: 2;
  width: 55%;
  max-width: 55%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-right: 3rem;
  padding-left: calc((100vw - min(1320px, 100vw - 3rem)) / 2 + 12px);
}

/* Dark section — Typography */
.row.cs_heading_bg .cs_card_content::before {
  color: var(--premium-accent, #60c4e3) !important;
}

.row.cs_heading_bg .cs_section_title {
  color: var(--premium-white, #fafaf8) !important;
}

.row.cs_heading_bg .cs_section_text {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Dark section — Feature List */
.row.cs_heading_bg .cs_list.cs_style_1 li {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.row.cs_heading_bg .cs_list.cs_style_1 li:first-child {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.row.cs_heading_bg .cs_list.cs_style_1 li:hover {
  background: linear-gradient(
    90deg,
    rgba(96, 196, 227, 0.1) 0%,
    transparent 100%
  ) !important;
}

/* Number boxes on dark bg */
.row.cs_heading_bg .cs_list_icon {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.row.cs_heading_bg .cs_list_icon::before {
  color: rgba(255, 255, 255, 0.5) !important;
}

.row.cs_heading_bg .cs_list.cs_style_1 li:hover .cs_list_icon {
  background: var(--premium-accent, #60c4e3) !important;
  border-color: var(--premium-accent, #60c4e3) !important;
}

.row.cs_heading_bg .cs_list.cs_style_1 li:hover .cs_list_icon::before {
  color: var(--premium-primary, #0d1b2a) !important;
}

/* Feature text on dark bg */
.row.cs_heading_bg .cs_list.cs_style_1 li > span:last-child,
.row.cs_heading_bg .cs_heading_color {
  color: var(--premium-white, #fafaf8) !important;
}

/* Dark section — CTA Button */
.row.cs_heading_bg .cs_card_content .cs_btn.cs_style_1 {
  background: transparent !important;
  color: var(--premium-white, #fafaf8) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.row.cs_heading_bg .cs_card_content .cs_btn.cs_style_1::before {
  background: var(--premium-accent, #60c4e3) !important;
}

.row.cs_heading_bg .cs_card_content .cs_btn.cs_style_1:hover {
  color: var(--premium-primary, #0d1b2a) !important;
  border-color: var(--premium-accent, #60c4e3) !important;
}

/* Dark section — Hide spacers */
.row.cs_heading_bg .cs_height_136,
.row.cs_heading_bg .cs_height_lg_80 {
  display: none !important;
}

/* ============================================================
   7. SERVICES / ICON BOXES
   ============================================================ */

.cs_iconbox.cs_style_1 {
  background: var(--premium-white);
  padding: var(--space-md);
  border: 1px solid var(--premium-gray-100);
  border-radius: 0;
  transition: var(--transition-smooth);
  position: relative;
}

.cs_iconbox.cs_style_1::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--premium-primary-light);
  transition: var(--transition-elegant);
}

.cs_iconbox.cs_style_1:hover {
  border-color: var(--premium-gray-200);
  box-shadow: 0 20px 60px -20px rgba(13, 27, 42, 0.1);
  transform: translateY(-4px);
}

.cs_iconbox.cs_style_1:hover::before {
  width: 100%;
}

.cs_iconbox_icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 64px;
  height: 64px;
  background: var(--premium-primary) !important;
  border-radius: 0 !important;
  transition: var(--transition-smooth);
}

.cs_iconbox.cs_style_1:hover .cs_iconbox_icon {
  background: var(--premium-accent) !important;
}

.cs_iconbox_icon svg,
.cs_iconbox_icon img {
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: var(--transition-smooth);
}

.cs_iconbox.cs_style_1:hover .cs_iconbox_icon svg,
.cs_iconbox.cs_style_1:hover .cs_iconbox_icon img {
  filter: brightness(0) saturate(100%);
  opacity: 1;
}

.cs_iconbox_title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--premium-primary);
  margin-top: var(--space-sm);
}

.cs_iconbox.cs_style_2 {
  padding: 40px 25px;
  margin-bottom: 24px;
}

/* ============================================================
   8. PRICING (fusion premium-overrides + premium-pricing-active)
   ============================================================ */

/* --- Base Pricing Card (from premium-overrides) --- */
.cs_pricing_card.cs_style_1 {
  background: var(--premium-white);
  border: 1px solid var(--premium-gray-100);
  border-radius: 0;
  padding: var(--space-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cs_pricing_card.cs_style_1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: var(--transition-smooth);
}

.cs_pricing_card.cs_style_1:hover {
  border-color: var(--premium-gray-200);
  box-shadow: 0 30px 80px -30px rgba(13, 27, 42, 0.12);
}

.cs_pricing_card.cs_style_1:hover::before {
  background: var(--premium-accent);
}

/* Featured pricing card */
.cs_pricing_card.cs_style_1.cs_popular,
.cs_pricing_card.cs_style_1.cs_active {
  background: var(--premium-primary);
  border-color: var(--premium-primary);
}

.cs_pricing_card.cs_style_1.cs_popular *,
.cs_pricing_card.cs_style_1.cs_active * {
  color: var(--premium-white);
}

.cs_pricing_card.cs_style_1.cs_popular .cs_pricing_icon,
.cs_pricing_card.cs_style_1.cs_active .cs_pricing_icon {
  background: rgba(201, 162, 39, 0.15);
}

.cs_pricing_card.cs_style_1.cs_popular::before,
.cs_pricing_card.cs_style_1.cs_active::before {
  background: var(--premium-accent);
}

.cs_pricing_title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--premium-gray-600);
}

.cs_pricing_price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--premium-primary);
  letter-spacing: -0.03em;
}

.cs_pricing_card.cs_style_1.cs_popular .cs_pricing_price,
.cs_pricing_card.cs_style_1.cs_active .cs_pricing_price {
  color: var(--premium-accent);
}

.cs_pricing_feature_list {
  list-style: none;
  padding: 0;
}

.cs_pricing_feature_list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--premium-gray-100);
  font-size: 0.95rem;
}

.cs_pricing_feature_list li:last-child {
  border-bottom: none;
  padding-left: 28px !important;
  font-weight: 500;
}

.cs_pricing_card.cs_style_1.cs_popular .cs_pricing_feature_list li,
.cs_pricing_card.cs_style_1.cs_active .cs_pricing_feature_list li {
  border-color: rgba(255, 255, 255, 0.1);
}

/* --- Pricing Table (from premium-pricing-active.css) --- */
.cs_pricing_table_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cs_pricing_table.cs_style_1 {
  padding: 40px 30px;
}

/* Active/Featured Card */
.cs_pricing_table.cs_style_1.active {
  background: var(--premium-primary, #0d1b2a);
  border: 1px solid var(--premium-primary, #0d1b2a);
  position: relative;
  transform: scale(1.03);
  z-index: 2;
  box-shadow:
    0 40px 100px -30px rgba(13, 27, 42, 0.35),
    0 0 0 1px rgba(201, 162, 39, 0.1);
}

/* Subtle glow effect */
.cs_pricing_table.cs_style_1.active::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80px;
  background: radial-gradient(
    ellipse at top,
    rgba(201, 162, 39, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* "Recommandé" badge */
.cs_pricing_table.cs_style_1.active .cs_pricing_head::before {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--premium-primary, #0d1b2a);
  background: var(--premium-accent, #60c4e3);
  padding: 0.35rem 0.75rem;
  line-height: 1;
}

/* Head section positioning */
.cs_pricing_table.cs_style_1.active .cs_pricing_head {
  position: relative;
}

/* Text colors — inverted for dark background */
.cs_pricing_table.cs_style_1.active,
.cs_pricing_table.cs_style_1.active p,
.cs_pricing_table.cs_style_1.active span {
  color: rgba(255, 255, 255, 0.7);
}

.cs_pricing_table.cs_style_1.active h2,
.cs_pricing_table.cs_style_1.active h3,
.cs_pricing_table.cs_style_1.active .cs_heading_color {
  color: var(--premium-white, #fafaf8);
}

/* Plan name in gold */
.cs_pricing_table.cs_style_1.active .cs_pricing_head > p:first-child,
.cs_pricing_table.cs_style_1.active .cs_purple_color,
.cs_pricing_table.cs_style_1.active .cs_medium.cs_purple_color {
  color: var(--premium-accent, #60c4e3) !important;
}

/* Pricing button — inverted style */
.cs_pricing_table.cs_style_1.active .cs_pricing_btn {
  background: var(--premium-accent, #60c4e3);
  color: var(--premium-primary, #0d1b2a);
  border-color: var(--premium-accent, #60c4e3);
  font-weight: 600;
}

.cs_pricing_table.cs_style_1.active .cs_pricing_btn:hover {
  background: var(--premium-accent-light, #76d8f7);
  border-color: var(--premium-accent-light, #76d8f7);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -8px rgba(96, 196, 227, 0.4);
  color: var(--premium-primary, #0d1b2a) !important;
}

/* Feature list — refined for dark background */
.cs_pricing_table.cs_style_1.active .cs_pricing_feature_list li {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
}

.cs_pricing_table.cs_style_1.active .cs_pricing_feature_list li.cs_heading_color {
  color: var(--premium-white, #fafaf8);
}

/* Checkmark icons */
.cs_pricing_table.cs_style_1.active .cs_pricing_feature_list i,
.cs_pricing_table.cs_style_1.active .cs_pricing_feature_list .fa-check {
  color: var(--premium-accent, #60c4e3) !important;
}

/* Last item */
.cs_pricing_table.cs_style_1.active .cs_pricing_feature_list li.cs_purple_color {
  color: var(--premium-accent, #60c4e3) !important;
  font-weight: 500;
}

/* Hover state */
.cs_pricing_table.cs_style_1.active:hover {
  transform: scale(1.04);
  box-shadow:
    0 50px 120px -35px rgba(13, 27, 42, 0.4),
    0 0 0 1px rgba(201, 162, 39, 0.2);
}

/* Corner decoration */
.cs_pricing_table.cs_style_1.active .cs_pricing_head::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -1px;
  width: 60px;
  height: 60px;
  border-right: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  pointer-events: none;
}

/* --- Pricing — Prix en FCFA --- */
.cs_pricing_pack_name {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  line-height: 1.4;
}

.cs_pricing_amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.cs_pricing_currency {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.cs_pricing_unit {
  font-size: 0.85rem;
  color: #6b7280;
}

/* --- Pricing — Badge strip (Gold & Platinum) --- */
.cs_pricing_badge_strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: -30px -35px 24px -35px;
  border-radius: 15px 15px 0 0;
}

.cs_pricing_table.active .cs_pricing_badge_strip {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cs_pricing_badge_strip.cs_pricing_badge_popular {
  background: #22c55e;
  color: #fff;
}

.cs_pricing_table.active .cs_pricing_pack_name {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Pricing — Carte "popular" (Platinum, vert) --- */
.cs_pricing_table.popular {
  border: 2px solid #22c55e;
}

.cs_pricing_table.popular .cs_pricing_amount,
.cs_pricing_table.popular .cs_pricing_currency {
  color: #16a34a;
}

.cs_pricing_btn_popular {
  background: #22c55e !important;
  color: #fff !important;
  border-color: #22c55e !important;
}

.cs_pricing_btn_popular:hover {
  background: #16a34a !important;
  border-color: #16a34a !important;
}

.cs_popular_check {
  color: #22c55e !important;
}

/* --- Pricing — Fonctionnalités non disponibles (×) --- */
.cs_pricing_feature_list li.cs_pricing_unavailable {
  color: #9ca3af;
  opacity: 0.7;
}

.cs_pricing_feature_list li.cs_pricing_unavailable i {
  color: #9ca3af;
}

.cs_pricing_table.active .cs_pricing_feature_list li.cs_pricing_unavailable {
  color: rgba(255, 255, 255, 0.3);
}

.cs_pricing_table.active .cs_pricing_feature_list li.cs_pricing_unavailable i {
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   9. FAQ / ACCORDION
   ============================================================ */

.cs_accordian {
  background: var(--premium-white);
  border: 1px solid var(--premium-gray-100);
  border-radius: 0 !important;
  margin-bottom: var(--space-sm);
  padding: 30px;
  transition: var(--transition-smooth);
}

.cs_accordian:hover {
  border-color: var(--premium-gray-200);
}

.cs_accordian.active {
  border-color: var(--premium-accent);
  border-left-width: 3px;
}

.cs_accordian_head {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--premium-primary);
  padding: 1.25rem 1.5rem;
}

.cs_accordian_body {
  padding: 0 1.5rem 1.25rem;
  color: var(--premium-gray-600);
  line-height: 1.7;
}

.cs_accordian_toggle {
  width: 24px;
  height: 24px;
}

.cs_accordian_toggle::before,
.cs_accordian_toggle::after {
  background: var(--premium-gray-400);
}

.cs_accordian.active .cs_accordian_toggle::before,
.cs_accordian.active .cs_accordian_toggle::after {
  background: var(--premium-accent);
}

/* ============================================================
   10. CTA SECTION (fusion premium-overrides + premium-cta-button)
   ============================================================ */

.cs_cta.cs_style_1 {
  background: var(--premium-primary);
  border-radius: 0 !important;
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cs_cta.cs_style_1::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(201, 162, 39, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* CTA text */
.cs_cta.cs_style_1 .cs_cta_text h2,
.cs_cta_text h2 {
  font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--premium-white, #fafaf8);
  margin-bottom: 1.5rem;
}

.cs_cta.cs_style_1 .cs_cta_text p,
.cs_cta_text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: 0.5rem;
}

/* Small note under button */
.cs_cta_note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

/* Newsletter form in CTA */
.cs_newsletter_form {
  max-width: 480px;
}

.cs_newsletter_input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0 !important;
  color: var(--premium-white);
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.cs_newsletter_input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cs_newsletter_input:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--premium-accent);
  outline: none;
}

.cs_newsletter_form .cs_btn {
  background: var(--premium-accent);
  color: var(--premium-primary);
  border-radius: 0 !important;
}

.cs_newsletter_form .cs_btn:hover {
  background: var(--premium-accent-light);
}

.cs_ellipse_1,
.cs_ellipse_2,
.cs_vector_1 {
  display: none;
}

/* CTA button wrapper */
.cs_cta_btn_wrapper {
  margin-top: 2rem;
}

/* ============================================================
   11. FOOTER (version définitive de premium-footer.css)
   ============================================================ */

.cs_footer.cs_style_1 {
  background: var(--premium-primary, #0d1b2a);
  border-top: none;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay */
.cs_footer.cs_style_1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(201, 162, 39, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Top gold accent line */
.cs_footer.cs_style_1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--premium-accent, #60c4e3) 20%,
    var(--premium-accent, #60c4e3) 80%,
    transparent 100%
  );
  opacity: 0.3;
}

/* Footer main content */
.cs_footer_main {
  position: relative;
  z-index: 1;
}

/* Brand section */
.cs_footer_widget.cs_text_widget .cs_brand {
  margin-bottom: 1.5rem;
}

.cs_footer_widget.cs_text_widget .cs_brand img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.cs_footer_widget.cs_text_widget .cs_brand:hover img {
  opacity: 1;
}

.cs_footer_widget.cs_text_widget p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 380px;
}

/* Widget titles */
.cs_footer_widget_title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--premium-accent, #60c4e3);
  margin-bottom: 1.75rem;
  position: relative;
  display: inline-block;
}

/* Subtle underline accent */
.cs_footer_widget_title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--premium-accent, #60c4e3);
  opacity: 0.5;
}

/* Footer menu links */
.cs_footer_medu {
  padding: 0;
  margin: 0;
}

.cs_footer_medu li {
  list-style: none;
  margin-bottom: 0.875rem;
}

.cs_footer_medu li:last-child {
  margin-bottom: 0;
}

/* Non-link text (like address) */
.cs_footer_medu li:not(:has(a)) {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
}

.cs_footer_medu a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

/* Hover arrow indicator */
.cs_footer_medu a::before {
  content: '→';
  position: absolute;
  left: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: var(--premium-accent, #60c4e3);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_footer_medu a:hover {
  color: var(--premium-white, #fafaf8);
  padding-left: 1.25rem;
}

.cs_footer_medu a:hover::before {
  opacity: 1;
  left: 0;
}

/* Contact info styling */
.cs_contact_widget .cs_footer_medu li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Location dot */
.cs_contact_widget .cs_footer_medu li:first-child::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--premium-accent, #60c4e3);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Footer bottom bar */
.cs_footer_bottom {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 !important;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.cs_footer_text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Social links */
.cs_social_links.cs_style_1 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cs_social_links.cs_style_1 a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_social_links.cs_style_1 a .cs_social_icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_social_links.cs_style_1 a .cs_social_icon i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_social_links.cs_style_1 a:hover {
  color: var(--premium-accent, #60c4e3);
}

.cs_social_links.cs_style_1 a:hover .cs_social_icon {
  border-color: var(--premium-accent, #60c4e3);
  background: rgba(96, 196, 227, 0.1);
}

.cs_social_links.cs_style_1 a:hover .cs_social_icon i {
  color: var(--premium-accent, #60c4e3);
}

/* Decorative corner elements */
.cs_footer_main::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-right: 1px solid rgba(201, 162, 39, 0.1);
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  pointer-events: none;
}

.cs_footer_main::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 120px;
  height: 120px;
  border-left: 1px solid rgba(201, 162, 39, 0.08);
  border-bottom: 1px solid rgba(201, 162, 39, 0.08);
  pointer-events: none;
}

/* Newsletter / CTA in footer */
.cs_footer_newsletter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
  margin-bottom: 3rem;
}

.cs_footer_newsletter input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--premium-white, #fafaf8);
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
}

.cs_footer_newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cs_footer_newsletter input:focus {
  border-color: var(--premium-accent, #60c4e3);
  outline: none;
}

/* Animation on scroll */
.cs_footer_widget {
  opacity: 0;
  transform: translateY(20px);
  animation: footerFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cs_footer_widget:nth-child(1) { animation-delay: 0.1s; }
.cs_footer_widget:nth-child(2) { animation-delay: 0.2s; }
.cs_footer_widget:nth-child(3) { animation-delay: 0.3s; }

@keyframes footerFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   12. BUTTONS
   ============================================================ */

/* --- Primary button (cs_style_1) --- */
.cs_btn.cs_style_1 {
  background: var(--premium-primary);
  color: var(--premium-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 0;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.cs_btn.cs_style_1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--premium-accent);
  transition: var(--transition-elegant);
  z-index: 0;
}

.cs_btn.cs_style_1 span {
  position: relative;
  color: #fff;
  z-index: 1;
}

.cs_btn.cs_style_1:hover {
  color: var(--premium-primary);
  box-shadow: 0 10px 40px -10px rgba(13, 27, 42, 0.3);
}

.cs_btn.cs_style_1:hover::before {
  left: 0;
}

/* Secondary button / Play button */
.cs_player_btn {
  color: var(--premium-gray-600);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.cs_player_btn:hover {
  color: var(--premium-primary);
}

.cs_play_btn_icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--premium-gray-200);
  background: transparent;
  transition: var(--transition-smooth);
}

.cs_player_btn:hover .cs_play_btn_icon {
  border-color: var(--premium-accent);
  background: var(--premium-accent-subtle);
}

/* --- Hero Buttons distinction trial vs demo --- */
.btn-trial,
.btn-trial span {
  background: #0d1b2a !important;
  color: #fafaf8 !important;
  border-color: #0d1b2a !important;
  font-weight: 700 !important;
}

.btn-demo {
  background: transparent !important;
  border: 2px solid #0d1b2a !important;
}

.btn-demo span {
  color: #0d1b2a !important;
  font-weight: 400 !important;
}

.btn-demo:hover span {
  color: #fafaf8 !important;
}

/* --- CTA Primary Button --- */
.cs_btn.cs_cta_primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--premium-accent, #60c4e3);
  color: var(--premium-primary, #0d1b2a);
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  min-width: 240px;
  border: 2px solid var(--premium-accent, #60c4e3);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 0 20px rgba(96, 196, 227, 0.3),
    0 10px 40px -10px rgba(96, 196, 227, 0.4);
}

.cs_btn.cs_cta_primary:hover {
  background: var(--premium-accent-light, #76d8f7);
  border-color: var(--premium-accent-light, #76d8f7);
  color: var(--premium-primary, #0d1b2a);
  transform: translateY(-3px);
  box-shadow:
    0 0 30px rgba(96, 196, 227, 0.5),
    0 15px 50px -10px rgba(96, 196, 227, 0.5);
}

/* Arrow icon */
.cs_btn.cs_cta_primary::after {
  content: '→';
  font-size: 1.125rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_btn.cs_cta_primary:hover::after {
  transform: translateX(5px);
}

/* Shine effect on hover */
.cs_btn.cs_cta_primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_btn.cs_cta_primary:hover::before {
  left: 100%;
}

/* Pulsing animation variant */
.cs_btn.cs_cta_primary.cs_pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(96, 196, 227, 0.3),
      0 10px 40px -10px rgba(96, 196, 227, 0.4);
  }
  50% {
    box-shadow:
      0 0 35px rgba(96, 196, 227, 0.5),
      0 15px 50px -10px rgba(96, 196, 227, 0.6);
  }
}

.cs_btn.cs_cta_primary.cs_pulse:hover {
  animation: none;
}

/* --- CTA Outline variant --- */
.cs_btn.cs_cta_outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--premium-accent, #60c4e3);
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 1.5px solid rgba(96, 196, 227, 0.4);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs_btn.cs_cta_outline:hover {
  background: rgba(96, 196, 227, 0.1);
  border-color: var(--premium-accent, #60c4e3);
  color: var(--premium-white, #fafaf8);
}

/* ============================================================
   13. TESTIMONIALS
   ============================================================ */

.cs_testimonial.cs_style_1 {
  background: var(--premium-cream);
  padding: var(--space-md);
  border: none;
  border-radius: 0;
  position: relative;
}

.cs_testimonial.cs_style_1::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--premium-accent);
  opacity: 0.2;
  line-height: 1;
}

.cs_testimonial_text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--premium-primary);
  line-height: 1.6;
}

/* ============================================================
   14. LANGUAGE SWITCHER
   (couleur accent corrigée : #6e57e0 → #60c4e3)
   ============================================================ */

/* --- Dropdown Style --- */
.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
}

.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: var(--heading-color, #1a1a2e);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-dropdown-toggle:hover {
  background: rgba(96, 196, 227, 0.1);
  border-color: var(--premium-accent, #60c4e3);
}

.lang-dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-dropdown-toggle::after {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--heading-color, #1a1a2e);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.lang-dropdown-item:hover {
  background: rgba(96, 196, 227, 0.1);
  color: var(--premium-accent, #60c4e3);
}

.lang-dropdown-item.active {
  background: var(--premium-accent, #60c4e3);
  color: #fff;
}

.lang-dropdown-item .lang-flag {
  font-size: 18px;
}

/* --- Button Style (Alternative) --- */
.lang-switch-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-switch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: transparent;
  border: none;
  border-radius: 20px;
  color: var(--heading-color, #1a1a2e);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lang-switch-btn:hover {
  background: rgba(96, 196, 227, 0.15);
}

.lang-switch-btn.active {
  background: var(--premium-accent, #60c4e3);
  color: #fff;
}

/* Sticky header adjustments */
.cs_sticky_active .lang-dropdown-toggle {
  border-color: rgba(26, 26, 46, 0.2);
}

.cs_sticky_active .lang-dropdown-toggle:hover {
  border-color: var(--premium-accent, #60c4e3);
}

/* Dark mode / heading BG adjustments */
.cs_heading_bg .lang-dropdown-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cs_heading_bg .lang-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Flag icons */
.lang-flag {
  display: inline-flex;
  align-items: center;
  font-size: 1.2em;
  line-height: 1;
}

.lang-flag-img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

/* ============================================================
   15. SCROLL TO TOP
   ============================================================ */

.cs_scrollup {
  background: var(--premium-primary) !important;
  border-radius: 0 !important;
  width: 48px;
  height: 48px;
  transition: var(--transition-smooth);
}

.cs_scrollup:hover {
  background: var(--premium-accent) !important;
  transform: translateY(-4px);
}
