/* ============================================
   MSB BAT — Site vitrine
   ============================================ */

:root {
  --navy: #0E2A47;
  --navy-deep: #0A1F35;
  --navy-light: #1A3A5C;
  --red: #E63946;
  --red-hover: #C72D3A;
  --bg: #FFFFFF;
  --bg-soft: #F4F4F7;
  --bg-lavender: #ECECF2;
  --bg-cream: #FAF6F0;
  --text: #0E2A47;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --white: #FFFFFF;

  --font-display: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 3px rgba(14, 42, 71, 0.06);
  --shadow-md: 0 6px 20px rgba(14, 42, 71, 0.08);
  --shadow-lg: 0 20px 40px rgba(14, 42, 71, 0.12);

  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p { color: var(--text-muted); line-height: 1.7; }

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 760px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .lead { margin: 16px auto 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 48px; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(14, 42, 71, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.footer-simple .logo-img { height: 64px; }

@media (max-width: 640px) {
  .logo-img { height: 56px; }
}

/* Nav: items separated by middots, like the screenshot */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-list li {
  display: flex;
  align-items: center;
}

.nav-list li:not(:last-child)::after {
  content: '·';
  margin: 0 14px;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.125rem;
  opacity: 0.5;
}

.nav-list a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 2px;
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after  { top:  8px; }

@media (max-width: 1024px) {
  .nav-list { display: none; }
  .menu-toggle { display: flex; }

  .nav.open .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    gap: 0;
  }
  .nav.open .nav-list li::after { display: none; }
  .nav.open .nav-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-list li:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  .header-inner { height: 80px; }
  .logo-mark { width: 44px; height: 44px; }
  .logo-text { font-size: 1.05rem; }
  .header-cta-btn { display: none; }
  .nav.open .nav-list { top: 80px; }
}

/* ============================================
   Hero — full-bleed building image
   ============================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background-color: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(14, 42, 71, 0.65), rgba(14, 42, 71, 0.65)),
    url("../images/building-hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 80px 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 760px;
  margin: 0 auto 32px;
}

.hero-link {
  display: inline-block;
  color: var(--red);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
}
.hero-link:hover { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

/* Sub-page header (navy band with white text) */
.page-head {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(230, 57, 70, 0.15), transparent 55%);
  pointer-events: none;
}

.page-head .container {
  text-align: left;
  position: relative;
  z-index: 1;
}

.page-head .eyebrow { color: var(--red); }

.page-head h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.page-head .lead {
  margin-top: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   Sections (light backgrounds)
   ============================================ */
.section-light {
  background: linear-gradient(180deg, var(--bg-lavender) 0%, var(--bg-lavender) 50%, var(--white) 50%, var(--white) 100%);
}

.section-cream { background: var(--bg-cream); }
.section-bg { background: var(--bg-soft); }

/* ============================================
   Stat bar
   ============================================ */
.statbar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.statbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }

.stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.stat-icon svg { width: 22px; height: 22px; }

.stat:hover .stat-icon { transform: translateY(-3px); }

.stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 4px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .statbar-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:nth-child(2n) { border-right: 0; }
}

/* ============================================
   Service cards (red top border, like the screenshot)
   Flex layout to center orphan items on the last row
   ============================================ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.services-grid > .service-card {
  flex: 0 1 calc((100% - 56px) / 3);
  min-width: 0;
}

@media (max-width: 1024px) {
  .services-grid > .service-card {
    flex: 0 1 calc((100% - 28px) / 2);
  }
}

@media (max-width: 640px) {
  .services-grid > .service-card {
    flex: 0 1 100%;
  }
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid var(--red);
  min-height: 220px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--navy);
  margin-bottom: 28px;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.3;
}

.service-card h3 small {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ============================================
   Service tags (home page teaser list)
   ============================================ */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.service-tags li {
  padding: 12px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s ease;
}

.service-tags li:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* Mini service cards (homepage teaser) */
.services-grid-mini {
  gap: 20px;
}

.services-grid-mini > .service-card {
  flex: 0 1 calc((100% - 40px) / 3);
}

@media (max-width: 1024px) {
  .services-grid-mini > .service-card {
    flex: 0 1 calc((100% - 20px) / 2);
  }
}

@media (max-width: 540px) {
  .services-grid-mini > .service-card {
    flex: 0 1 100%;
  }
}

.service-card-mini {
  min-height: auto;
  padding: 26px 24px;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  border-top: 0;
  border-left: 4px solid var(--red);
  cursor: pointer;
}

.service-card-mini .service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-card-mini h3 {
  font-size: 0.9375rem;
  margin-bottom: 0;
  line-height: 1.3;
}

.service-card-mini:hover .service-icon {
  color: var(--red);
}

/* Approach features (homepage intro) */
.approach-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .approach-features {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 48px;
    padding-top: 40px;
  }
}

.approach-feature {
  text-align: center;
  padding: 0 12px;
}

.approach-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
}

.approach-feature-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.12);
  z-index: -1;
}

.approach-feature:hover .approach-feature-icon {
  background: var(--red);
  transform: translateY(-3px);
}

.approach-feature-icon svg { width: 26px; height: 26px; }

