/* ============================================
   Page de transition – Groupe Madysta
   ============================================ */

:root {
  --madysta-blue: #002b52;
  --madysta-blue-light: #0a3d6b;
  --madysta-gray: #5e5e5f;
  --white: #fff;
  --overlay: rgba(0, 43, 82, 0.65);
  --font: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--white);
  background: var(--madysta-blue);
  overflow-x: hidden;
}

/* ---------- Page Loader (bandes blanches 45° + logo) ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--madysta-blue);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.page-loader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bands {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.loader-band {
  flex: 1;
  min-width: 0;
  background: var(--white);
  transform-origin: center center;
}

.loader-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 22vw;
  padding: 0 2rem;
  opacity: 0;
}

.loader-logo img {
  width: 100%;
  height: auto;
  display: block;
  /* Bleu Madysta #002b52 */
  filter: brightness(0) saturate(100%) invert(12%) sepia(88%) saturate(2476%) hue-rotate(195deg);
}

.loader-logo--moving {
  overflow: hidden;
}

.loader-logo--moving img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--madysta-blue), transparent);
  pointer-events: none;
}

.hero-lang {
  position: absolute;
  top: 2vw;
  right: 2vw;
  z-index: 3;
  padding: 0.5vw 1vw;
  font-size: 0.9vw;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 0.1vw solid rgba(255, 255, 255, 0.6);
  border-radius: 0.35vw;
  transition: background 0.2s, border-color 0.2s;
}

.hero-lang:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2vw 1.5vw;
}

.hero-logo {
  width: 100%;
  max-width: 22vw;
  height: auto;
  margin-bottom: 3vw;
  filter: brightness(0) invert(1);
}

.hero-title {
  font-size: clamp(2vw, 6vw, 3.5vw);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 0.5vw;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: #7eb8e0;
  font-weight: 700;
}

.hero-tagline {
  font-size: clamp(0.95vw, 2.2vw, 1.15vw);
  font-weight: 300;
  opacity: 0.95;
  margin: 0 0 2vw;
  line-height: 1.5;
}

.hero-cta {
  display: inline-block;
  padding: 0.85vw 2vw;
  background: var(--white);
  color: var(--madysta-blue);
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
  color: var(--madysta-blue);
  transform: translateY(-0.2vw);
  box-shadow: 0 0.4vw 1.25vw rgba(0, 0, 0, 0.25);
}

.hero-scroll {
  position: absolute;
  bottom: 2vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5vw;
  font-size: 0.75vw;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.9;
}

.hero-scroll-icon {
  position: relative;
  width: 1.25vw;
  height: 2.1vw;
  border: 0.1vw solid var(--white);
  border-radius: 0.65vw;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-icon::after {
  content: '';
  position: absolute;
  top: 0.4vw;
  left: 50%;
  transform: translateX(-50%);
  width: 0.2vw;
  height: 0.45vw;
  background: var(--white);
  border-radius: 0.1vw;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.35vw); }
}

/* ---------- Sections communes ---------- */
.section {
  padding: 4vw 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.5vw, 3vw, 2vw);
  font-weight: 600;
  color: var(--madysta-blue);
  text-align: center;
  margin: 0 0 2vw;
}

.container {
  color: #1a1a1a;
}

/* ---------- Section Divisions (logos) ---------- */
.visions-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #0a2d4a;
  padding: 5vw;
}

.visions-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 43, 82, 0.78);
}

.visions-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18vh;
  background: linear-gradient(to bottom, var(--madysta-blue), transparent);
  pointer-events: none;
  z-index: 1;
}

.visions-section > .visions-title,
.visions-section > .visions-grid {
  position: relative;
  z-index: 2;
}

.visions-title {
  text-align: center;
  font-size: clamp(1.25vw, 2.5vw, 2vw);
  font-weight: 600;
  color: #fff;
  margin: 0 0 3vw;
}

.visions-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1vw;
  align-items: center;
  justify-items: center;
}

.vision-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 16.7vw;
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 0.65vw;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vision-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0.2vw 0.85vw rgba(0, 0, 0, 0.2);
}

.vision-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Boîte modale détail division (centrée) */
.visions-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}

