/*
Theme Name: Hello Elementor Child
Theme URI: https://alumnow.co
Description: Hello Elementor Child Theme pour AlumNow
Author: Viix Digital
Author URI: https://viixdigital.com
Template: hello-elementor
Version: 1.3.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-elementor-child
*/

/* =============================================
   ALUMNOW - Variables globales (maquette Codia)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800&family=Outfit:wght@400;500;600&family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600&family=Poppins:wght@400&display=swap');

:root {
  /* Couleurs primaires */
  --an-primary: #3889ff;
  --an-primary-dark: #056aff;
  --an-primary-gradient: linear-gradient(160.13deg, #3889ff, #056aff);
  --an-primary-light-gradient: linear-gradient(160.13deg, #3889ff, #8ab5fa);

  /* Couleurs texte */
  --an-heading: #001428;
  --an-nav-dark: #001d47;
  --an-body: #293948;
  --an-body-light: #33506c;
  --an-accent-dark: #0c3775;
  --an-solution-blue: #1876ff;

  /* Backgrounds */
  --an-white: #ffffff;
  --an-bg-offwhite: #fafafa;
  --an-bg-light-blue: #f4f8ff;
  --an-bg-input: #f5f9ff;
  --an-footer-bg: #005be0;
  --an-testimonials-gradient: linear-gradient(180deg, #ebf2fc, #eef9fb);

  /* Stats */
  --an-stat-amber: #ffaf01;
  --an-stat-magenta: #c700b1;
  --an-stat-blue: #056bff;

  /* Glassmorphism */
  --an-glass-bg: rgba(255, 255, 255, 0.75);
  --an-glass-border: rgba(56, 137, 255, 0.08);
  --an-glass-blur: blur(7px);

  /* Shadows */
  --an-shadow-nav: 0 0 18px 0 rgba(0, 0, 0, 0.05);
  --an-shadow-hero-card: 0 40px 120px 0 rgba(56, 137, 255, 0.23);
  --an-shadow-stat: 0 24px 80px 0 rgba(56, 137, 255, 0.16);

  /* Typography */
  --an-font-urbanist: 'Urbanist', sans-serif;
  --an-font-outfit: 'Outfit', sans-serif;
  --an-font-inter: 'Inter', sans-serif;
  --an-font-jakarta: 'Plus Jakarta Sans', sans-serif;
  --an-font-poppins: 'Poppins', sans-serif;
}

/* =============================================
   ALUMNOW - Reset & Global
   ============================================= */

body {
  font-family: var(--an-font-outfit);
  color: var(--an-body);
  overflow-x: hidden;
}

/* =============================================
   SECTION 1 — NAVIGATION
   ============================================= */

.alumnow-nav {
  position: sticky;
  top: 20px;
  max-width: 1316px;
  margin: 40px auto 0;
  padding: 27px 38px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  box-shadow: var(--an-shadow-nav);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.alumnow-nav .nav-logo img {
  width: 200px;
  height: auto;
}

.alumnow-nav .nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.alumnow-nav .nav-links a {
  font-family: var(--an-font-jakarta);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: var(--an-nav-dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.alumnow-nav .nav-links a:hover {
  color: var(--an-primary);
}

.alumnow-nav .nav-links a.active {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  color: var(--an-primary);
}

.alumnow-nav .nav-links a.active::after {
  content: '';
  display: block;
  width: 15px;
  height: 2px;
  background: var(--an-primary);
  border-radius: 2px;
  margin: 2px auto 0;
}

.alumnow-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--an-primary);
  color: var(--an-white);
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.alumnow-nav .nav-cta:hover {
  background: var(--an-primary-dark);
  transform: translateY(-2px);
}

/* Native Elementor nav section */
.alumnow-nav-section {
  position: sticky !important;
  top: 20px !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.alumnow-nav-section .elementor-inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* Nav links inside text-editor widget */
.nav-links-native {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.nav-links-native a {
  font-family: var(--an-font-jakarta);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: var(--an-nav-dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.nav-links-native a:hover {
  color: var(--an-primary);
}

.nav-links-native a.active {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  color: var(--an-primary);
}

.nav-links-native a.active::after {
  content: '';
  display: block;
  width: 15px;
  height: 2px;
  background: var(--an-primary);
  border-radius: 2px;
  margin: 2px auto 0;
}

/* =============================================
   SECTION 2 — HERO (fond blanc, maquette Codia)
   ============================================= */

.alumnow-hero {
  position: relative;
  width: 100%;
  overflow: visible;
  text-align: center;
  background: var(--an-white);
  padding: 60px 0 0;
}

/* Container interne — repère pour les widgets */
.alumnow-hero .hero-container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Texte hero */
.alumnow-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 824px;
  margin: 0 auto;
  padding: 0 0 32px;
}

.alumnow-hero h1 {
  font-family: var(--an-font-urbanist);
  font-size: 56px;
  font-weight: 800;
  line-height: 70px;
  color: var(--an-heading);
  margin-bottom: 16px;
}

.alumnow-hero h1 .gradient-word {
  color: var(--an-heading);
  -webkit-text-fill-color: var(--an-heading);
}

.alumnow-hero .hero-subtitle {
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 400;
  color: var(--an-body-light);
  max-width: 765px;
  margin: 0 auto 32px;
  line-height: 24px;
}

.alumnow-hero .hero-subtitle strong {
  font-weight: 600;
  color: var(--an-body-light);
}

.alumnow-hero .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 0;
}

.alumnow-hero .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--an-primary-gradient);
  color: var(--an-white);
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.alumnow-hero .btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 137, 255, 0.3);
}

.alumnow-hero .btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(160.13deg, #3889ff, #8ab5fa);
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 100px;
  text-decoration: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1.5px solid rgba(56, 137, 255, 0.3);
  transition: transform 0.2s ease;
}

.alumnow-hero .btn-hero-ghost:hover {
  transform: translateY(-2px);
}

/* Zone dashboard + widgets flottants */
.alumnow-hero .hero-visual {
  position: relative;
  max-width: 1300px;
  margin: 5px auto 0;
  padding: 0 20px;
  overflow: hidden;
  padding-bottom: 0;
  z-index: 555;
}

.alumnow-hero .hero-dashboard {
  position: relative;
  max-width: 1093px;
  margin: 0 auto;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -10px 80px 0 rgba(56, 137, 255, 0.16);
  overflow: hidden;
  z-index: 2;
}

.alumnow-hero .hero-dashboard img {
  width: 100%;
  height: auto;
  display: block;
}

/* Widgets flottants — absolute dans .hero-container (1240px) */
.alumnow-hero .hero-widget-left,
.alumnow-hero .hero-widget-right {
  position: absolute;
  z-index: 3;
  border-radius: 28px;
  box-shadow: 0 24px 80px 0 rgba(56, 137, 255, 0.16);
}

.alumnow-hero .hero-widget-left {
  left: -30px;
  top: 20px;
  width: 190px;
  height: auto;
}

.alumnow-hero .hero-widget-right {
  right: -65px;
  top: 30px;
  width: 250px;
  height: auto;
}

/* =============================================
   SECTION 3 — CRM INTEGRATIONS
   ============================================= */

.alumnow-integrations {
  text-align: center;
  padding: 60px 0 0;
}

.alumnow-integrations .integrations-label {
  font-family: var(--an-font-outfit);
  font-size: 18px;
  font-weight: 500;
  color: var(--an-accent-dark);
  margin-bottom: 32px;
}

.alumnow-integrations .integrations-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.alumnow-integrations .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(56, 137, 255, 0.05);
  border-radius: 24px;
  padding: 11px 32px;
  backdrop-filter: blur(2px);
  font-family: var(--an-font-outfit);
  font-size: 14px;
  font-weight: 500;
  color: #1a1736;
}

.alumnow-integrations .pill img {
  height: 24px;
  width: auto;
}

/* =============================================
   SECTION 4 — SOCIAL PROOF / LOGOS
   ============================================= */

.alumnow-logos {
  max-width: 1240px;
  margin: 40px auto 0;
  text-align: center;
}

/* Carousel auto-scroll infini */
.alumnow-logos .logos-carousel {
  overflow: hidden;
  margin-bottom: 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.alumnow-logos .logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: logos-scroll 20s linear infinite;
}

.alumnow-logos .logos-track img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.alumnow-logos .logos-track .logo-divider {
  width: 1px;
  height: 24px;
  background: #e0e0e0;
  flex-shrink: 0;
}

@keyframes logos-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.alumnow-logos .logos-carousel:hover .logos-track {
  animation-play-state: paused;
}

/* Séparateur décoratif ligne-point-ligne */
.alumnow-logos .logos-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 384px;
  margin: 0 auto 24px;
}

.alumnow-logos .logos-separator .sep-line {
  width: 179px;
  height: 1px;
  background: #e0e0e0;
}

.alumnow-logos .logos-separator .sep-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e0e0e0;
}

