/* ======================= */
/* CONFIGURATION GLOBALE     */
/* ======================= */
:root {
  --bg-dark: #0A0F1A;
  --bg-secondary: #101828;
  --color-primary: #00BFFF;
  --color-secondary: #00FFF3;
  --color-text: #E0E0E0;
  --color-text-muted: #888;
  --glow-shadow: 0 0 8px var(--color-primary), 0 0 16px var(--color-primary);
  --glow-shadow-hover: 0 0 12px var(--color-primary), 0 0 24px var(--color-primary), 0 0 32px var(--color-secondary);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
/* Détecte la direction pour l'arabe */
html[dir="rtl"] {
  text-align: right;
}

body {
  background-color: var(--bg-dark);
  color: var(--color-text);
  font-family: 'Lexend', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #FFF;
  font-weight: 700; 
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.5rem; color: var(--color-primary); }

section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.content-wrapper-wide {
    max-width: 1400px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-top: -2rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================= */
/* HEADER                    */
/* ======================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}
html[dir="rtl"] header nav ul {
    gap: 15px; /* Ajustement pour l'arabe */
}


header.scrolled {
    background-color: rgba(10, 15, 26, 0.95);
    border-bottom-color: var(--color-primary);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content .logo img {
    height: 70px;
    width: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

header nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

header nav a:hover,
header nav a.active {
    color: var(--color-primary);
    text-shadow: 0 0 5px var(--color-primary);
}

header nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

header nav a:hover::after,
header nav a.active::after {
    width: 100%;
}

.header-cta {
    padding: 8px 18px;
    font-size: 0.9rem;
    animation: none;
}
.header-cta::after {
    display: none;
}

/* === Styles Dropdown Langue === */
.language-dropdown {
    position: relative;
    list-style: none;
}

.lang-toggle {
    background: none;
    border: none;
    color: var(--color-text);
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    transition: color 0.3s ease;
}
.lang-toggle:hover,
.language-dropdown.active .lang-toggle {
    color: var(--color-primary);
}
.lang-toggle .lucide-globe {
    stroke: currentColor;
}
.lang-toggle .arrow-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.language-dropdown.active .lang-toggle .arrow-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    background-color: var(--bg-secondary);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
    list-style: none;
    width: 120px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1001;
}
html[dir="rtl"] .dropdown-menu {
    right: auto;
    left: 0;
}

.language-dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    font-size: 1rem;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 6px;
}
.dropdown-menu li a:hover {
    background-color: var(--bg-dark);
    color: var(--color-primary);
}
.dropdown-menu li a span {
    font-size: 1.2rem;
}
.dropdown-menu li a::after {
    display: none;
}
/* === FIN : Styles Dropdown Langue === */


.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

/* ======================= */
/* SECTION 1 : HERO          */
/* ======================= */
#hero {
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 150px; 
  padding-bottom: 100px;
}

#particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

#hero h1 {
  font-weight: 800;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

#hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--color-text-muted);
}

.cta-button {
  background-color: var(--color-primary);
  color: var(--bg-dark);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--glow-shadow);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% { transform: scale(1); box-shadow: var(--glow-shadow); }
  50% { transform: scale(1.05); box-shadow: var(--glow-shadow-hover); }
  100% { transform: scale(1); box-shadow: var(--glow-shadow); }
}

.cta-button:hover {
  transform: scale(1.1) !important;
  box-shadow: var(--glow-shadow-hover);
}

.video-frame {
  margin-top: 3rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 0 30px rgba(0, 255, 243, 0.4);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ======================= */
/* SECTION 2 : PRODUITS      */
/* ======================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--bg-secondary);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
}

.product-card .lucide {
  width: 48px;
  height: 48px;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  margin-bottom: 1rem;
}
html[dir="rtl"] .product-card .lucide {
    margin-left: auto; /* Aligne icône à droite pour AR */
}

.product-card p {
  color: var(--color-text-muted);
  flex-grow: 1;
}

.animated-stat {
  margin: 1.5rem 0;
  font-size: 3rem;
  font-weight: 800;
  color: #FFF;
}
.animated-stat p {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: normal;
  margin-top: -10px;
}

.demo-button-blur {
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1;
  text-align: center;
  font-weight: 700;
}

.demo-button-blur::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.2; 
  transition: left 0.4s ease;
  z-index: -1;
}
html[dir="rtl"] .demo-button-blur::before {
    left: auto;
    right: -100%;
    transition: right 0.4s ease;
}

.demo-button-blur:hover {
  color: var(--bg-dark);
}