.visions-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.visions-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.visions-modal-box {
  position: relative;
  width: 92%;
  max-width: 58vw;
  max-height: 85vh;
  background: var(--white);
  border-radius: 0.85vw;
  box-shadow: 0 0.85vw 2.5vw rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.visions-modal.is-open .visions-modal-box {
  transform: scale(1);
}

.visions-modal-close {
  position: absolute;
  top: 1vw;
  right: 1vw;
  width: 2.1vw;
  height: 2.1vw;
  border: none;
  background: transparent;
  font-size: 1.5vw;
  line-height: 1;
  color: var(--madysta-gray);
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}

.visions-modal-close:hover {
  color: var(--madysta-blue);
}

.visions-modal-body {
  display: flex;
  align-items: stretch;
  gap: 2.5vw;
  padding: 3vw 2.5vw;
  padding-top: 3.5vw;
  overflow-y: auto;
  max-height: 85vh;
}

.visions-modal-left {
  flex: 1;
  min-width: 0;
}

.visions-modal-title {
  font-size: 1.75vw;
  font-weight: 600;
  color: var(--madysta-blue);
  margin: 0 0 1vw;
}

.visions-modal-text {
  font-size: 1vw;
  color: var(--madysta-gray);
  line-height: 1.6;
  margin: 0;
}

.visions-modal-text p {
  margin: 0 0 0.75vw 0;
}

.visions-modal-text ul {
  margin: 0;
  padding-left: 1.25vw;
  list-style-type: disc;
  list-style-color: #e6a800;
}

.visions-modal-text ul li {
  margin-bottom: 0.25vw;
}

.visions-modal-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48%;
  max-width: 22vw;
  background: #f0f4f8;
}

.visions-modal-logo {
  width: 100%;
  height: auto;
  max-height: 16vw;
  object-fit: contain;
}

/* ---------- Slider ---------- */
.slider-section {
  height: 75vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 0;
}

.slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.slider-dots {
  display: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  flex-shrink: 0;
  width: 2.5vw;
  height: 2.5vw;
  border: 0.1vw solid var(--white);
  background: rgba(0, 43, 82, 0.6);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.slider-btn:hover {
  background: var(--madysta-blue);
  color: var(--white);
  transform: translateY(-50%);
}

.slider-prev {
  left: 1vw;
}

.slider-next {
  right: 1vw;
}

.slider-track-wrap {
  flex: 1;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  height: 100%;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease-out;
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.slider-dot {
  width: 0.75vw;
  height: 0.75vw;
  border-radius: 50%;
  border: none;
  background: rgba(0, 43, 82, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot:hover {
  background: rgba(0, 43, 82, 0.6);
}

.slider-dot.active {
  background: var(--madysta-blue);
  transform: scale(1.2);
}

/* ---------- À propos ---------- */
.about-section {
  background: var(--white);
  padding: 4vw 10vw;
}

.about-section .container {
  color: #1a1a1a;
}

.about-title {
  font-size: clamp(1.5vw, 3vw, 2vw);
  font-weight: 600;
  color: var(--madysta-blue);
  text-align: center;
  margin: 0 0 2.5vw;
}

.about-block {
  margin-bottom: 3vw;
  margin-left: auto;
  margin-right: auto;
}

.about-subtitle {
  font-size: 1.35vw;
  font-weight: 600;
  color: var(--madysta-blue);
  margin: 0 0 1vw;
}

.about-block p {
  font-size: 1vw;
  color: var(--madysta-gray);
  line-height: 1.7;
  margin: 0 0 1vw;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-values-title {
  font-size: 1.2vw;
  font-weight: 600;
  color: var(--madysta-blue);
  text-align: center;
  margin: 0 0 1.5vw;
}

.about-value-card {
  background: #f5f6f8;
  padding: 2vw;
  border-radius: 0.65vw;
  height: 100%;
  border-left: 0.35vw solid var(--madysta-blue);
}

.about-value-title {
  font-size: 1.1vw;
  font-weight: 600;
  color: var(--madysta-blue);
  margin: 0 0 0.75vw;
}

.about-value-card p {
  font-size: 0.9vw;
  color: var(--madysta-gray);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Clients ---------- */
.clients-section {
  background: #f5f6f8;
}

.clients-section .container {
  color: #1a1a1a;
}

.clients-title {
  font-size: clamp(1.5vw, 3vw, 2vw);
  font-weight: 600;
  color: var(--madysta-blue);
  text-align: center;
  margin: 0 0 2vw;
}

.clients-intro {
  max-width: 52vw;
  margin: 0 auto 2.5vw;
}

.clients-intro p {
  font-size: 1vw;
  color: var(--madysta-gray);
  line-height: 1.7;
  margin: 0 0 1vw;
}

.clients-intro p:last-child {
  margin-bottom: 0;
}

.clients-subtitle {
  font-size: 1.2vw;
  font-weight: 600;
  color: var(--madysta-blue);
  text-align: center;
  margin: 0 0 1.5vw;
}

.clients-logos {
  overflow: hidden;
  width: 100%;
}

.clients-slider-wrap {
  display: flex;
  width: max-content;
  animation: clientsScroll 40s linear infinite;
}

.clients-slider-wrap:hover {
  animation-play-state: paused;
}

@keyframes clientsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clients-slider-track {
  display: flex;
  align-items: center;
  gap: 3vw;
  padding: 0 1.5vw;
  flex-shrink: 0;
}

.clients-slider-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.5vw;
  max-width: 12vw;
}

.clients-slider-item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.25s, opacity 0.25s;
}

.clients-slider-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 5vw 0;
  position: relative;
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding: 0 10vw;
}

.cta-career-title {
  text-align: center;
  color: #fff;
  font-size: clamp(1.2vw, 2.5vw, 2vw);
  font-weight: 600;
  margin: 0 0 2vw;
}

.cta-career-row {
  justify-content: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 43, 82, 0.88);
}

.cta-card {
  background: rgba(255, 255, 255, 0.98);
  color: #1a1a1a;
  padding: 2vw;
  border-radius: 0.85vw;
  box-shadow: 0 0.4vw 1.65vw rgba(0, 0, 0, 0.15);
  height: 100%;
}

.cta-card h3 {
  font-size: 1.35vw;
  font-weight: 600;
  color: var(--madysta-blue);
  margin: 0 0 0.75vw;
}

.cta-card p {
  margin: 0 0 0.5vw;
  font-size: 0.95vw;
  color: var(--madysta-gray);
}

.cta-link {
  display: inline-block;
  font-weight: 600;
  color: var(--madysta-blue);
  text-decoration: none;
  margin: 0.5vw 0;
  font-size: 1.1vw;
}

.cta-link:hover {
  color: var(--madysta-blue-light);
  text-decoration: underline;
}

.cta-name {
  font-size: 0.85vw !important;
  margin-top: 0.75vw !important;
  font-style: italic;
}

.cta-card-career .career-subtitle {
  font-size: 1vw;
  font-weight: 600;
  color: var(--madysta-blue);
  margin: 1vw 0 0.5vw;
}

.cta-card-career .career-benefits {
  margin: 0 0 1vw;
  padding-left: 1.25vw;
  font-size: 0.85vw;
  color: var(--madysta-gray);
  line-height: 1.5;
}

.cta-card-career .career-benefits li {
  margin-bottom: 0.25vw;
}

.cta-card-career .career-prnt {
  margin: 0.75vw 0 0.35vw !important;
  font-size: 0.9vw !important;
}

.cta-card-form .cv-form {
  margin-top: 0.5vw;
}

.cv-form-group {
  margin-bottom: 1.25vw;
}

.cv-form-group:last-of-type {
  margin-bottom: 1.5vw;
}

.cv-form-group label {
  display: block;
  font-size: 0.9vw;
  font-weight: 600;
  color: var(--madysta-blue);
  margin-bottom: 0.35vw;
}

.cv-form-group .required {
  color: #c00;
}

.cv-form-group input[type="text"],
.cv-form-group input[type="email"],
.cv-form-group input[type="file"],
.cv-form-group textarea {
  width: 100%;
  padding: 0.6vw 0.75vw;
  font-size: 0.9vw;
  font-family: var(--font);
  color: #1a1a1a;
  background: #fff;
  border: 0.1vw solid rgba(0, 43, 82, 0.2);
  border-radius: 0.4vw;
}

.cv-form-group input[type="file"] {
  padding: 0.4vw 0;
}

.cv-form-group textarea {
  resize: vertical;
  min-height: 4vw;
}

.cv-form-submit {
  display: block;
  width: 100%;
  padding: 0.75vw 1.5vw;
  font-size: 1vw;
  font-weight: 600;
  font-family: var(--font);
  color: var(--white);
  background: var(--madysta-blue);
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background 0.2s;
}

.cv-form-submit:hover {
  background: var(--madysta-blue-light);
}

.cv-form-message {
  margin: 0 0 1vw 0;
  padding: 0.75vw 1vw;
  font-size: 0.95vw;
  border-radius: 0.4vw;
}

.cv-form-success {
  color: #0d5c2e;
  background: #d4edda;
  border: 0.1vw solid #c3e6cb;
}

.cv-form-error {
  color: #721c24;
  background: #f8d7da;
  border: 0.1vw solid #f5c6cb;
}

/* ---------- Contact (Nos coordonnées) ---------- */
.contact-section {
  background: #f5f6f8;
  padding: 4vw 10vw;
}

.contact-section .container {
  color: #1a1a1a;
}

.contact-section-title {
  font-size: clamp(1.5vw, 3vw, 2vw);
  font-weight: 600;
  color: var(--madysta-blue);
  text-align: center;
  margin: 0 0 2vw;
}

.contact-card {
  background: var(--white);
  padding: 2vw;
  border-radius: 0.85vw;
  box-shadow: 0 0.2vw 1vw rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-card-title {
  font-size: 1.35vw;
  font-weight: 600;
  color: var(--madysta-blue);
  margin: 0 0 1.25vw;
  padding-bottom: 0.75vw;
  border-bottom: 0.15vw solid rgba(0, 43, 82, 0.15);
}

.contact-item {
  margin: 0 0 0.75vw;
  font-size: 0.95vw;
  color: var(--madysta-gray);
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-weight: 600;
  color: var(--madysta-blue);
  min-width: 3.5vw;
}

.contact-link {
  color: var(--madysta-blue);
  font-weight: 500;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--madysta-blue-light);
  text-decoration: underline;
}

.contact-address span:last-child {
  line-height: 1.5;
}

.contact-privacy {
  text-align: center;
  font-size: 0.85vw;
  color: var(--madysta-gray);
  margin: 2vw 0 0;
  max-width: 36vw;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ---------- Certifications ---------- */
.certifications-section {
  background: #f5f6f8;
  padding: 3vw 0;
}

.certifications-section .container {
  color: #1a1a1a;
}

.certifications-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3vw;
}

.certification-item {
  position: relative;
}

.certification-item:hover .certification-tooltip {
  opacity: 1;
  visibility: visible;
}

.certification-logo {
  height: 5vw;
  width: auto;
  max-width: 14vw;
  object-fit: contain;
  display: block;
}

.certification-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-0.75vw);
  width: 28vw;
  max-width: 380px;
  padding: 1.25vw;
  background: var(--white);
  color: #1a1a1a;
  font-size: 0.85vw;
  line-height: 1.5;
  border-radius: 0.5vw;
  box-shadow: 0 0.4vw 1.5vw rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 10;
}

