/* ============================================================
   common.css — JGG Assurances Multiservices
   ============================================================ */

/* ─── Variables couleurs (modifier ici pour changer l'aspect) ─ */
:root {
  --color-primary:       #1B4332;   /* vert forêt profond */
  --color-primary-light: #2D6A4F;   /* vert forêt clair */
  --color-primary-xlight:#52B788;   /* vert menthe accent */
  --color-accent:        #D48A2A;   /* or ambré */
  --color-accent-light:  #E9A84C;   /* or ambré clair */
  --color-bg:            #FFFFFF;   /* blanc pur */
  --color-bg-soft:       #F4F4F0;   /* gris très clair / crème */
  --color-bg-dark:       #1B4332;   /* fond foncé (footer) */
  --color-text:          #1A1A2E;   /* texte principal */
  --color-text-muted:    #5C6672;   /* texte secondaire */
  --color-text-light:    #FFFFFF;   /* texte sur fond sombre */
  --color-border:        #DDE3D8;   /* bordures légères */
  --color-overlay:       rgba(27,67,50,0.72); /* overlay hero */

  /* Typographie */
  --font-title:   'Raleway', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;

  /* Espacements */
  --section-py:  5rem;
  --section-px:  1.5rem;
  --radius:      0.5rem;
  --radius-lg:   1rem;

  /* Ombres */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.13);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-accent); }
ul { list-style: none; }

/* ─── Typographie ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ─── Container ────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

/* ─── Section ──────────────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}
.section-alt {
  padding: var(--section-py) 0;
  background: var(--color-bg-soft);
}
.section-dark {
  padding: var(--section-py) 0;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}
.section-dark h2,
.section-dark h3 { color: var(--color-text-light); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-top: .5rem;
}
.section-header .accent-line {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  margin: .75rem auto 0;
  border-radius: 2px;
}

/* ─── Boutons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .22s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--color-accent-light); }

/* ─── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--color-border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.navbar-logo img { height: 44px; width: auto; }
.navbar-logo a { display: flex; align-items: center; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.navbar-nav a {
  padding: .45rem .85rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .93rem;
  color: var(--color-text);
  transition: all .18s;
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--color-primary);
  background: rgba(27,67,50,.07);
}
.navbar-nav a.active { font-weight: 700; }

.navbar-cta { margin-left: .5rem; }

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Sélecteur langue */
.lang-switcher {
  position: relative;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .6rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  background: transparent;
  transition: all .18s;
  user-select: none;
}
.lang-current:hover { border-color: var(--color-primary); color: var(--color-primary); }
.lang-current img { width: 20px; height: 15px; object-fit: cover; border-radius: 2px; }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .4rem);
  right: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 110px;
  overflow: hidden;
  z-index: 999;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--color-text);
  transition: background .15s;
}
.lang-dropdown a:hover { background: var(--color-bg-soft); color: var(--color-primary); }
.lang-dropdown img { width: 20px; height: 15px; object-fit: cover; border-radius: 2px; }

/* Menu burger (mobile) */
.navbar-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar-burger span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all .25s;
}

/* ─── Hero commun ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  margin-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color-primary);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 4rem 0;
}
.hero h1, .hero h2 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.85); }
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  margin-top: .4rem;
  font-style: italic;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Hero home (plus grand) */
.hero-home { min-height: 680px; }
.hero-home h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }

/* ─── Cards services ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--color-accent);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-primary-xlight);
}
.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 52px; height: 52px;
  background: rgba(27,67,50,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--color-primary);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--color-primary);
}
.service-card p {
  font-size: .92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.service-card .price-badge {
  display: inline-block;
  margin-top: .75rem;
  padding: .2rem .65rem;
  background: rgba(212,138,42,.12);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
}

/* ─── Stats ────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-value {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: .9rem;
  color: var(--color-text-muted);
  margin-top: .4rem;
}
.stat-item .stat-icon {
  font-size: 1.6rem;
  color: var(--color-primary-xlight);
  margin-bottom: .5rem;
}

/* ─── Partners ─────────────────────────────────────────────── */
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3rem;
}
.partner-logo {
  transition: opacity .22s, transform .25s, filter .22s;
  opacity: .65;
  transition: opacity .22s;
  max-height: 44px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
}
.partner-logo:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.5);
}

.partner-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: .5rem 1rem;
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: .65;
  transition: opacity .22s;
  white-space: nowrap;
}
.partner-logo-placeholder:hover { opacity: 1; }