.demo-button-blur:hover::before {
  left: 0;
}
html[dir="rtl"] .demo-button-blur:hover::before {
    right: 0;
    left: auto;
}

/* ======================= */
/* SECTION DÉMOS VOIX        */
/* ======================= */
.demo-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
}

.video-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #FFF;
}

.video-card .video-frame {
    margin-top: 0;
    border-color: var(--color-primary);
    box-shadow: var(--glow-shadow);
}


/* ======================= */
/* SECTION 3 : PRIX          */
/* ======================= */
.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pricing-text p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.text-glow {
  color: var(--color-primary);
  font-weight: 700;
  text-shadow: 0 0 8px var(--color-primary);
  transition: text-shadow 0.3s ease;
}

.text-glow:hover {
  text-shadow: var(--glow-shadow-hover);
}

.chart-container {
  width: 100%;
  max-width: 500px;
}

/* ======================= */
/* SECTION 4 : MARCHE        */
/* ======================= */

.languages-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.languages-list li {
  margin-bottom: 1.5rem;
  opacity: 0;
}

.languages-list li span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFF;
}

.progress-container {
  width: 100%;
  background: var(--bg-secondary);
  border-radius: 4px;
  border: 1px solid #222;
  overflow: hidden;
}
html[dir="rtl"] .progress-container {
    direction: ltr; /* Les barres de progression vont toujours de G à D */
}

.progress-fill {
  height: 10px;
  width: 0;
  background: var(--color-primary);
  border-radius: 4px;
  box-shadow: var(--glow-shadow);
}

/* ======================= */
/* SECTION 5 : EQUIPE        */
/* ======================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-grid-4-col {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem; /* Espace réduit pour 4 colonnes */
}

h2.section-spacer {
    margin-top: 5rem;
}

.team-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  opacity: 0;
}

.team-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* === CORRECTION ALIGNEMENT DES NOMS === */
.team-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%; /* Occupe 100% de la hauteur */
  color: #FFF;
  
  /* Masque le contenu qui dépasse */
  overflow: hidden; 
  
  /* Nouvel état (caché) */
  transform: translateY(calc(100% - 90px)); /* Ne montre que les 90px du bas */
  transition: all 0.4s ease;
  
  /* Flexbox pour aligner le contenu en bas */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-overlay-content {
    /* Conteneur qui glisse */
    padding: 20px;
    background: linear-gradient(0deg, rgba(10, 15, 26, 0.95) 20%, rgba(10, 15, 26, 0) 100%);
    transition: background 0.4s ease;
}
html[dir="rtl"] .card-overlay-content {
    text-align: right;
}

.team-card .card-overlay h3 {
    color: #FFF;
    margin-bottom: 0.25rem;
}

.team-card .card-overlay p {
    font-size: 0.9rem;
    color: #FFF;
    margin-bottom: 1rem;
    opacity: 0; /* Caché par défaut */
    transition: opacity 0.3s ease;
}

.team-card .card-overlay .social-links {
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  gap: 10px;
}
/* === FIN CORRECTION ALIGNEMENT === */


.team-card .card-overlay .social-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
}
.team-card .card-overlay .social-links a svg {
    stroke: currentColor;
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease, stroke 0.2s ease;
}
.team-card .card-overlay .social-links a:hover svg {
    transform: translateY(-3px);
    stroke: var(--color-secondary);
}


.team-card:hover img {
  transform: scale(1.1);
}

.team-card:hover .card-overlay {
  transform: translateY(0); /* Montre tout */
}

.team-card:hover .card-overlay-content {
  background: linear-gradient(0deg, var(--color-primary) 0%, rgba(0, 169, 255, 0.7) 100%);
}

.team-card:hover .card-overlay h3,
.team-card:hover .card-overlay p {
  color: var(--bg-dark);
}

.team-card:hover .card-overlay p,
.team-card:hover .card-overlay .social-links {
  opacity: 1;
}
.team-card:hover .card-overlay .social-links a {
    color: var(--bg-dark);
}

/* ======================= */
/* NOUVELLE SECTION : VIDÉO ÉQUIPE */
/* ======================= */
#team-video {
    padding-top: 0; /* Pas d'espace en haut, collé à l'équipe */
}
#team-video h2 {
    margin-bottom: 2rem;
}

/* ======================= */
/* SECTION 6 : CONTACT       */
/* ======================= */
#contact {
  background-color: var(--bg-secondary);
  border-top: 1px solid #222;
  padding-bottom: 120px;
  margin-top: 0; /* L'espace est géré par #team-video */
}

