:root {
  --primary-color: #316d7e;
  --primary-light: #4a8a9d;
  --primary-dark: #1f4a56;
  --accent-color: #00b0c1;
  --text-dark: #1a3b4c;
  --text-gray: #555;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 7%;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-content {
  text-align: center;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.loader-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(90deg, var(--primary-dark), var(--accent-color), var(--primary-dark));
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
  z-index: 1001;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: height 0.4s ease, opacity 0.4s ease;
}

.announcement-bar.hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.announcement-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  flex-shrink: 0;
}

.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.announcement-item {
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.announcement-item i {
  font-size: 0.75rem;
  opacity: 0.9;
}

.announcement-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
}

.announcement-close {
  position: absolute;
  right: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

.announcement-close:hover {
  background: rgba(255, 255, 255, 0.3);
}


.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(49, 109, 126, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  box-shadow: 0 8px 25px rgba(49, 109, 126, 0.5);
  transform: translateY(-4px);
}

.scroll-top-btn:active {
  transform: translateY(-1px);
}


body.has-announcement header {
  top: 36px;
}

body.has-announcement .hero {
  margin-top: calc(85px + 36px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 7%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(49, 109, 126, 0.15);
}


header.scrolled {
  padding: 1rem 7%;
  box-shadow: 0 4px 25px rgba(49, 109, 126, 0.3);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1001;
}

.logo {
  height: 50px;
  border-radius: 10px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(2deg);
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: white;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.nav-cta {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  border: 2px solid white;
}

.nav-link.nav-cta::after {
  display: none;
}

.nav-link.nav-cta:hover {
  background: white;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-links i {
  font-size: 18px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.hero {
  position: relative;
  margin-top: 85px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 7%;
  gap: 4rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.hero-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  top: -200px;
  left: -100px;
}

.hero-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  bottom: -150px;
  right: -50px;
  animation-delay: -5s;
}

.hero-shape.shape-3 {
  width: 350px;
  height: 350px;
  background: var(--primary-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  box-shadow: 0 4px 15px rgba(49, 109, 126, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(49, 109, 126, 0.4);
}

.cta-button.secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.cta-button.secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-weight: 500;
}

.hero-image {
  flex: 1;
  z-index: 1;
  animation: fadeInRight 1s ease-out;
}

.image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  z-index: 0;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px;
  position: relative;
  z-index: 1;
}

.features {
  padding: 6rem 7%;
  background: var(--bg-white);
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 20px;
  transition: var(--transition);
  border: 2px solid #f0f0f0;
  overflow: hidden;
  animation-delay: var(--delay, 0s);
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.feature-card:hover .feature-overlay {
  opacity: 0.05;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(49, 109, 126, 0.2);
  border-color: var(--primary-color);
}

.feature-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(49, 109, 126, 0.3);
  z-index: 1;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-card h3 {
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
  z-index: 1;
}

.feature-card p {
  position: relative;
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  z-index: 1;
}

.section-label {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: rgba(49, 109, 126, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.about-section {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 6rem 7%;
  background: linear-gradient(135deg, #f5f9fa, #ffffff);
}

.about-image {
  flex: 1;
}

.image-frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 500px;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  color: var(--primary-color);
}

.image-badge i {
  color: #e74c3c;
  font-size: 1.2rem;
}

.about-content {
  flex: 1;
  max-width: 600px;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.about-content p {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-sm);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.highlight-item span {
  font-weight: 500;
  color: var(--text-dark);
}

.process-section {
  padding: 6rem 7%;
  background: var(--bg-white);
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.process-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.process-header p {
  font-size: 1.15rem;
  color: var(--text-gray);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-connector {
  display: none;
}

.process-step {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  transition: var(--transition);
  position: relative;
  animation-delay: var(--delay, 0s);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(49, 109, 126, 0.15);
  border-color: var(--primary-color);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(49, 109, 126, 0.3);
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 1.5rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(49, 109, 126, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.process-step p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.savoir-faire-section {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 6rem 7%;
  background: var(--bg-white);
}

.savoir-faire-content {
  flex: 1;
  max-width: 600px;
}

.savoir-faire-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.savoir-faire-content p {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.savoir-faire-skills {
  margin-top: 2.5rem;
}

.skill-item {
  margin-bottom: 2rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.skill-bar {
  height: 12px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 10px;
  width: 0;
  animation: fillBar 2s ease-out forwards;
  animation-delay: 0.5s;
  position: relative;
  overflow: hidden;
}

.skill-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes fillBar {
  to { width: var(--width); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.savoir-faire-image {
  flex: 1;
}

.engagements-section {
  padding: 6rem 7%;
  background: linear-gradient(135deg, #f5f9fa, #ffffff);
}

.engagements-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.engagements-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.engagements-header p {
  font-size: 1.15rem;
  color: var(--text-gray);
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.engagement-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}

.engagement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(49, 109, 126, 0.2);
  border-color: var(--primary-color);
}

.card-header {
  margin-bottom: 1.5rem;
}

.engagement-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 1rem;
}

.engagement-card p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 2px solid #f0f0f0;
  color: var(--primary-color);
  font-weight: 600;
}

.card-footer i {
  font-size: 1.2rem;
}

.testimonials-section {
  padding: 6rem 7%;
  background: var(--bg-white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(49, 109, 126, 0.15);
  border-color: var(--primary-color);
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 50%;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.testimonial-author span {
  display: block;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.cta-section {
  padding: 6rem 7%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-section .cta-button.primary {
  background: white;
  color: var(--primary-color);
}

.cta-section .cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-section .cta-button.secondary:hover {
  background: white;
  color: var(--primary-color);
}

footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: white;
  padding: 4rem 7% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 1.3rem;
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.footer-links-group h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  transition: var(--transition);
  position: relative;
  padding-left: 1rem;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 1.5rem;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal-left,
.reveal-right,
.reveal-bottom {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-bottom {
  transform: translateY(50px);
}

.reveal-bottom.active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 3.2rem;
  }
  
  .hero-content,
  .about-content,
  .savoir-faire-content {
    max-width: 650px;
  }
}

@media (max-width: 1024px) {
  header {
    padding: 1.2rem 5%;
  }
  
  .logo {
    height: 45px;
  }
  
  .brand-name {
    font-size: 1.5rem;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: 1.2rem 1rem;
    text-align: left;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    padding-left: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link.nav-cta {
    margin-top: 1.5rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid white;
    border-bottom: 2px solid white;
  }
  
  .nav-link.nav-cta:hover {
    padding-left: 1rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .social-links {
    gap: 0.8rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
    gap: 3rem;
    min-height: auto;
    margin-top: 85px;
  }
  
  body.has-announcement .hero {
    margin-top: calc(85px + 36px);
  }
  
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 4rem;
  }
  
  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .image-wrapper img {
    max-height: 450px;
  }
  
  .features {
    padding: 5rem 5%;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .feature-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-section {
    flex-direction: column;
    padding: 5rem 5%;
    gap: 3rem;
  }
  
  .about-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-highlights {
    max-width: 600px;
    margin: 2rem auto 0;
  }
  
  .process-section {
    padding: 5rem 5%;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .savoir-faire-section {
    flex-direction: column-reverse;
    padding: 5rem 5%;
    gap: 3rem;
  }
  
  .savoir-faire-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  .savoir-faire-image {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .savoir-faire-skills {
    max-width: 600px;
    margin: 2.5rem auto 0;
  }
  
  .engagements-section {
    padding: 5rem 5%;
  }
  
  .engagements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .engagement-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .testimonials-section {
    padding: 5rem 5%;
  }
  
  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .cta-section {
    padding: 5rem 5%;
  }
  
  .cta-content h2 {
    font-size: 2.8rem;
  }
  
  footer {
    padding: 3.5rem 5% 2rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  header {
    padding: 1rem 4%;
  }
  
  .logo {
    height: 42px;
  }
  
  .brand-name {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
  
  .social-links {
    gap: 0.6rem;
  }
  
  .social-links a {
    width: 38px;
    height: 38px;
  }
  
  .social-links i {
    font-size: 16px;
  }
  
  .main-nav {
    width: 280px;
    padding: 5rem 1.5rem 2rem;
  }
  
  .hero {
    margin-top: 78px;
    padding: 2.5rem 4%;
    gap: 2.5rem;
  }
  
  body.has-announcement .hero {
    margin-top: calc(78px + 36px);
  }
  
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.15;
  }
  
  .hero-subtitle {
    font-size: 1.08rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    padding: 1rem 2.2rem;
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .stat-label {
    font-size: 0.92rem;
  }
  
  .hero-stats {
    gap: 3rem;
  }
  
  .image-wrapper img {
    max-height: 380px;
  }
  
  .features,
  .about-section,
  .process-section,
  .savoir-faire-section,
  .engagements-section,
  .testimonials-section,
  .cta-section {
    padding: 4.5rem 4%;
  }
  
  .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .section-label {
    font-size: 0.88rem;
    padding: 0.55rem 1.3rem;
    letter-spacing: 1.3px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-card {
    padding: 2.8rem 2rem;
  }
  
  .feature-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
  
  .feature-icon {
    width: 75px;
    height: 75px;
    font-size: 1.9rem;
    margin-bottom: 1.4rem;
  }
  
  .feature-card h3 {
    font-size: 1.45rem;
  }
  
  .feature-card p {
    font-size: 1.05rem;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.3rem;
  }
  
  .about-content p {
    font-size: 1.08rem;
    margin-bottom: 1.3rem;
  }
  
  .image-frame {
    border-radius: 20px;
  }
  
  .image-frame img {
    max-height: 380px;
  }
  
  .highlight-item {
    padding: 1rem 1.2rem;
  }
  
  .highlight-item i {
    font-size: 1.25rem;
  }
  
  .process-header {
    margin-bottom: 3.5rem;
  }
  
  .process-header h2 {
    font-size: 2.5rem;
  }
  
  .process-header p {
    font-size: 1.08rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-step {
    padding: 2.5rem 1.8rem;
  }
  
  .step-number {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    top: -14px;
  }
  
  .step-icon {
    width: 65px;
    height: 65px;
    font-size: 1.7rem;
    margin: 1.3rem auto 1.3rem;
  }
  
  .process-step h3 {
    font-size: 1.35rem;
  }
  
  .process-step p {
    font-size: 1rem;
    line-height: 1.65;
  }
  
  .savoir-faire-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.3rem;
  }
  
  .savoir-faire-content p {
    font-size: 1.08rem;
    margin-bottom: 1.3rem;
  }
  
  .skill-item {
    margin-bottom: 1.8rem;
  }
  
  .skill-info {
    font-size: 0.98rem;
    margin-bottom: 0.75rem;
  }
  
  .skill-bar {
    height: 11px;
  }
  
  .engagements-header h2 {
    font-size: 2.5rem;
  }
  
  .engagements-header p {
    font-size: 1.08rem;
  }
  
  .engagements-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .engagement-card {
    padding: 2.5rem 2rem;
  }
  
  .engagement-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
  
  .engagement-card h3 {
    font-size: 1.45rem;
  }
  
  .engagement-card p {
    font-size: 1.05rem;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    padding: 2.3rem 1.8rem;
  }
  
  .testimonial-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
  
  .testimonial-text {
    font-size: 1.05rem;
  }
  
  .cta-content h2 {
    font-size: 2.3rem;
    line-height: 1.3;
  }
  
  .cta-content p {
    font-size: 1.08rem;
    margin-bottom: 2.2rem;
  }
  
  .cta-buttons {
    gap: 1.2rem;
  }
  
  footer {
    padding: 3rem 4% 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-brand {
    grid-column: auto;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .footer-links a:hover {
    padding-left: 0;
    text-decoration: underline;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  header {
    padding: 0.9rem 4%;
  }
  
  .logo {
    height: 38px;
  }
  
  .brand-name {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
  }
  
  .social-links {
    gap: 0.5rem;
  }
  
  .social-links a {
    width: 36px;
    height: 36px;
  }
  
  .social-links i {
    font-size: 15px;
  }
  
  .mobile-menu-toggle span {
    width: 23px;
    height: 2.5px;
  }
  
  .main-nav {
    width: 100%;
    top: 70px;
    height: calc(100vh - 70px);
    padding: 2rem 1.5rem;
  }
  
  .nav-link {
    padding: 1.1rem 1rem;
    font-size: 1.05rem;
  }
  
  .hero {
    margin-top: 74px;
    padding: 2rem 4%;
    gap: 2rem;
  }
  
  body.has-announcement .hero {
    margin-top: calc(74px + 36px);
  }
  
  .hero-title {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .gradient-text {
    margin-top: 0.4rem;
  }
  
  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 1.8rem;
    line-height: 1.65;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.98rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: row;
    gap: 2.5rem;
    width: 100%;
  }
  
  .stat-item {
    flex: 1;
  }
  
  .stat-number {
    font-size: 2.6rem;
  }
  
  .stat-label {
    font-size: 0.88rem;
  }
  
  .hero-image {
    max-width: 100%;
  }
  
  .image-wrapper {
    border-radius: 20px;
  }
  
  .image-wrapper img {
    max-height: 300px;
  }
  
  .features,
  .about-section,
  .process-section,
  .savoir-faire-section,
  .engagements-section,
  .testimonials-section,
  .cta-section {
    padding: 3.5rem 4%;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.25;
  }
  
  .section-label {
    font-size: 0.82rem;
    padding: 0.5rem 1.1rem;
    letter-spacing: 1.1px;
  }
  
  .feature-card {
    padding: 2.3rem 1.5rem;
    border-radius: 18px;
  }
  
  .feature-icon {
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
    margin-bottom: 1.3rem;
  }
  
  .feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
  }
  
  .feature-card p {
    font-size: 0.98rem;
    line-height: 1.65;
  }
  
  .about-content h2,
  .savoir-faire-content h2,
  .engagements-header h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  
  .about-content p,
  .savoir-faire-content p,
  .engagements-header p {
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
  }
  
  .image-frame {
    border-radius: 18px;
  }
  
  .image-frame img {
    max-height: 280px;
  }
  
  .about-highlights {
    margin-top: 1.8rem;
  }
  
  .highlight-item {
    padding: 0.9rem 1rem;
    gap: 0.9rem;
    border-radius: 10px;
  }
  
  .highlight-item i {
    font-size: 1.15rem;
  }
  
  .highlight-item span {
    font-size: 0.95rem;
  }
  
  .process-header {
    margin-bottom: 3rem;
  }
  
  .process-header h2 {
    font-size: 2rem;
  }
  
  .process-header p {
    font-size: 0.98rem;
  }
  
  .process-step {
    padding: 2.2rem 1.5rem;
    border-radius: 18px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: -13px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.55rem;
    margin: 1.2rem auto 1.2rem;
  }
  
  .process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
  }
  
  .process-step p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  
  .savoir-faire-skills {
    margin-top: 2rem;
  }
  
  .skill-item {
    margin-bottom: 1.6rem;
  }
  
  .skill-info {
    font-size: 0.92rem;
    margin-bottom: 0.7rem;
  }
  
  .skill-bar {
    height: 10px;
    border-radius: 8px;
  }
  
  .engagements-header {
    margin-bottom: 3rem;
  }
  
  .engagement-card {
    padding: 2.2rem 1.5rem;
    border-radius: 18px;
  }
  
  .engagement-card .feature-icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }
  
  .engagement-card h3 {
    font-size: 1.35rem;
    margin-top: 0.9rem;
  }
  
  .engagement-card p {
    font-size: 0.98rem;
    margin-bottom: 1.3rem;
    line-height: 1.65;
  }
  
  .card-footer {
    font-size: 0.92rem;
    gap: 0.7rem;
    padding-top: 1rem;
  }
  
  .card-footer i {
    font-size: 1.05rem;
  }
  
  .testimonials-header {
    margin-bottom: 3rem;
  }
  
  .testimonials-header h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }
  
  .testimonial-stars {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
  }
  
  .testimonial-text {
    font-size: 0.98rem;
    margin-bottom: 1.3rem;
    line-height: 1.7;
  }
  
  .author-avatar {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }
  
  .testimonial-author strong {
    font-size: 0.98rem;
  }
  
  .testimonial-author span {
    font-size: 0.88rem;
  }
  
  .cta-content h2 {
    font-size: 1.9rem;
    margin-bottom: 0.9rem;
    line-height: 1.35;
  }
  
  .cta-content p {
    font-size: 0.98rem;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .cta-buttons .cta-button {
    width: 100%;
  }
  
  footer {
    padding: 2.5rem 4% 1.8rem;
  }
  
  .footer-content {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    gap: 2rem;
  }
  
  .footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 0.9rem;
  }
  
  .footer-brand p {
    font-size: 0.98rem;
    margin-bottom: 1.3rem;
  }
  
  .footer-social a {
    width: 43px;
    height: 43px;
    font-size: 1.25rem;
  }
  
  .footer-links-group h4 {
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
  }
  
  .footer-links {
    gap: 0.75rem;
  }
  
  .footer-links a {
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    font-size: 0.92rem;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 13px;
  }
  
  .logo {
    height: 35px;
  }
  
  .brand-name {
    font-size: 1.15rem;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .section-title {
    font-size: 1.85rem;
  }
  
  .cta-button {
    padding: 0.95rem 1.8rem;
    font-size: 0.95rem;
  }
  
  .feature-icon,
  .engagement-card .feature-icon {
    width: 62px;
    height: 62px;
    font-size: 1.55rem;
  }
  
  .step-icon {
    width: 56px;
    height: 56px;
    font-size: 1.45rem;
  }
  
  .image-wrapper img,
  .image-frame img {
    max-height: 250px;
  }
}

@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: auto;
    padding: 2rem 4%;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-stats {
    display: none;
  }
  
  .hero-image {
    display: none;
  }
  
  .main-nav {
    height: 100vh;
    overflow-y: auto;
  }
  
  .features,
  .about-section,
  .process-section,
  .savoir-faire-section,
  .engagements-section,
  .testimonials-section,
  .cta-section {
    padding: 3rem 4%;
  }
}

@media (hover: none) and (pointer: coarse) {
  .nav-link,
  .cta-button,
  .social-links a,
  .footer-social a,
  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-card:hover .feature-icon {
    transform: none;
  }
  
  .cards {
    cursor: default;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-shape {
    animation: none !important;
  }
  
  .loader-container * {
    animation: none !important;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo,
  .image-frame img,
  .hero-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

@media print {
  .loader-container,
  header,
  .mobile-menu-toggle,
  .hero-buttons,
  .hero-stats,
  .cta-section,
  footer {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero,
  .about-section,
  .savoir-faire-section,
  .engagements-section {
    page-break-inside: avoid;
  }
  
  * {
    box-shadow: none !important;
  }
}