/* ─── FAQ Accordion ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--color-primary-xlight); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .15s;
}
.faq-question:hover { background: rgba(27,67,50,.04); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(27,67,50,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s, background .2s;
  color: var(--color-primary);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--color-primary); color: #fff; }

.faq-answer {
  display: none;
  padding: 0 1.4rem 1.2rem;
  font-size: .95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }
.faq-date {
  font-size: .8rem;
  color: var(--color-text-muted);
  margin-top: .5rem;
  font-style: italic;
}

/* ─── Section CTA ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 1.75rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── About snippet ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
}
.about-img-placeholder .ti { font-size: 5rem; color: rgba(255,255,255,.3); }

.about-content .eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .75rem;
}

/* ─── Valeurs ──────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}
.value-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(27,67,50,.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: var(--color-primary);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.value-card p { font-size: .92rem; color: var(--color-text-muted); margin: 0; }

/* ─── Contact layout ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-block,
.contact-info-block {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--color-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27,67,50,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C6672' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-privacy {
  font-size: .82rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.form-privacy a { color: var(--color-primary); text-decoration: underline; }
.hp-field { display: none !important; }

.contact-info-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.contact-info-item .ci-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(27,67,50,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
}
.contact-info-item .ci-text { font-size: .93rem; }
.contact-info-item .ci-text strong { display: block; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .8px; color: var(--color-text-muted); margin-bottom: .15rem; }

.hours-table { width: 100%; font-size: .9rem; border-collapse: collapse; }
.hours-table tr:not(:last-child) td { border-bottom: 1px solid var(--color-border); }
.hours-table td { padding: .45rem .1rem; }
.hours-table td:first-child { font-weight: 600; color: var(--color-primary); }
.hours-table td:last-child { text-align: right; color: var(--color-text-muted); }
.hours-closed td { color: var(--color-text-muted); opacity: .6; }

#map { height: 280px; border-radius: var(--radius); overflow: hidden; margin-top: 1.25rem;
  border: 1px solid var(--color-border); }

/* ─── Alert bannière fermeture ─────────────────────────────── */
.closure-banner {
  background: rgba(212,138,42,.12);
  border-left: 4px solid var(--color-accent);
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: .93rem;
  color: var(--color-text);
}
.closure-banner strong { color: var(--color-accent); }

/* ─── Cookie banner ────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--color-primary);
  color: rgba(255,255,255,.9);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: .88rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-bar.hidden { display: none; }
.cookie-bar-btn {
  flex-shrink: 0;
  padding: .4rem 1.25rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-size: .88rem;
  transition: background .18s;
}
.cookie-bar-btn:hover { background: var(--color-accent-light); }

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 0;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer h4 {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-logo img { height: 36px; filter: brightness(0) invert(1); margin-bottom: .75rem; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.55); font-style: italic; }
.footer-nav a {
  display: block;
  color: rgba(255,255,255,.65);
  padding: .25rem 0;
  transition: color .18s;
}
.footer-nav a:hover { color: var(--color-accent-light); }
.footer-contact-item {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .5rem;
  font-size: .88rem;
}
.footer-contact-item .ti { color: var(--color-accent); font-size: 1rem; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--color-accent-light); }
.footer-partners-mini {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.footer-partner-pill {
  padding: .2rem .65rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  font-size: .77rem;
  color: rgba(255,255,255,.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--color-accent-light); }
.footer-legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ─── Flash messages ───────────────────────────────────────── */
.flash {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.flash-success {
  background: rgba(27,67,50,.1);
  color: var(--color-primary);
  border: 1px solid rgba(27,67,50,.2);
}
.flash-error {
  background: rgba(200,50,50,.08);
  color: #b91c1c;
  border: 1px solid rgba(200,50,50,.2);
}

/* ─── Page content (mentions légales etc.) ─────────────────── */
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem var(--section-px) 4rem;
}
.page-content h2 { font-size: 1.3rem; margin: 2rem 0 .5rem; color: var(--color-primary); }
.page-content p, .page-content li { font-size: .96rem; color: var(--color-text-muted); }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }
  .navbar-nav,
  .navbar-cta { display: none; }
  .navbar-burger { display: flex; }
  .navbar-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    gap: .15rem;
  }
  .navbar-nav.open .btn { display: inline-flex; margin-top: .5rem; }
  .hero { min-height: 440px; }
  .hero-home { min-height: 520px; }
  .hero-cta { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .cookie-bar { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