/* NOUVEAU : Grille Contact */
#contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 40% info, 60% form */
    gap: 3rem;
    margin-top: 2rem;
}

html[dir="rtl"] #contact-grid {
    direction: ltr; /* Garder la grille LTR */
    text-align: left; /* Garder le texte LTR dans la grille */
}
html[dir="rtl"] .contact-info {
    text-align: right; /* Sauf pour le bloc info */
}


.contact-info h3 {
    margin-bottom: 1.5rem;
}
.contact-info p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.contact-info p strong {
    color: var(--color-text);
    font-weight: 700;
}
.contact-info p a {
    color: var(--color-primary);
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}
.contact-info p a:hover {
    text-shadow: 0 0 5px var(--color-primary);
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-primary);
    box-shadow: var(--glow-shadow);
    margin-top: 2rem;
}
.map-container iframe {
    width: 100%;
    height: 250px;
    display: block;
}
/* Fin Grille Contact */


#contact-form {
  max-width: 100%; /* Prend 100% de sa colonne */
  margin: 0;
  position: relative;
}

/* NOUVEAU : Rangée de formulaire (pour 2 champs) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--color-text-muted);
}
html[dir="rtl"] .form-group label {
    text-align: right;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  background-color: var(--bg-dark);
  border: 1px solid #333;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 1rem;
  font-family: 'Lexend', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300BFFF' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}
html[dir="rtl"] .form-group select {
    background-position: left 14px center;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--glow-shadow);
}

#contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.2rem;
}

#form-feedback {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ======================= */
/* FOOTER                    */
/* ======================= */
footer {
    background-color: var(--bg-dark);
    padding: 60px 0;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-brand .logo img {
    height: 70px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.social-links-footer {
    display: flex;
    gap: 25px;
}

.social-links-footer a {
    color: var(--color-text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links-footer a:hover {
    color: var(--color-primary);
    transform: translateY(-5px);
}

.social-links-footer a svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.5;
}

/* ======================= */
/* NOUVEAU : MODALE DE SUCCÈS */
/* ======================= */
#success-modal {
    display: none; /* Caché par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#success-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--glow-shadow-hover);
    position: relative;
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
#success-modal.show .modal-content {
    transform: scale(1);
}

#close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
#close-modal:hover {
    color: var(--color-primary);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-content h3 {
    margin-bottom: 1rem;
}
.modal-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}


/* ======================= */
/* MEDIA QUERIES (RESPONSIVE) */
/* ======================= */
@media (max-width: 1100px) {
    .team-grid-4-col {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 900px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    
    .pricing-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .pricing-text { order: 2; }
    .chart-container { order: 1; margin: 0 auto 2rem auto; }

    .demo-videos-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact passe en 1 colonne */
    #contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--bg-dark);
        padding-top: 100px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.5);
        transition: left 0.4s ease-out;
    }
    html[dir="rtl"] header nav {
        left: auto;
        right: -100%;
        transition: right 0.4s ease-out;
    }
    header nav.active {
        left: 0;
    }
    html[dir="rtl"] header nav.active {
        left: auto;
        right: 0;
    }
    
    header nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }
    html[dir="rtl"] header nav ul {
        align-items: flex-end;
    }

    header nav li {
        width: 100%;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 10px;
    }
    header nav li:last-child {
        border-bottom: none;
    }
    header nav a {
        display: block;
        padding: 10px 0;
        font-size: 1.3rem;
    }
    .menu-toggle {
        display: block;
    }

    /* Dropdown Langue en mode mobile */
    .language-dropdown {
        width: 100%;
    }
    .lang-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
        font-size: 1.3rem;
    }
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        background: none;
    }
    html[dir="rtl"] .dropdown-menu {
        padding-left: 0;
        padding-right: 20px;
    }
    .language-dropdown.active .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        font-size: 1.1rem;
    }

    #hero {
        padding-top: 120px; 
    }
    #hero h1 { font-size: 2.5rem; }
    #hero p { font-size: 1rem; }

    .product-grid,
    .team-grid,
    .team-grid-4-col {
        grid-template-columns: 1fr;
    }
    
    /* Formulaire 1 colonne */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0; /* Pas de gap vertical, géré par form-group */
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    section { padding: 60px 0; }
    .cta-button { padding: 10px 20px; font-size: 0.9rem; }
    
    .animated-stat { font-size: 2.5rem; }
    .languages-list li span { font-size: 1rem; }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
}