/* Google Rating widget */
.alumnow-logos .google-rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.alumnow-logos .google-rating-icon {
  display: flex;
  width: 52px;
  height: 52px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #e9f2ff;
}

.alumnow-logos .google-rating-icon img {
  width: 28px;
  height: 28px;
}

.alumnow-logos .google-rating {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(56, 137, 255, 0.11);
  border-radius: 1440px;
  padding: 1px;
  height: 28px;
}

.alumnow-logos .google-rating .rating-score {
  background: var(--an-white);
  border-radius: 1440px 2px 2px 1440px;
  padding: 4px 8px 4px 6px;
  font-family: var(--an-font-outfit);
  font-size: 14px;
  font-weight: 500;
  color: #26114a;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 26px;
}

.alumnow-logos .google-rating .rating-max {
  font-family: var(--an-font-outfit);
  font-size: 14px;
  font-weight: 500;
  color: var(--an-heading);
  padding: 0 8px;
}

.alumnow-logos .google-rating-label {
  font-family: var(--an-font-outfit);
  font-size: 14px;
  font-weight: 400;
  color: var(--an-heading);
}

/* =============================================
   SECTION 5 — PROBLÈME
   ============================================= */

.alumnow-problem {
  max-width: 1440px;
  margin: 48px auto 0;
}

.alumnow-problem .problem-inner {
  background: linear-gradient(157.71deg, rgba(56, 137, 255, 0.03), rgba(56, 137, 255, 0.01));
  border-radius: 70px;
  padding: 70px 175px;
}

.alumnow-section-label {
  font-family: var(--an-font-urbanist);
  font-size: 14px;
  font-weight: 600;
  color: var(--an-primary);
  letter-spacing: 0.28px;
  text-align: center;
  margin-bottom: 24px;
}

.alumnow-section-label::before,
.alumnow-section-label::after {
  content: '•';
  display: inline-block;
  margin: 0 8px;
  filter: blur(2px);
  color: var(--an-primary);
}

.alumnow-section-title {
  font-family: var(--an-font-urbanist);
  font-size: 42px;
  font-weight: 700;
  line-height: 50.4px;
  color: var(--an-heading);
  text-align: center;
  margin-bottom: 16px;
}

.alumnow-section-subtitle {
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 400;
  color: #293948;
  text-align: center;
  max-width: 765px;
  margin: 0 auto 48px;
  line-height: 24px;
}

.alumnow-problem .problem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.alumnow-problem .problem-grid .problem-card {
  width: 363.33px;
}

.alumnow-problem .problem-card {
  padding: 32px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.alumnow-problem .problem-card-bottom {
  border: none !important;
}

.alumnow-problem .problem-card .card-icon {
  width: 44px;
  height: 44px;
  background: rgba(56, 137, 255, 0.13);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alumnow-problem .problem-card .card-icon img {
  width: 24px;
  height: 24px;
}

.alumnow-problem .problem-card h4 {
  font-family: var(--an-font-urbanist);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--an-heading);
  margin: 0;
}

.alumnow-problem .problem-card p {
  font-family: var(--an-font-outfit);
  font-size: 14px;
  font-weight: 400;
  color: #293948;
  line-height: 21px;
  margin: 0;
}

/* =============================================
   SECTION 6 — SOLUTION
   ============================================= */

.alumnow-solution {
  max-width: 1240px;
  margin: 48px auto 0;
  padding: 0 20px;
}

.alumnow-solution .solution-columns {
  display: flex;
  align-items: center;
  gap: 124px;
}

.alumnow-solution .solution-cta {
  text-align: center;
  margin-top: 48px;
}

.alumnow-solution .solution-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alumnow-solution .solution-text {
  flex: 0 0 527px;
}

.alumnow-solution .solution-text .alumnow-section-label,
.alumnow-solution .solution-text .alumnow-section-title,
.alumnow-solution .solution-text .alumnow-section-subtitle {
  text-align: left;
  margin-left: 0;
}

.alumnow-solution .feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  padding-left: 0;
}

.alumnow-solution .feature-divider-line {
  width: 1px;
  background-color: #e6e2e3;
  border: 1px solid #80a8e3;
  border-radius: 2px;
  margin-left: 28px;
}

.alumnow-solution .feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 6px 0;
  border: 0.75px solid rgba(0, 81, 197, 0.22);
  border-radius: 18px;
  padding: 16px;
  font-family: var(--an-font-outfit);
  font-size: 16px;
  color: #293847;
  line-height: 24px;
}

.alumnow-solution .feature-item .feature-icon {
  flex-shrink: 0;
  width: 24px;
  padding-top: 2px;
}

.alumnow-solution .feature-item .feature-label {
  font-weight: 500;
}

.alumnow-solution .solution-visual {
  flex: 1;
  position: relative;
}

.alumnow-solution .linkedin-card-wrapper {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  border: 1px solid rgba(56, 137, 255, 0.13);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  padding: 32px;
}

.alumnow-solution .linkedin-card-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* =============================================
   SECTION 7 — COMMENT ÇA MARCHE
   ============================================= */

.alumnow-steps {
  max-width: 1240px;
  margin: 48px auto 0;
  text-align: center;
  padding: 0 20px;
}

