/* ============================================
   BRACHET CONSEILS — Feuille de style principale
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---- Variables CSS ---- */
:root {
  --navy: #2A3B5C;
  --navy-dark: #1E2D47;
  --navy-light: #3A4F73;
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --gold-dark: #A8893E;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-light: #F0EDE8;
  --gray: #B0A99F;
  --gray-dark: #6B6560;
  --text-dark: #2A2A2A;
  --text-body: #555555;
  --shadow: 0 4px 20px rgba(42, 59, 92, 0.10);
  --shadow-hover: 0 8px 30px rgba(42, 59, 92, 0.18);
  --transition: all 0.3s ease;
  --radius: 6px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.25;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Utility ---- */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-navy { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.bg-gray-light { background: var(--gray-light); }

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  color: var(--text-body);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: var(--gold-light);
  font-weight: 500;
}
.top-bar a:hover { color: var(--white); }
.top-bar-left { display: flex; align-items: center; gap: 8px; }
.top-bar-left svg { width: 14px; height: 14px; flex-shrink: 0; }
.top-bar-right a { display: flex; align-items: center; gap: 6px; }
.top-bar-right svg { width: 14px; height: 14px; }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo svg { height: 40px; width: auto; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--gold); }

.header-cta {
  margin-left: 24px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 32px 24px;
  z-index: 999;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-light);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; width: 100%; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,59,92,0.85) 0%, rgba(42,59,92,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
}
.hero-content .section-subtitle { color: var(--gold-light); }
.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 36px;
  opacity: 0.9;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Service Tabs ---- */
.service-tabs {
  background: var(--navy);
  padding: 0;
}
.service-tabs-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.service-tab {
  flex: 1;
  min-width: 160px;
  padding: 24px 16px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.service-tab svg { width: 28px; height: 28px; opacity: 0.7; transition: var(--transition); }
.service-tab:hover, .service-tab.active {
  color: var(--white);
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,0.05);
}
.service-tab:hover svg, .service-tab.active svg { opacity: 1; }

/* Service Tab Content */
.service-tab-content {
  display: none;
  padding: 48px 0;
}
.service-tab-content.active { display: block; }
.service-tab-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-tab-text h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}
.service-tab-text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.service-tab-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-tab-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.service-tab-features li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ---- Démarche / Steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-light);
}
.step-card {
  text-align: center;
  position: relative;
}
.step-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
  background: var(--white);
}
.step-icon img { width: 100%; height: 100%; object-fit: cover; }
.step-number {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
}

/* ---- Mission ---- */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.mission-text p { margin-bottom: 16px; }
.mission-list { margin: 20px 0 32px; }
.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.mission-list li svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.mission-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ---- Cards (Profils, Solutions) ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { width: 28px; height: 28px; color: var(--gold); }
.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { font-size: 0.9rem; color: var(--gray-dark); }

/* Solution cards variant */
.solution-card {
  border-top: 3px solid var(--gold);
  text-align: left;
}
.solution-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.solution-card ul { margin-top: 12px; }
.solution-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.solution-card ul li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ---- Équipe ---- */
.team-photo {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-member { text-align: center; }
.team-member-img {
  width: 180px;
  height: 220px;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-member-img img { width: 100%; height: 100%; object-fit: cover; }
.team-member h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-member p { font-size: 0.85rem; color: var(--gold); font-weight: 500; }

/* ---- Témoignages ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}
.testimonial-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.6;
}
.testimonial-text .author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-text .author span {
  display: block;
  font-weight: 400;
  color: var(--gray-dark);
  font-size: 0.8rem;
}

/* ---- Chiffres clés ---- */
.stats-section { background: var(--navy); color: var(--white); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item h3 {
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.stat-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ---- Avis Google ---- */
.google-reviews {
  position: relative;
}
.google-badge {
  text-align: center;
  margin-bottom: 40px;
}
.google-badge img { max-width: 200px; margin: 0 auto; }
.reviews-carousel {
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}
.review-card {
  min-width: calc(33.333% - 20px);
  margin: 0 10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.review-stars { color: #FFC107; font-size: 1.1rem; margin-bottom: 12px; }
.review-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.7;
}
.review-author {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--navy);
  color: var(--white);
}
.carousel-btn svg { width: 18px; height: 18px; }

/* ---- Logos Partenaires ---- */
.partners-track {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.partners-track img {
  max-height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}
.partners-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 0;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text small { color: var(--gold); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; }
.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer ul li a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contact li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 20px; }
.footer-bottom a:hover { color: var(--gold); }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  color: var(--white);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.6;
}
.cookie-banner p a { color: var(--gold-light); text-decoration: underline; }
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* ---- Contact Page ---- */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 140px 0 60px;
  text-align: center;
}
.page-header h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 12px; }
.page-header p { font-size: 1.1rem; opacity: 0.8; }

.breadcrumb {
  padding: 16px 0;
  font-size: 0.8rem;
  color: var(--gray-dark);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,165,90,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-card {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius);
}
.contact-info-card h3 { font-size: 1.4rem; margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-item p { font-size: 0.9rem; }

/* ---- Legal Pages ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content p { margin-bottom: 12px; font-size: 0.95rem; }
.legal-content ul { margin: 12px 0 12px 20px; }
.legal-content ul li { margin-bottom: 8px; font-size: 0.95rem; list-style: disc; }

/* ---- Fade-up Animation ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: 2.5rem; }
  .hero { min-height: 70vh; }

  .service-tabs-list { flex-wrap: wrap; }
  .service-tab { min-width: 120px; padding: 16px 12px; font-size: 0.7rem; }
  .service-tab-content .container { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }

  .mission-grid { grid-template-columns: 1fr; }
  .mission-image { order: -1; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .review-card { min-width: calc(50% - 20px); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .section-title { font-size: 2rem; }
}

@media (max-width: 640px) {
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }

  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .service-tab { min-width: 100%; }

  .steps-grid { grid-template-columns: 1fr; }

  .cards-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr; gap: 32px; }

  .review-card { min-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .section-padding { padding: 60px 0; }

  .cookie-banner .container { flex-direction: column; text-align: center; }
  .cookie-buttons { justify-content: center; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