.certification-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 0.5vw solid transparent;
  border-top-color: var(--white);
}

.certification-tooltip a {
  color: var(--madysta-blue);
  font-weight: 600;
  text-decoration: underline;
}

.certification-tooltip a:hover {
  color: var(--madysta-blue-light);
}

/* ---------- Footer ---------- */
.footer {
  background: #001a33;
  padding: 2vw;
  text-align: center;
}

.footer-logo {
  height: 2.1vw;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 0.75vw;
}

.footer-copy {
  margin: 0;
  font-size: 0.85vw;
  color: #fff;
  opacity: 0.8;
}

/* ---------- Responsive (rem) ---------- */
@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
  }

  .hero-scroll {
    display: none;
  }

  .hero-lang {
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
    border-width: 0.1rem;
    border-radius: 0.35rem;
  }

  .hero-logo {
    max-width: 18rem;
  }

  .visions-section {
    padding: 1.25rem;
  }

  .visions-section::after {
    height: 10rem;
  }

  .visions-title {
    margin-bottom: 1.75rem;
    font-size: 1.5rem;
  }

  .visions-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .vision-logo {
    max-width: 10rem;
    padding: 0;
    border-radius: 0.5rem;
  }

  .visions-modal-box {
    max-width: 95%;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
  }

  .visions-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }

  .visions-modal-body {
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 1.25rem;
    padding-top: 2.5rem;
  }

  .visions-modal-right {
    width: 100%;
    max-width: none;
    order: -1;
  }

  .visions-modal-logo {
    max-height: 12rem;
  }

  .visions-modal-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .visions-modal-text {
    font-size: 0.95rem;
  }

  .visions-modal-text p {
    margin-bottom: 0.75rem;
  }

  .visions-modal-text ul {
    padding-left: 1.25rem;
  }

  .visions-modal-text ul li {
    margin-bottom: 0.25rem;
  }

  .slider-wrap {
    flex-direction: column;
  }

  .slider-btn {
    position: absolute;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border-width: 0.125rem;
  }

  .slider-prev {
    left: 0.5rem;
  }

  .slider-next {
    right: 0.5rem;
  }

  .slider-section {
    min-height: 20rem;
  }

  .slider-dots {
    bottom: 1rem;
    gap: 0.75rem;
  }

  .slider-dot {
    width: 0.75rem;
    height: 0.75rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cta-section {
    padding: 2.5rem 0;
  }

  .cta-inner {
    padding: 0 1.5rem;
  }

  .cta-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  .cta-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .cta-card p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .cta-link {
    font-size: 1rem;
    margin: 0.25rem 0;
  }

  .cta-name {
    font-size: 0.8rem !important;
    margin-top: 0.5rem !important;
  }

  .footer {
    padding: 1.25rem;
  }

  .about-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .about-block {
    margin-bottom: 2rem;
    max-width: none;
  }

  .about-subtitle {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }

  .about-block p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .about-values-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .about-value-card {
    padding: 1.25rem;
    border-radius: 0.5rem;
    border-left-width: 0.25rem;
  }

  .about-value-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .about-value-card p {
    font-size: 0.9rem;
  }

  .clients-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .clients-intro {
    max-width: none;
    margin-bottom: 1.5rem;
  }

  .clients-intro p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .clients-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .clients-slider-item {
    height: 3rem;
    max-width: 8rem;
  }

  .cta-career-title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
  }

  .cta-card-career .career-subtitle {
    font-size: 0.95rem;
    margin-top: 0.75rem;
    margin-bottom: 0.35rem;
  }

  .cta-card-career .career-benefits {
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    font-size: 0.85rem;
  }

  .cta-card-career .career-benefits li {
    margin-bottom: 0.2rem;
  }

  .cta-card-career .career-prnt {
    margin-top: 0.5rem !important;
    font-size: 0.85rem !important;
  }

  .cv-form-group {
    margin-bottom: 1rem;
  }

  .cv-form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .cv-form-group input[type="text"],
  .cv-form-group input[type="email"],
  .cv-form-group input[type="file"],
  .cv-form-group textarea {
    padding: 0.5rem 0.6rem;
    font-size: 0.9rem;
    border-width: 0.0625rem;
    border-radius: 0.35rem;
  }

  .cv-form-submit {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    border-radius: 0.4rem;
  }

  .cv-form-message {
    margin-bottom: 1rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    border-radius: 0.4rem;
    border-width: 0.1rem;
  }

  .contact-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .contact-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  .contact-card-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  .contact-item {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .contact-label {
    min-width: auto;
  }

  .contact-privacy {
    font-size: 0.8rem;
    max-width: none;
    margin-top: 1.5rem;
  }

  .certifications-section {
    padding: 2rem 0;
  }

  .certifications-wrap {
    gap: 2rem;
  }

  .certification-logo {
    height: 3.5rem;
    max-width: 10rem;
  }

  .certification-tooltip {
    width: 18rem;
    max-width: calc(100vw - 2rem);
    padding: 1rem;
    font-size: 0.85rem;
    transform: translateX(-50%) translateY(-0.5rem);
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  }

  .certification-tooltip::after {
    border-width: 0.375rem;
  }

  .footer-logo {
    height: 2rem;
    margin-bottom: 0.5rem;
  }

  .footer-copy {
    font-size: 0.8rem;
  }

  .loader-logo {
    max-width: 18rem;
    padding: 0 1.5rem;
  }
}