.alumnow-steps .steps-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.alumnow-steps .step-card {
  width: 392px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alumnow-steps .step-card .step-image {
  width: 392px;
  height: 298px;
  object-fit: cover;
  border-radius: 10px;
}

.alumnow-steps .step-card h4 {
  font-family: var(--an-font-urbanist);
  font-size: 22px;
  font-weight: 600;
  line-height: 27.5px;
  color: var(--an-heading);
  margin: 0;
}

.alumnow-steps .step-card p {
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 400;
  color: #33506c;
  line-height: 24px;
  margin: 0;
}

/* =============================================
   SECTION 8 — FONCTIONNALITÉS / STATS
   ============================================= */

.alumnow-features {
  max-width: 1440px;
  margin: 48px auto 0;
  padding: 80px 0;
  border-radius: 70px;
  background: rgba(246, 246, 248, 0.2);
  overflow: hidden;
}

.alumnow-features .features-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.alumnow-features .features-visual {
  flex: 0 0 544px;
}

.alumnow-features .features-content {
  flex: 1;
}

.alumnow-features .features-content .alumnow-section-label,
.alumnow-features .features-content .alumnow-section-title,
.alumnow-features .features-content .alumnow-section-subtitle {
  text-align: left;
  margin-left: 0;
}

.alumnow-features .features-visual img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.alumnow-features .metrics-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.alumnow-features .metric-bar .metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.alumnow-features .metric-bar .metric-label {
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #33506c;
}

.alumnow-features .metric-bar .metric-value {
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #33506c;
}

.alumnow-features .bar-track {
  height: 10px;
  border-radius: 100px;
  padding: 2px;
}

.alumnow-features .bar-fill {
  height: 6px;
  border-radius: 100px;
}

.alumnow-features .bar-track.amber { background: rgba(255, 175, 1, 0.13); }
.alumnow-features .bar-track.amber .bar-fill { background: #ffaf01; }
.alumnow-features .bar-track.magenta { background: rgba(199, 0, 177, 0.14); }
.alumnow-features .bar-track.magenta .bar-fill { background: #c700b1; }
.alumnow-features .bar-track.blue { background: rgba(5, 107, 255, 0.14); }
.alumnow-features .bar-track.blue .bar-fill { background: #056bff; }

/* =============================================
   SECTION 9 — VALORISEZ / MÉDIA
   ============================================= */

.alumnow-media {
  max-width: 1240px;
  margin: 48px auto 0;
  text-align: center;
  padding: 0 20px;
}

.alumnow-media .media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.alumnow-media .media-card {
  height: 324px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.alumnow-media .media-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.alumnow-media .media-card .card-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.alumnow-media .media-card .interview-badge {
  display: inline-block;
  background: var(--an-primary);
  color: var(--an-white);
  font-family: var(--an-font-urbanist);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.alumnow-media .media-card .card-caption {
  font-family: var(--an-font-urbanist);
  font-size: 16px;
  font-weight: 700;
  color: var(--an-white);
  line-height: 19.2px;
  display: block;
}

/* =============================================
   SECTION 10 — TÉMOIGNAGES
   ============================================= */

.alumnow-testimonials {
  max-width: 1440px;
  margin: 48px auto 0;
  padding: 60px 0;
  border-radius: 70px;
  background: linear-gradient(180deg, #ebf2fc, #eef9fb);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.alumnow-testimonials .testimonials-inner {
  max-width: 856px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.alumnow-testimonials .testimonial-slides {
  position: relative;
  width: 684px;
  min-height: 280px;
}

.alumnow-testimonials .testimonial-card {
  background: var(--an-white);
  border-radius: 24px;
  border: 1px solid rgba(14, 59, 101, 0.04);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 1px 1px 0 rgba(5, 107, 255, 0.02);
  padding: 68px 39px 40px;
  width: 684px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.alumnow-testimonials .testimonial-card.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.alumnow-testimonials .testimonial-card .quote {
  font-family: var(--an-font-outfit);
  font-size: 20px;
  font-weight: 400;
  color: #001428;
  line-height: 30px;
  margin-bottom: 48px;
}

/* Carousel arrows */
.alumnow-testimonials .testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}

.alumnow-testimonials .carousel-arrow {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 1440px;
  border: 1px solid rgba(18, 55, 105, 0.08);
  box-shadow: 0 1px 1px 0 rgba(18, 55, 105, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.alumnow-testimonials .carousel-prev {
  opacity: 0.6;
}

.alumnow-testimonials .carousel-arrow:hover {
  opacity: 1;
}

.alumnow-testimonials .testimonial-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.79);
  border-radius: 100px;
  padding: 8px 35px;
  width: fit-content;
  margin: 0 auto;
}

.alumnow-testimonials .testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.alumnow-testimonials .testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.alumnow-testimonials .testimonial-card .author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.alumnow-testimonials .testimonial-card .author-name {
  font-family: var(--an-font-urbanist);
  font-size: 14px;
  font-weight: 600;
  color: #151528;
}

.alumnow-testimonials .testimonial-card .author-role {
  font-family: var(--an-font-outfit);
  font-size: 12px;
  font-weight: 400;
  color: var(--an-body-light);
}

/* =============================================
   SECTION 11 — COMPARAISON
   ============================================= */

.alumnow-comparison {
  max-width: 1240px;
  margin: 48px auto 0;
  text-align: center;
  padding: 0 20px;
}

.alumnow-comparison .comparison-grid {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}

.alumnow-comparison .comparison-col {
  width: 596px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.alumnow-comparison .col-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 100px;
}

.alumnow-comparison .col-header-icon {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alumnow-comparison .col-header h4 {
  font-family: var(--an-font-urbanist);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}

.alumnow-comparison .comparison-col.problems .col-header {
  background: rgba(231, 0, 11, 0.08);
}

.alumnow-comparison .comparison-col.problems .col-header h4 {
  color: #250405;
}

.alumnow-comparison .comparison-col.solutions .col-header {
  background: rgba(0, 166, 62, 0.08);
}

.alumnow-comparison .comparison-col.solutions .col-header h4 {
  color: #042d13;
}

.alumnow-comparison .comparison-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.alumnow-comparison .comp-card {
  padding: 32px;
  border-radius: 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.alumnow-comparison .comp-card .comp-icon {
  width: 30px;
  height: 30px;
}

.alumnow-comparison .comp-card h5 {
  font-family: var(--an-font-urbanist);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}

.alumnow-comparison .comp-card p {
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: -24px 0 0;
}

/* Problèmes : fond gris */
.alumnow-comparison .comparison-col.problems .comp-card {
  background: #fafafa;
  border: 1px solid #f3f3f3;
}

.alumnow-comparison .comparison-col.problems .comp-card h5 {
  color: #0a0a0a;
}

.alumnow-comparison .comparison-col.problems .comp-card p {
  color: #4a5565;
}

/* Solutions : fond bleu */
.alumnow-comparison .comparison-col.solutions .comp-card {
  background: #1876ff;
}

.alumnow-comparison .comparison-col.solutions .comp-card h5 {
  color: #ffffff;
}

.alumnow-comparison .comparison-col.solutions .comp-card p {
  color: #ffffff;
}

/* =============================================
   SECTION 12 — CONTACT
   ============================================= */

.alumnow-contact {
  position: relative;
  max-width: 1240px;
  margin: 48px auto 0;
  padding: 40px;
  background-image: url('/wp-content/uploads/alumnow/Accueil/Backgrounds/BG.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
  overflow: hidden;
}

.alumnow-contact .contact-bg-pattern {
  display: none;
}

.alumnow-contact .contact-columns {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.alumnow-contact .contact-info {
  width: 418px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.alumnow-contact .contact-info .alumnow-section-label::before,
.alumnow-contact .contact-info .alumnow-section-label::after {
  color: #ffffff;
}

.alumnow-contact .contact-info h2 {
  font-family: var(--an-font-urbanist);
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  line-height: 62.4px;
  margin-bottom: 24px;
}

.alumnow-contact .contact-info p {
  font-family: var(--an-font-outfit);
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 27px;
  margin-bottom: 32px;
}

.alumnow-contact .contact-details {
  display: flex;
  gap: 44px;
}

.alumnow-contact .contact-detail-label {
  display: block;
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.alumnow-contact .contact-detail-value {
  display: block;
  font-family: var(--an-font-outfit);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #ffffff;
}

.alumnow-contact .contact-form {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
}

.alumnow-contact .contact-form .form-field {
  margin-bottom: 24px;
}

.alumnow-contact .contact-form label {
  display: block;
  font-family: var(--an-font-urbanist);
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  color: #193359;
  margin-bottom: 10px;
  margin-bottom: 6px;
}

.alumnow-contact .contact-form input,
.alumnow-contact .contact-form textarea {
  width: 100%;
  background: var(--an-bg-input);
  border: none;
  border-radius: 100px;
  padding: 15px 22px;
  font-family: var(--an-font-outfit);
  font-size: 14px;
  color: var(--an-heading);
  margin-bottom: 16px;
  transition: box-shadow 0.3s;
}

.alumnow-contact .contact-form textarea {
  border-radius: 16px;
  min-height: 119px;
  resize: vertical;
}

.alumnow-contact .contact-form input:focus,
.alumnow-contact .contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(56, 137, 255, 0.15);
}

.alumnow-contact .contact-form .form-row {
  display: flex;
  gap: 20px;
}

.alumnow-contact .contact-form .form-row > div {
  flex: 1;
}

.alumnow-contact .contact-form .btn-submit {
  width: 100%;
  background: var(--an-primary);
  color: var(--an-white);
  font-family: var(--an-font-outfit);
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 100px;
  padding: 15px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.alumnow-contact .contact-form .btn-submit:hover {
  background: var(--an-primary-dark);
  transform: translateY(-2px);
}

/* =============================================
   SECTION 13 — FAQ
   ============================================= */

.alumnow-faq {
  max-width: 1240px;
  margin: 48px auto 0;
  text-align: center;
  padding: 0 20px;
}

.alumnow-faq .faq-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.alumnow-faq .faq-row {
  display: flex;
  gap: 24px;
}

.alumnow-faq .faq-item {
  flex: 1;
  background: #f4f8ff;
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.alumnow-faq .faq-item:hover {
  box-shadow: 0 4px 16px rgba(56, 137, 255, 0.08);
}

.alumnow-faq .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.alumnow-faq .faq-item .faq-question h4 {
  font-family: var(--an-font-urbanist);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #001428;
  margin: 0;
}

.alumnow-faq .faq-item .faq-question .toggle-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.alumnow-faq .faq-item .faq-answer {
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 400;
  color: #33506c;
  line-height: 24px;
  margin-top: 16px;
  display: none;
}

.alumnow-faq .faq-item.active .faq-answer {
  display: block;
}

.alumnow-faq .faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

/* =============================================
   SECTION 14 — FOOTER
   ============================================= */

.alumnow-footer {
  background: var(--an-footer-bg);
  padding: 70px 100px;
  color: var(--an-white);
}

.alumnow-footer .footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
}

.alumnow-footer .footer-brand {
  flex: 0 0 396px;
}

.alumnow-footer .footer-brand .footer-logo {
  width: 290px;
  height: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.alumnow-footer .footer-brand p {
  font-family: var(--an-font-outfit);
  font-size: 16px;
  font-weight: 500;
  color: var(--an-white);
  line-height: 1.6;
  margin-bottom: 8px;
}

.alumnow-footer .footer-brand .small-text {
  font-size: 14px;
  font-weight: 400;
}

.alumnow-footer .footer-right {
  flex: 1;
  display: flex;
  gap: 60px;
}

.alumnow-footer .footer-solutions h4 {
  font-family: var(--an-font-urbanist);
  font-size: 20px;
  font-weight: 700;
  color: var(--an-white);
  margin-bottom: 16px;
}

.alumnow-footer .footer-solutions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alumnow-footer .footer-solutions ul li {
  font-family: var(--an-font-outfit);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.alumnow-footer .footer-solutions ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.alumnow-footer .footer-solutions ul li a:hover {
  color: var(--an-white);
}

.alumnow-footer .footer-newsletter h4 {
  font-family: var(--an-font-urbanist);
  font-size: 32px;
  font-weight: 600;
  color: var(--an-white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.alumnow-footer .footer-newsletter .newsletter-input {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 48px;
  height: 50px;
  padding: 4px;
}

.alumnow-footer .footer-newsletter .newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--an-white);
  font-family: var(--an-font-poppins);
  font-size: 14px;
  padding: 0 16px;
}

.alumnow-footer .footer-newsletter .newsletter-input input::placeholder {
  color: var(--an-white);
  opacity: 0.7;
}

.alumnow-footer .footer-newsletter .newsletter-input button {
  width: 42px;
  height: 42px;
  background: var(--an-primary);
  border: none;
  border-radius: 50%;
  color: var(--an-white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.alumnow-footer .footer-newsletter .newsletter-input button:hover {
  background: var(--an-primary-dark);
}

.alumnow-footer .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 40px 0;
}

.alumnow-footer .footer-copyright {
  font-family: var(--an-font-outfit);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* =============================================
   UX ENHANCEMENTS — Sticky Nav, Focus, Motion
   ============================================= */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus visible states — accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--an-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Selection color */
::selection {
  background: rgba(56, 137, 255, 0.2);
  color: var(--an-heading);
}

/* Fix Elementor section padding reset */
.elementor-section.elementor-section-full_width > .elementor-container {
  max-width: 100%;
}

.elementor-widget-html {
  width: 100%;
}

/* =============================================
   BOUTON CTA GLOBAL
   ============================================= */

.alumnow-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--an-primary);
  color: var(--an-white);
  font-family: var(--an-font-outfit);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.alumnow-btn-primary:hover {
  background: var(--an-primary-dark);
  transform: translateY(-2px);
  color: var(--an-white);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .alumnow-solution,
  .alumnow-features .features-inner,
  .alumnow-contact .contact-inner {
    flex-direction: column;
    gap: 48px;
  }

  .alumnow-solution .solution-text,
  .alumnow-features .features-visual,
  .alumnow-contact .contact-form {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .alumnow-problem .problem-inner {
    padding: 50px 40px;
  }

  .alumnow-hero .hero-widget-left,
  .alumnow-hero .hero-widget-right {
    display: none;
  }

  .alumnow-footer .footer-inner {
    flex-direction: column;
    gap: 48px;
  }

  .alumnow-footer .footer-brand {
    flex: none;
  }

  .alumnow-footer .footer-right {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .alumnow-hero h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .alumnow-hero .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .alumnow-section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .alumnow-problem .problem-grid,
  .alumnow-steps .steps-grid,
  .alumnow-media .media-grid,
  .alumnow-faq .faq-grid,
  .alumnow-comparison .comparison-grid {
    grid-template-columns: 1fr;
  }

  /* Restore connected-grid borders for single-column problem grid on mobile */
  .alumnow-problem .problem-card {
    border-right: none;
    border-bottom: 1px solid rgba(56, 137, 255, 0.2);
    border-radius: 0;
  }
  .alumnow-problem .problem-card:first-child {
    border-radius: 20px 20px 0 0;
  }
  .alumnow-problem .problem-card:last-child {
    border-bottom: none;
    border-radius: 0 0 20px 20px;
  }

  .alumnow-problem .problem-inner {
    border-radius: 30px;
    padding: 40px 20px;
  }

  .alumnow-features {
    border-radius: 30px;
    padding: 40px 20px;
  }

  .alumnow-testimonials {
    border-radius: 30px;
    padding: 40px 20px;
  }

  .alumnow-contact .contact-inner {
    padding: 40px 20px;
  }

  .alumnow-contact .contact-info h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .alumnow-footer {
    padding: 40px 20px;
  }

  .alumnow-nav {
    padding: 16px 20px;
    margin: 12px auto 0;
    top: 12px;
  }

  .alumnow-nav .nav-links {
    display: none;
  }

  .alumnow-contact .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Global side padding on mobile for all top-level sections */
  .alumnow-integrations,
  .alumnow-logos,
  .alumnow-problem,
  .alumnow-solution,
  .alumnow-steps,
  .alumnow-features,
  .alumnow-media,
  .alumnow-testimonials,
  .alumnow-comparison,
  .alumnow-contact,
  .alumnow-faq {
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* =============================================
   CSS RESIDUEL — Conversion HTML → Natif Elementor
   Généré automatiquement — Ne pas modifier manuellement
   ============================================= */

/* AlumNow Residual CSS — effects not achievable with native Elementor widgets */

/* Section 4 — Problem card icon wrapper (44x44 bg box) */
.an-problem-icon-bg { width:44px; height:44px; background:rgba(56,137,255,0.13); border-radius:10px; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }

/* Section 5 — Feature divider line (connector between cards) */
.an-feature-connector { width:1px; background-color:#e6e2e3; border:1px solid #80a8e3; border-radius:2px; margin-left:28px; }

/* Section 9 — Metric bars: ensure bar fills animate on scroll if desired */
/* No native Elementor animation equivalent — bars are static HTML */

/* Section 12 — Comparison column headers: inline-flex pill layout */
/* Implemented via inline HTML in text-editor widgets — no residual needed */

/* Section 13 — Contact bg pattern overlay */
.elementor-section#contact .contact-bg-pattern { position:absolute; inset:0; background-image:url('/wp-content/uploads/alumnow/Accueil/Backgrounds/BG.svg'); background-size:cover; pointer-events:none; }

/* Section 14 — FAQ accordion custom styling not covered by Elementor controls */
.elementor-accordion .elementor-tab-title { cursor:pointer; transition:box-shadow 0.3s; }
.elementor-accordion .elementor-tab-title:hover { box-shadow:0 4px 16px rgba(56,137,255,0.08); }

/* Section 15 — Footer newsletter input placeholder color */
.elementor-widget-form .elementor-field-type-email input::placeholder { color:rgba(255,255,255,0.7); }

/* Footer logo brightness filter (white invert) */
/* Applied via per-widget custom_css on image widget — see JSON */

/* Global: section label pseudo bullets */
.an-section-label::before, .an-section-label::after { content:'•'; margin:0 8px; filter:blur(2px); color:#3889ff; }



/* FAQ equal height cards */
.elementor-33 .elementor-element-e3a4e7d3 .elementor-inner-section .elementor-row { align-items: stretch; }
.elementor-33 .elementor-element-e3a4e7d3 .elementor-inner-section .elementor-column { display: flex; }
.elementor-33 .elementor-element-e3a4e7d3 .elementor-inner-section .elementor-widget-wrap { flex-grow: 1; }

/* Override Elementor kit widget spacing for FAQ section */
.elementor-33 .elementor-element-e3a4e7d3 .elementor-widget {
  margin-bottom: 0 !important;
}

/* FAQ responsive — Tablet (max 1024px) */
@media (max-width: 1024px) {
  .elementor-33 .elementor-element-e3a4e7d3 .elementor-inner-section .elementor-column {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 12px !important;
  }
  .elementor-33 .elementor-element-e3a4e7d3 .elementor-inner-section .elementor-column:last-child {
    margin-bottom: 0 !important;
  }
  .elementor-33 .elementor-element-e3a4e7d3 .elementor-inner-section .elementor-row {
    flex-direction: column;
  }
}

/* FAQ responsive — Mobile (max 767px) */
@media (max-width: 767px) {
  .elementor-33 .elementor-element-e3a4e7d3 .elementor-heading-title {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .elementor-33 .elementor-element-e3a4e7d3 .elementor-inner-section .elementor-column {
    margin-bottom: 12px !important;
  }
  .elementor-33 .elementor-element-e3a4e7d3 .elementor-inner-section .elementor-column:last-child {
    margin-bottom: 0 !important;
  }
}

/* =============================================
   SECTION 13 — Contact natif
   ============================================= */
/* Contact section: zero widget spacing */
.elementor-33 .elementor-element-3d16849d .elementor-widget {
  margin-bottom: 0 !important;
}
/* Textarea: rounded corners 16px instead of pill */
.an-contact-form .elementor-field-type-textarea textarea {
  border-radius: 16px !important;
  min-height: 119px;
}
/* Contact responsive — Tablet */
@media (max-width: 1024px) {
  .elementor-33 .elementor-element-3d16849d .elementor-inner-section .elementor-row {
    flex-direction: column;
  }
  .elementor-33 .elementor-element-3d16849d .elementor-inner-section .elementor-column {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 32px !important;
  }
  .elementor-33 .elementor-element-3d16849d .elementor-inner-section .elementor-column:last-child {
    margin-bottom: 0 !important;
  }
}
/* Contact responsive — Mobile */
@media (max-width: 767px) {
  .elementor-33 .elementor-element-3d16849d .elementor-inner-section .elementor-column {
    margin-bottom: 24px !important;
  }
  .elementor-33 .elementor-element-3d16849d .elementor-inner-section .elementor-column:last-child {
    margin-bottom: 0 !important;
  }
}

/* =============================================================================
   SECTIONS 2 & 3 — Native Elementor widget resets
   Added to complement existing .alumnow-integrations and .alumnow-logos rules
   ============================================================================= */

/* Section 2: CRM Integrations — wrapper section */
.alumnow-integrations-section > .elementor-container > .elementor-row,
.alumnow-integrations-section > .elementor-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Remove default heading widget bottom margin — spacing is set via _margin in widget settings */
.alumnow-integrations-section .elementor-widget-heading .elementor-heading-title {
  margin-bottom: 0;
}

/* Remove text-editor widget default padding/margin so pills CSS controls layout */
.alumnow-integrations-section .elementor-widget-text-editor .elementor-widget-container {
  padding: 0;
}

.alumnow-integrations-section .elementor-widget-text-editor p {
  margin: 0;
}

/* Ensure pills are centered (text-editor outputs block-level container) */
.alumnow-integrations-section .integrations-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Section 3: Logos — overflow hidden for carousel mask-image to work full-width */
.alumnow-logos-section {
  overflow: hidden;
}

/* Ensure the HTML widget inside logos section has no default margins */
.alumnow-logos-section .elementor-widget-html .elementor-widget-container {
  padding: 0;
}

/* =============================================================================
   RESPONSIVE — Section 2 pills
   ============================================================================= */

@media (max-width: 767px) {
  .alumnow-integrations-section > .elementor-container > .elementor-row,
  .alumnow-integrations-section > .elementor-container {
    max-width: 100%;
    padding: 0 16px;
  }

  .alumnow-integrations .integrations-pills {
    gap: 10px;
  }

  .alumnow-integrations .pill {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* =============================================================================
   UI/UX AUDIT FIXES — 2026-04-13
   Pixel-perfect corrections to match Codia mockup
   ============================================================================= */

/* =============================================
   SECTION 4 — PROBLÈME: Connected card grid borders
   Codia: 3-col top row + 2-col bottom row with connected borders
   The 5 cards share borders — no double borders between adjacent cards
   ============================================= */

/* All problem cards: reset to no border, set shared styles */
.elementor-33 .elementor-element-ba209b4b .problem-card {
  position: relative;
}

/* Top-left card: border-radius 20px 0 0 5px, all borders */
.elementor-33 .elementor-element-c1f83a29 > .elementor-element-populated {
  border-top: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-left: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-bottom: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-right: none !important;
  border-radius: 20px 0 0 5px !important;
}

/* Top-middle card: top+left+bottom borders, no right border, no radius */
.elementor-33 .elementor-element-d3e94b50 > .elementor-element-populated {
  border-top: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-left: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-bottom: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-right: none !important;
  border-radius: 0 !important;
}

/* Top-right card: all borders, border-radius 0 20px 5px 0 */
.elementor-33 .elementor-element-a5d7f038 > .elementor-element-populated {
  border: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-radius: 0 20px 5px 0 !important;
}

/* Bottom-left card (2nd row, left): left+bottom borders, no top/right */
.elementor-33 .elementor-element-b2d6e941 > .elementor-element-populated {
  border-top: none !important;
  border-left: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-bottom: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-right: none !important;
  border-radius: 0 0 0 20px !important;
}

/* Bottom-right card (2nd row, right): right+bottom+top borders, no left, radius 0 0 20px 0 */
.elementor-33 .elementor-element-a7c0d385 > .elementor-element-populated {
  border-top: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-left: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-bottom: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-right: 1px solid rgba(56, 137, 255, 0.2) !important;
  border-radius: 0 0 20px 0 !important;
}

/* Problem card spacer column: ensure it has no border */
.elementor-33 .elementor-element-f0a3c867 > .elementor-element-populated {
  border: none !important;
}

/* Problem card icon: ensure centered alignment */
.elementor-33 .elementor-element-ba209b4b .elementor-widget-text-editor .elementor-widget-container {
  display: flex;
  justify-content: center;
}

/* Problem card widget spacing zero override */
.elementor-33 .elementor-element-ba209b4b .elementor-widget {
  margin-bottom: 0 !important;
}

/* =============================================
   SECTION 4 — Problem cards: Codia icon background
   The icon images are in text-editor widgets (e5b72f0a etc.)
   Need the icon container styling applied consistently
   ============================================= */
.elementor-33 .elementor-element-ba209b4b .elementor-widget-text-editor p {
  margin: 0;
}

/* =============================================
   SECTION 5 — SOLUTION: Widget spacing reset
   ============================================= */
.elementor-33 .elementor-element-c4e26426 .elementor-widget {
  margin-bottom: 0 !important;
}

/* Solution image: proper rounded corners (24px as in Codia) */
.elementor-33 .elementor-element-0dc4088f img {
  border-radius: 24px !important;
  box-shadow: 0 0 0 1px rgba(56, 137, 255, 0.13),
              inset 0 0 0 1px rgba(56, 137, 255, 0.04);
}

/* Solution LinkedIn card wrapper effect */
.elementor-33 .elementor-element-c16ec05f > .elementor-element-populated {
  display: flex;
  align-items: center;
}

/* Feature list: zero margin on text-editor container */
.elementor-33 .elementor-element-b3e8f729 .elementor-widget-container {
  padding: 0;
}

.elementor-33 .elementor-element-b3e8f729 .elementor-widget-container p {
  margin: 0;
}

/* =============================================
   SECTION 6 — CTA button: proper sizing per Codia
   Codia: 298px wide, padding 13px 24px, font-size 14px
   ============================================= */
.elementor-33 .elementor-element-d264d7eb .elementor-button {
  min-width: 298px;
  justify-content: center;
}

/* =============================================
   SECTION 7 — COMMENT ÇA MARCHE header
   Widget spacing zero override
   ============================================= */
.elementor-33 .elementor-element-dba0ae6c .elementor-widget {
  margin-bottom: 0 !important;
}

/* =============================================
   SECTION 8 — STEPS: Widget spacing, image sizing
   ============================================= */
.elementor-33 .elementor-element-b57adcec .elementor-widget {
  margin-bottom: 0 !important;
}

/* Step images: exact dimensions 392×298 with 10px radius per Codia */
.elementor-33 .elementor-element-b57adcec .elementor-widget-image img {
  width: 392px;
  max-width: 100%;
  height: 298px;
  object-fit: cover;
  border-radius: 10px !important;
}

/* Step text gap: 10px between title and description */
.elementor-33 .elementor-element-b57adcec .elementor-widget-heading {
  margin-bottom: 0 !important;
}

/* =============================================
   SECTION 9 — FONCTIONNALITÉS: Image + metrics
   Codia: image 544x486 in glass card, 80px section padding
   ============================================= */
.elementor-33 .elementor-element-6c2f29a8 .elementor-widget {
  margin-bottom: 0 !important;
}

/* Features image: container with glassmorphism effect matching Codia */
.elementor-33 .elementor-element-3d621df3 > .elementor-element-populated {
  background: rgba(255, 255, 255, 0.35) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(56, 137, 255, 0.13) !important;
  backdrop-filter: blur(7px) !important;
  -webkit-backdrop-filter: blur(7px) !important;
  padding: 32px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Features image sizing */
.elementor-33 .elementor-element-bd55af71 img {
  border-radius: 24px !important;
  width: 100%;
  height: auto;
  display: block;
}

/* Features metrics list: ensure proper display */
.elementor-33 .elementor-element-c4845f2f .elementor-widget-container {
  padding: 0;
}

.elementor-33 .elementor-element-c4845f2f .elementor-widget-container p {
  margin: 0;
}

/* Features CTA button: proper sizing */
.elementor-33 .elementor-element-2ab8a162 .elementor-button {
  min-width: 298px;
  justify-content: center;
}

/* =============================================
   SECTION 10 — TÉMOIGNAGES: HTML widget
   Widget spacing override
   ============================================= */
.elementor-33 .elementor-element-9e3cab33 .elementor-widget {
  margin-bottom: 0 !important;
}

/* Testimonials HTML widget: ensure full width */
.elementor-33 .elementor-element-4472584a .elementor-widget-container {
  padding: 0;
  width: 100%;
}

/* Ensure testimonials section inner centering */
.elementor-33 .elementor-element-9e3cab33 > .elementor-container {
  max-width: 100% !important;
}

/* =============================================
   SECTION 11 — COMPARAISON: Widget spacing
   Codia: 48px gap between problem/solution columns
   ============================================= */
.elementor-33 .elementor-element-b7a99ef4 .elementor-widget {
  margin-bottom: 0 !important;
}

/* Comparaison inner section 21f24abd: equal height columns */
.elementor-33 .elementor-element-21f24abd .elementor-row {
  align-items: stretch;
}

.elementor-33 .elementor-element-21f24abd .elementor-column {
  display: flex;
}

.elementor-33 .elementor-element-21f24abd .elementor-widget-wrap {
  flex-grow: 1;
}

/* Comparaison column headers: inline-flex pill styling */
.elementor-33 .elementor-element-101ee95a .elementor-widget-heading .elementor-heading-title,
.elementor-33 .elementor-element-a47c9375 .elementor-widget-heading .elementor-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 16px !important;
  white-space: nowrap;
}

/* Problems header: red tint */
.elementor-33 .elementor-element-101ee95a .elementor-widget-heading .elementor-heading-title {
  background: rgba(231, 0, 11, 0.08);
  color: #250405;
}

/* Solutions header: green tint */
.elementor-33 .elementor-element-a47c9375 .elementor-widget-heading .elementor-heading-title {
  background: rgba(0, 166, 62, 0.08);
  color: #042d13;
}

/* Comparaison cards text-editor: remove widget-container padding */
.elementor-33 .elementor-element-3ea91874 .elementor-widget-container,
.elementor-33 .elementor-element-59b3397c .elementor-widget-container {
  padding: 0;
}

.elementor-33 .elementor-element-3ea91874 .elementor-widget-container > *,
.elementor-33 .elementor-element-59b3397c .elementor-widget-container > * {
  margin: 0;
}

/* =============================================
   SECTION 12 — CONTACT: Widget spacing
   ============================================= */
/* Already covered by existing rule at .elementor-element-3d16849d */

/* Contact info heading styles: white text */
.elementor-33 .elementor-element-3d16849d .elementor-column-wrap .elementor-heading-title {
  color: #ffffff !important;
}

/* Contact form column: widget spacing */
.elementor-33 .elementor-element-1bb6d005 .elementor-widget {
  margin-bottom: 0 !important;
}

/* =============================================
   SECTION 14 — FAQ: Toggle icon rotation
   FAQ answer text should hide/show via JS toggle
   ============================================= */

/* FAQ question containers: cursor pointer */
.elementor-33 .elementor-element-e3a4e7d3 .faq-question-wrapper {
  cursor: pointer;
  user-select: none;
}

/* FAQ section label spacing */
.elementor-33 .elementor-element-1a6f6203 .elementor-heading-title {
  margin: 0;
}

/* =============================================
   SECTION 15 — FOOTER (native Elementor)
   Section ID: 60cf20fd
   ============================================= */

/* Zero widget margins throughout footer */
.elementor-33 .elementor-element-60cf20fd .elementor-widget {
  margin-bottom: 0 !important;
}

/* Logo: white filter + max-width */
.footer-logo img {
  filter: brightness(0) invert(1);
  max-width: 200px;
  height: auto;
  display: block;
}

/* Solutions list: reset UL defaults inside text-editor */
.elementor-33 .elementor-element-e7f8a9b0 ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.elementor-33 .elementor-element-e7f8a9b0 ul li a:hover {
  color: #ffffff !important;
  transition: color 0.3s;
}

/* Inline email form inside text-editor */
.elementor-33 .elementor-element-c5d6e7f8 input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  padding: 0 16px;
  outline: none;
}

.elementor-33 .elementor-element-c5d6e7f8 input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.elementor-33 .elementor-element-c5d6e7f8 button:hover {
  background: #056aff !important;
}

/* Divider color override */
.elementor-33 .elementor-element-e9f0a1b2 .elementor-divider-separator {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Responsive: stack columns at tablet */
@media (max-width: 1024px) {
  .elementor-33 .elementor-element-d4e7f1a0 > .elementor-container > .elementor-row {
    flex-direction: column;
  }
  .elementor-33 .elementor-element-d4e7f1a0 .elementor-column {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 32px !important;
  }
  .elementor-33 .elementor-element-d4e7f1a0 .elementor-column:last-child {
    margin-bottom: 0 !important;
  }
}

/* Responsive: reduce CTA heading on mobile */
@media (max-width: 767px) {
  .elementor-33 .elementor-element-b3c4d5e6 .elementor-heading-title {
    font-size: 22px !important;
  }
}

/* =============================================
   GLOBAL — Kit widget-spacing override
   Applies margin-bottom: 0 globally for all widgets in page 33
   Individual sections add their own spacing via widget _padding settings
   ============================================= */

/* Override the --kit-widget-spacing variable to 0 for page 33 */
.elementor-page-33 {
  --e-global-typography-primary-font-size: inherit;
}

/* Zero out kit widget spacing for specific sections that need it */
.elementor-33 .elementor-element-fd7b1540 .elementor-widget {
  margin-bottom: 0 !important;
}

.elementor-33 .elementor-element-0fdf5266 .elementor-widget {
  margin-bottom: 0 !important;
}

/* =============================================
   PROBLEM CARDS — Mobile responsive
   ============================================= */
@media (max-width: 767px) {
  /* Reset all borders and apply stacked single-column borders */
  .elementor-33 .elementor-element-c1f83a29 > .elementor-element-populated,
  .elementor-33 .elementor-element-d3e94b50 > .elementor-element-populated,
  .elementor-33 .elementor-element-a5d7f038 > .elementor-element-populated,
  .elementor-33 .elementor-element-b2d6e941 > .elementor-element-populated,
  .elementor-33 .elementor-element-a7c0d385 > .elementor-element-populated {
    border: none !important;
    border-bottom: 1px solid rgba(56, 137, 255, 0.2) !important;
    border-radius: 0 !important;
  }

  .elementor-33 .elementor-element-c1f83a29 > .elementor-element-populated {
    border-top: 1px solid rgba(56, 137, 255, 0.2) !important;
    border-left: 1px solid rgba(56, 137, 255, 0.2) !important;
    border-right: 1px solid rgba(56, 137, 255, 0.2) !important;
    border-radius: 20px 20px 0 0 !important;
  }

  .elementor-33 .elementor-element-a7c0d385 > .elementor-element-populated {
    border-bottom: none !important;
    border-left: 1px solid rgba(56, 137, 255, 0.2) !important;
    border-right: 1px solid rgba(56, 137, 255, 0.2) !important;
    border-radius: 0 0 20px 20px !important;
  }

  .elementor-33 .elementor-element-d3e94b50 > .elementor-element-populated,
  .elementor-33 .elementor-element-a5d7f038 > .elementor-element-populated,
  .elementor-33 .elementor-element-b2d6e941 > .elementor-element-populated {
    border-left: 1px solid rgba(56, 137, 255, 0.2) !important;
    border-right: 1px solid rgba(56, 137, 255, 0.2) !important;
  }

  /* Steps responsive */
  .elementor-33 .elementor-element-b57adcec .elementor-widget-image img {
    width: 100%;
    height: auto;
  }

  /* Features image glass card */
  .elementor-33 .elementor-element-3d621df3 > .elementor-element-populated {
    padding: 16px !important;
  }
}

@media (max-width: 1024px) {
  /* Problem cards: reset for tablet stacking */
  .elementor-33 .elementor-element-c1f83a29 > .elementor-element-populated,
  .elementor-33 .elementor-element-d3e94b50 > .elementor-element-populated,
  .elementor-33 .elementor-element-a5d7f038 > .elementor-element-populated,
  .elementor-33 .elementor-element-b2d6e941 > .elementor-element-populated,
  .elementor-33 .elementor-element-a7c0d385 > .elementor-element-populated {
    border-radius: 12px !important;
    border: 1px solid rgba(56, 137, 255, 0.2) !important;
  }

  /* Features section: glass card padding tablet */
  .elementor-33 .elementor-element-3d621df3 > .elementor-element-populated {
    padding: 24px !important;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .alumnow-integrations-section > .elementor-container > .elementor-row,
  .alumnow-integrations-section > .elementor-container {
    max-width: 100%;
    padding: 0 40px;
  }
}

/* === SECTION 12 NATIVE — COMPARAISON === */
/* Vertical alignment — push card text to bottom */
.comp-card-grey .elementor-widget-wrap,
.comp-card-blue .elementor-widget-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
}

/* Remove default widget bottom margin inside comparison section */
.elementor-33 .elementor-element-dc1caf2f .elementor-widget {
  margin-bottom: 0 !important;
}

@media (max-width: 1024px) {
  .comp-card-grey .elementor-widget-wrap,
  .comp-card-blue .elementor-widget-wrap {
    min-height: 160px;
  }
}

@media (max-width: 767px) {
  .comp-card-grey .elementor-widget-wrap,
  .comp-card-blue .elementor-widget-wrap {
    min-height: 140px;
  }
}

.elementor-element-a378374e .elementor-icon-list-icon {
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 4px 0 0 !important;
  padding-inline-end: 4px !important;
  font-size: 0 !important;
  line-height: 0 !important;
  flex: 0 0 auto !important;
}
.elementor-element-a378374e .elementor-icon-list-icon svg {
  width: 12px !important;
  height: 12px !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}
.elementor-element-a378374e .elementor-icon-list-icon + .elementor-icon-list-text {
  padding-inline-start: 0 !important;
}

.an-media-grid .elementor-post__text::before {
  content:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='12' height='12' fill='none' stroke='%233889FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>")
    " 06/05/2026\A0\A0\A0\A0\A0\A0\A0\A0\A0\A0\A0\A0"
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='12' height='12' fill='none' stroke='%233889FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>")
    " 6 Min read\A0\A0\A0\A0\A0\A0\A0\A0\A0\A0\A0\A0"
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='12' height='12' fill='none' stroke='%233889FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='18' cy='5' r='3'/><circle cx='6' cy='12' r='3'/><circle cx='18' cy='19' r='3'/><line x1='8.59' y1='13.51' x2='15.42' y2='17.49'/><line x1='15.41' y1='6.51' x2='8.59' y2='10.49'/></svg>")
    " Partager" !important;
}

/* =============================================
   MEDIA FILTERS — Search + École + Domaine pro
   ============================================= */
.an-media-filters {
  /* Override the original 24px column gap so our form sits flush */
  gap: 12px !important;
}

.an-mf-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.an-mf-search-wrap {
  position: relative;
  flex: 1 1 260px;
  min-width: 180px;
  display: flex;
}

.an-mf-search {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(41, 57, 72, 0.18);
  border-radius: 100px;
  padding: 0 18px 0 44px;
  height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.an-mf-search:focus-within {
  border-color: #3889FF;
  box-shadow: 0 0 0 3px rgba(56, 137, 255, 0.12);
}

.an-mf-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(41, 57, 72, 0.55);
  pointer-events: none;
}

.an-mf-search input[type="search"] {
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  height: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #001428;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.an-mf-search input[type="search"]::placeholder {
  color: rgba(41, 57, 72, 0.55);
}

.an-mf-search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.an-mf-select-wrap {
  position: relative;
  flex: 1 1 170px;
  min-width: 150px;
  display: flex;
}

.an-mf-select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(41, 57, 72, 0.6);
  border-bottom: 2px solid rgba(41, 57, 72, 0.6);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.an-mf-select {
  flex: 1 1 auto;
  width: 100%;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid rgba(41, 57, 72, 0.18);
  border-radius: 100px;
  padding: 0 40px 0 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #001428;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.an-mf-select:hover {
  border-color: rgba(41, 57, 72, 0.35);
}

.an-mf-select:focus {
  border-color: #3889FF;
  box-shadow: 0 0 0 3px rgba(56, 137, 255, 0.12);
}

.an-mf-form .an-mf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  background: #3889FF;
  color: #FFFFFF;
  border: 0;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.an-mf-form .an-mf-submit:hover {
  background: #056AFF;
  transform: translateY(-1px);
}

.an-mf-form .an-mf-submit svg {
  flex: 0 0 auto;
}

.an-mf-reset {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(41, 57, 72, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: transparent;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.an-mf-reset:hover {
  color: #056AFF;
}

/* Narrow desktop / tablet landscape: hide the "Rechercher" label so the icon-only
   submit fits on a single row alongside search + 2 selects. */
@media (min-width: 769px) and (max-width: 1099px) {
  .an-mf-form .an-mf-submit-text {
    display: none;
  }
  .an-mf-form .an-mf-submit {
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .an-mf-form {
    flex-direction: column;
    gap: 10px;
  }
  .an-mf-search-wrap,
  .an-mf-search,
  .an-mf-select-wrap,
  .an-mf-form .an-mf-submit,
  .an-mf-reset {
    width: 100%;
    flex: 0 0 auto;
  }
  .an-mf-form .an-mf-submit {
    justify-content: center;
    height: 48px;
    min-height: 48px;
    padding: 0 24px;
  }
  .an-mf-reset {
    justify-content: center;
    height: 40px;
  }
  .an-mf-form .an-mf-submit-text {
    display: inline;
  }
}

/* Archive tabs (CRM & Data / Alumni Engagement / ...) — used on /category/<slug>/ */
.an-archive-tabs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}

.an-archive-tab a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(41, 57, 72, 0.75);
  transition: color 0.2s ease;
}

.an-archive-tab a:hover {
  color: #056BFF;
}

.an-archive-tab.is-active a,
.an-archive-tab.is-active .an-archive-tab-dot {
  color: #056BFF;
}

.an-archive-tab-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(41, 57, 72, 0.3);
  flex: 0 0 auto;
}

.an-archive-tab-dot svg {
  width: 5px;
  height: 5px;
  display: block;
}

@media (max-width: 540px) {
  .an-archive-tabs-list { gap: 6px 16px; }
  .an-archive-tab a { font-size: 15px; }
}

/* Live search suggestion popup */
.an-mf-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 60;
  max-height: 420px;
  overflow-y: auto;
  background: #FFFFFF;
  border: 1px solid rgba(41, 57, 72, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 20, 40, 0.12);
  padding: 6px;
}

.an-mf-suggest[hidden] { display: none; }

.an-mf-suggest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: #001428;
  transition: background 0.15s ease;
}

.an-mf-suggest-item:hover,
.an-mf-suggest-item.is-active {
  background: rgba(56, 137, 255, 0.08);
}

.an-mf-suggest-thumb {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(41, 57, 72, 0.08);
  display: block;
}

.an-mf-suggest-thumb--empty {
  background: linear-gradient(135deg, rgba(56,137,255,0.18), rgba(5,106,255,0.10));
}

.an-mf-suggest-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.an-mf-suggest-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #001428;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.an-mf-suggest-meta {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: rgba(41, 57, 72, 0.65);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.an-mf-suggest-loading,
.an-mf-suggest-empty {
  padding: 14px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: rgba(41, 57, 72, 0.65);
  text-align: center;
}