.approach-feature h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.approach-feature p {
  font-size: 0.9375rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   Pillars
   ============================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pillars { grid-template-columns: 1fr; } }

.pillar {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.pillar:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 8px;
  color: var(--red);
  margin-bottom: 20px;
}
.pillar-icon svg { width: 22px; height: 22px; }

.pillar h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.pillar p { font-size: 0.9375rem; }

/* Values list — circular icons, no card box (distinct from .pillar cards) */
.value-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
}

@media (max-width: 1024px) { .value-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .value-list { grid-template-columns: 1fr; } }

.value-item {
  text-align: center;
  padding: 8px 8px;
}

.value-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-icon::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 2px dashed var(--red);
  border-radius: 50%;
  opacity: 0.55;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.value-item:hover .value-icon {
  background: var(--red);
  transform: translateY(-4px);
}

.value-item:hover .value-icon::after {
  opacity: 1;
  transform: rotate(45deg);
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-item h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.value-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================
   Method
   ============================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  position: relative;
  padding-top: 8px;
}

@media (max-width: 1024px) { .method-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; } }
@media (max-width: 640px)  { .method-grid { grid-template-columns: 1fr; row-gap: 32px; } }

.method-step {
  padding: 0 18px;
  background: transparent;
  border: 0;
  counter-increment: step;
  text-align: center;
  position: relative;
}

.method-step::before {
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.18);
}

.method-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--red) 0 6px, transparent 6px 12px);
  z-index: 1;
}

@media (max-width: 1024px) {
  .method-step:nth-child(2)::after { display: none; }
}

@media (max-width: 640px) {
  .method-step::after { display: none !important; }
}

.method-step h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}
.method-step p {
  font-size: 0.9375rem;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  padding: 40px 36px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial::before {
  content: '“';
  position: absolute;
  top: 8px;
  left: 24px;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-author { font-size: 0.875rem; color: var(--text-muted); }
.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}

/* ============================================
   Engagements cards (numbered)
   ============================================ */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: eng;
}

@media (max-width: 1024px) { .engagement-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .engagement-grid { grid-template-columns: 1fr; } }

.engagement-card {
  padding: 36px 32px 32px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  counter-increment: eng;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--red);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.engagement-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red) 0%, #C72D3A 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px rgba(230, 57, 70, 0.25);
}

.engagement-icon svg {
  width: 26px;
  height: 26px;
}

.engagement-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy);
  position: relative;
  z-index: 1;
}

.engagement-card p {
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   Contact — layout matching the screenshot
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: 48px 40px;
  border-radius: 12px;
}

.contact-info h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 32px;
}

.contact-info-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-list li:last-child { margin-bottom: 0; }

.contact-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.contact-info-icon svg { width: 17px; height: 17px; }

.contact-info-content strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.contact-info-content span,
.contact-info-content a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.contact-info-content a:hover { color: var(--red); }

.contact-form-card {
  background: var(--white);
  padding: 48px 44px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
  font-size: 1.75rem;
  margin-bottom: 32px;
  color: var(--navy);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.form-actions .btn {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.875rem;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
  font-style: italic;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .contact-info,
  .contact-form-card { padding: 32px 24px; }
}

/* ============================================
   Detail blocks (services page deep)
   ============================================ */
.detail-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.detail-block:last-child { border-bottom: 0; }

@media (max-width: 768px) {
  .detail-block { grid-template-columns: 1fr; gap: 16px; }
}

.detail-icon {
  width: 64px;
  height: 64px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-icon svg { width: 28px; height: 28px; }

.detail-content h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}

.detail-content .accroche {
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.detail-content p { margin-bottom: 12px; }

.detail-content ul { margin: 12px 0; }

.detail-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.9375rem;
}

.detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* Feature grid (replaces bullet lists in service detail blocks) */
.detail-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .detail-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .detail-features { grid-template-columns: 1fr; }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-soft);
  border-radius: 10px;
  border-left: 3px solid var(--red);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.feature-item:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-check svg {
  width: 14px;
  height: 14px;
}

.feature-item > span:last-child {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
}

/* ============================================
   Two-column (À propos)
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.two-col-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.two-col-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.two-col-visual svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  opacity: 0.85;
  z-index: 1;
}

.two-col h2 { margin-bottom: 20px; }
.two-col .lead { margin-bottom: 24px; }

.bullet-list { margin-top: 24px; }

.bullet-list li {
  position: relative;
  padding-left: 32px;
  padding-bottom: 16px;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.bullet-list li strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.bullet-list li {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 20px; }
.cta-banner .eyebrow { color: var(--red); }
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 680px;
  margin: 0 auto 36px;
}
.cta-banner .hero-actions { justify-content: center; }

/* ============================================
   Footer — simple style from screenshot
   ============================================ */
.footer-simple {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-simple-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-address {
  text-align: right;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .footer-simple-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-address { text-align: left; }
}

/* Footer detailed (alt) */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer .logo-text { color: var(--white); }
.footer .logo { margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.footer h4 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-list li { margin-bottom: 12px; }

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}
.footer-list a:hover { color: var(--red); }

.footer-contact-item {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--white); }

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
