/* ============================================================
   SSE Development (Société de Stratégie Economique)
   Main Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

/* --- Brand Variables --- */
:root {
  --red:         #c41a1a;
  --red-dark:    #9e1414;
  --red-light:   #e52222;
  --gold:        #d4950a;
  --gold-light:  #f5b229;
  --dark:        #0d1117;
  --charcoal:    #1a1f2e;
  --charcoal2:   #242b3d;
  --white:       #ffffff;
  --light:       #f5f5f5;
  --muted:       #8899aa;
  --text-light:  #b8c4d0;
  --border:      rgba(255,255,255,0.08);
  --radius:      6px;
  --transition:  0.3s ease;
}

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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,26,26,0.35); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,149,10,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--red); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,17,23,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,26,26,0.25);
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-brand-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--dark);
  border-bottom: 2px solid var(--red);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.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(13,17,23,0.88) 40%, rgba(196,26,26,0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 80px 24px 80px;
  margin-left: 6%;
}

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.75;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 140px 24px 80px;
  text-align: center;
  background: var(--dark);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto;
}
.page-breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--red);
  padding: 28px 24px;
}
.stats-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

/* ============================================================
   GENERAL SECTIONS
   ============================================================ */
.section {
  padding: 96px 24px;
}
.section-dark {
  background: var(--charcoal);
  color: var(--white);
}
.section-darker {
  background: var(--dark);
  color: var(--white);
}
.section-light { background: var(--light); }
.section-red { background: var(--red); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.section-dark .eyebrow,
.section-darker .eyebrow { color: var(--gold); }
.section-red .eyebrow { color: rgba(255,255,255,0.7); }

.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--dark);
}
.section-dark .section-header h2,
.section-darker .section-header h2 { color: var(--white); }
.section-red .section-header h2 { color: var(--white); }

.section-header p {
  font-size: 1.05rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-dark .section-header p,
.section-darker .section-header p { color: var(--text-light); }
.section-red .section-header p { color: rgba(255,255,255,0.82); }

.divider {
  width: 56px;
  height: 3px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section-dark .divider,
.section-darker .divider { background: var(--gold); }
.section-red .divider { background: rgba(255,255,255,0.5); }

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-text .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}
.two-col-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.section-dark .two-col-text h2 { color: var(--white); }
.section-dark .two-col-text .eyebrow { color: var(--gold); }

.two-col-text p {
  font-size: 1.02rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.78;
}
.section-dark .two-col-text p { color: var(--text-light); }

.two-col-image {
  position: relative;
}
.two-col-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}
.two-col-image::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

/* Check list */
.check-list { margin-top: 20px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.98rem;
  color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.check-list li:last-child { border-bottom: none; }
.section-dark .check-list li { color: var(--text-light); border-color: var(--border); }
.check-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 20px;
  padding-top: 2px;
}
.section-dark .check-list li::before { color: var(--gold); }

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-body h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.card-body p {
  font-size: 0.94rem;
  color: #666;
  line-height: 1.7;
}

/* Icon cards (dark bg) */
.icon-card {
  background: var(--charcoal2);
  border-radius: 8px;
  padding: 32px 28px;
  transition: var(--transition);
  border-top: 3px solid var(--red);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
}
.icon-card:hover { transform: translateY(-4px); background: rgba(36,43,61,0.9); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.icon-card-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
}
.icon-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Service cards */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 320px;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.07); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.92) 40%, rgba(13,17,23,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: var(--transition);
}
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(196,26,26,0.88) 30%, rgba(13,17,23,0.3) 100%); }

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.service-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.service-card p {
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.service-card:hover p { opacity: 1; transform: translateY(0); }

/* ============================================================
   VISUAL BREAK BANNER
   ============================================================ */
.visual-break {
  position: relative;
  min-height: 380px;
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.visual-break img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-break-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(13,17,23,0.88) 50%, rgba(13,17,23,0.3) 100%);
}
.visual-break-content {
  position: relative;
  z-index: 1;
  padding: 0 10%;
  max-width: 720px;
}
.visual-break-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.visual-break-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.office-card {
  background: var(--charcoal2);
  border-radius: 8px;
  padding: 28px 24px;
  border-left: 4px solid var(--red);
  transition: var(--transition);
}
.office-card:hover { transform: translateY(-4px); }
.office-card .flag { font-size: 2rem; margin-bottom: 12px; }
.office-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.office-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--red);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
.team-card-avatar {
  width: 80px; height: 80px;
  background: var(--charcoal);
  border-radius: 50%;
  margin: 32px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.team-card-body { padding: 0 24px 28px; }
.team-card-body h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.team-card-body .role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text { flex: 1; }
.contact-item-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-text span {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact form */
.contact-form {
  background: var(--charcoal2);
  border-radius: 10px;
  padding: 40px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.94rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,26,26,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--red);
  padding: 80px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Partners strip */
.partners-strip {
  background: var(--charcoal2);
  padding: 48px 24px;
  text-align: center;
}
.partners-strip .section-header { margin-bottom: 32px; }
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}
.partner-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 20px;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.partner-badge span { font-size: 1.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 64px 24px 0;
  border-top: 1px solid rgba(196,26,26,0.25);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span:last-child { font-size: 0.86rem; color: var(--muted); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
.footer-bottom .tagline { color: var(--gold); font-style: italic; font-size: 0.82rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 48px; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }

  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { margin-left: 0; padding: 80px 24px 60px; }

  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .two-col-image::before { display: none; }
  .two-col-image img { height: 280px; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .visual-break-content { padding: 0 24px; }

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

  .stats-bar .container { gap: 28px; }
  .stat-item { min-width: 120px; }
}

@media (max-width: 480px) {
  .section { padding: 72px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
}
