/* ==========================================================================
   Finassure : style.css
   ========================================================================== */

:root {
  --navy: #0b1f45;
  --navy-dark: #071638;
  --blue: #1257e0;
  --blue-light: #eaf1fc;
  --blue-pale: #f4f8fd;
  --text-dark: #142238;
  --text-muted: #5c6c85;
  --white: #ffffff;
  --border: #e4eaf3;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 45px rgba(11, 31, 69, 0.12);
  --shadow-sm: 0 8px 20px rgba(11, 31, 69, 0.08);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; color: var(--navy); }

p { margin: 0; color: var(--text-muted); }

a { text-decoration: none; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(18, 87, 224, 0.3);
}

.btn-primary:hover { background: #0d47c4; }

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

.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

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

/* Header ------------------------------------------------------------- */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 8px; }

.logo-image { height: 30px; width: auto; display: block; }

/* Chip blanc : utilisé pour afficher le logo (bleu marine) sur un fond sombre */
.logo-chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 9px 16px;
  border-radius: 10px;
  line-height: 0;
}

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

.footer-tagline { margin-top: 14px; font-size: 0.82rem; color: #8fa1c7; }

.main-nav > ul { display: flex; gap: 22px; }

.main-nav li { position: relative; }

.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 0;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover { color: var(--blue); }

.header-actions .btn {
  padding: 9px 20px;
  font-size: 0.85rem;
}

.caret { font-size: 0.6rem; transition: transform 0.2s ease; }

.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow);
  padding: 8px;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 200;
}

.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sous-menu de niveau 3 : s'ouvre latéralement au survol */
.dropdown-menu .dropdown-menu {
  top: -9px;
  left: 100%;
  margin-left: 6px;
  transform: translateY(0) translateX(8px);
}

.dropdown-menu .has-dropdown:hover > .dropdown-menu {
  transform: translateY(0) translateX(0);
}

.dropdown-menu li:not(:last-child) { border-bottom: 1px solid var(--border); }

.dropdown-menu a {
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  justify-content: space-between;
}

.dropdown-menu a:hover { background: var(--blue-pale); color: var(--blue); }

.dropdown-menu .has-dropdown > a::after {
  content: "\276F";
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 10px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.burger { display: none; }

/* Hero ------------------------------------------------------------- */

.hero {
  background: linear-gradient(180deg, var(--blue-light) 0%, #f7fafe 100%);
  overflow: hidden;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: url(#heroCurve);
}

.hero-dots-pattern {
  position: absolute;
  left: 24px;
  bottom: 28px;
  width: 78px;
  height: 40px;
  background-image: radial-gradient(rgba(11, 31, 69, 0.18) 1.6px, transparent 1.6px);
  background-size: 12px 12px;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-slider { position: relative; min-height: 260px; }

.hero-slide {
  display: none;
  animation: heroFade 0.5s ease;
}

.hero-slide.active { display: block; }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  color: var(--navy);
}

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

.hero-content p {
  margin-top: 20px;
  font-size: 1.05rem;
  max-width: 340px;
}

.hero-content .btn { margin-top: 30px; }

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c7d5f0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dot.active { width: 28px; border-radius: 6px; background: var(--blue); }

.hero-visual { position: relative; min-height: 360px; }

.hero-quicklinks {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 10px;
  width: 250px;
}

.quicklink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.quicklink:not(:last-child) { border-bottom: 1px solid var(--border); }

.quicklink:hover { background: var(--blue-pale); }

.quicklink-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quicklink-icon svg { width: 18px; height: 18px; }

.quicklink-label { flex: 1; font-size: 0.88rem; font-weight: 600; color: var(--navy); }

.quicklink-arrow { color: var(--blue); }
.quicklink-arrow svg { width: 15px; height: 15px; }

/* Values ------------------------------------------------------------- */

.values { padding: 70px 0 40px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: center;
}

.value-card { display: flex; flex-direction: column; align-items: center; }

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

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

.value-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.value-card p { font-size: 0.92rem; }

/* President ------------------------------------------------------------- */

.president { padding: 40px 0 80px; }

.president-inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
}

.president-text {
  padding: 50px 46px;
  color: #cdd8ee;
  position: relative;
}

.eyebrow {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-bottom: 3px solid var(--blue);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.quote-mark {
  font-size: 3.5rem;
  color: var(--blue);
  line-height: 0.5;
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, serif;
}

.president-text p {
  color: #b9c6e0;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.signature { margin-top: 24px; display: flex; flex-direction: column; }
.signature strong { color: #fff; font-size: 1rem; }
.signature span { color: #8fa1c7; font-size: 0.82rem; }

.president-photo {
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.president-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.president-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(34,52,92,0.35), rgba(11,31,69,0.55));
}

/* Why us ------------------------------------------------------------- */

.why-us { padding: 10px 0 80px; text-align: center; }

.why-us h2 {
  font-size: 1.7rem;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 50px;
}

.why-us h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--blue);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

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

.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; max-width: 300px; margin: 0 auto; }

/* Expertise ------------------------------------------------------------- */

.expertise { padding: 20px 0 90px; text-align: center; background: var(--blue-pale); }

.expertise h2 {
  font-size: 1.7rem;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.expertise h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--blue);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 46px;
  font-size: 0.95rem;
  text-align: center;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  text-align: left;
}

.expertise-card {
  flex: 1 1 240px;
  max-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expertise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.expertise-photo { height: 150px; position: relative; }

.expertise-photo-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.expertise-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.expertise-card:hover .expertise-photo img { transform: scale(1.06); }

.expertise-badge {
  position: absolute;
  bottom: -18px;
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(18, 87, 224, 0.35);
  z-index: 1;
}

.expertise-badge svg { width: 18px; height: 18px; }

.expertise-body { padding: 30px 20px 22px; }

.expertise-body h3 { font-size: 1.02rem; margin-bottom: 10px; }
.expertise-body p { font-size: 0.85rem; min-height: 58px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 12px;
}

.link-arrow svg { width: 15px; height: 15px; }

/* FAQ ------------------------------------------------------------- */

.faq { padding: 20px 0 90px; text-align: center; background: var(--blue-pale); }

.faq h2 {
  font-size: 1.7rem;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.faq h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--blue);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Footer ------------------------------------------------------------- */

.site-footer { background: var(--navy-dark); color: #a9b7d6; }

.footer-main { padding: 60px 0 30px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
}

.footer-about p { color: #8fa1c7; font-size: 0.88rem; margin: 16px 0 20px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social svg { width: 15px; height: 15px; }

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }

.footer-col ul li:not(:last-child) { margin-bottom: 12px; }

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #a9b7d6;
}

.footer-col a svg { width: 14px; height: 14px; color: var(--blue); }

.footer-col a:hover { color: #fff; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  margin-bottom: 14px;
}

.contact-list svg { width: 16px; height: 16px; color: var(--blue); margin-top: 2px; }

.footer-strip { background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }

.footer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #a9b7d6;
}

.strip-item svg { width: 18px; height: 18px; color: var(--blue); }

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 0.82rem;
  color: #74839f;
}

/* Page banner (pages secondaires) ----------------------------------------- */

.page-banner {
  background: linear-gradient(160deg, var(--navy) 0%, #06132b 100%);
  padding: 56px 0;
  text-align: center;
}

.page-banner h1 { color: #fff; font-size: 2rem; }

.breadcrumb {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #9db0d6;
}

.breadcrumb a { color: #9db0d6; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span:last-child { color: #fff; }

/* Content pages (secteurs, produits, actualités) --------------------------- */

.content-section { padding: 70px 0; }

.content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.content-grid-narrow {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto;
}

.content-grid-narrow .content-photo {
  height: 320px;
  margin-bottom: 8px;
}

.content-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-photo img { width: 100%; height: 100%; object-fit: cover; }

.content-lead { font-size: 1.1rem; color: var(--navy); font-weight: 500; margin-bottom: 18px; }

.content-text p { margin-bottom: 16px; }

.content-subheading {
  font-size: 1.02rem;
  color: var(--navy);
  margin: 26px 0 12px;
}

.content-list {
  margin: 0 0 18px;
  padding-left: 20px;
  list-style: disc;
}

.content-list li {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

.content-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

.other-sectors { padding: 20px 0 90px; background: var(--blue-pale); }

.other-sectors h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
}

/* Product grid -------------------------------------------------------- */

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 30px;
}

.product-card {
  display: block;
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.25s ease;
}

.product-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-4px); }

.product-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.product-card-photo {
  display: block;
  margin: -28px -24px 16px;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.product-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.product-card p { font-size: 0.88rem; margin-bottom: 14px; }

/* News grid -------------------------------------------------------- */

.news-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.news-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}

.news-card-photo {
  display: block;
  margin: -26px -24px 16px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.news-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.news-date svg { width: 14px; height: 14px; }

.news-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.35; }
.news-card h3 a:hover { color: var(--blue); }
.news-card p { font-size: 0.9rem; margin-bottom: 14px; }

/* Forms -------------------------------------------------------- */

.form-page {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.form-page-single { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }

.form-info h2 { font-size: 1.3rem; margin-bottom: 20px; }

.contact-list-dark li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-list-dark svg { width: 18px; height: 18px; color: var(--blue); }

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.contact-map iframe { width: 100%; display: block; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

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

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e8f6ee;
  color: #1a7a44;
  border: 1px solid #bfe8cf;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.92rem;
}

.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.form-error {
  background: #fdecec;
  color: #b3261e;
  border: 1px solid #f6c6c3;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.form-error ul { padding-left: 18px; list-style: disc; }

/* Responsive ------------------------------------------------------------- */

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .expertise-card, .product-card, .news-card {
    flex-basis: calc(50% - 14px);
    max-width: calc(50% - 14px);
  }
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .burger span { width: 24px; height: 2px; background: var(--navy); }
  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-quicklinks { position: static; transform: none; width: 100%; margin-top: 24px; }
  .values-grid, .why-grid { grid-template-columns: 1fr; }
  .president-inner { grid-template-columns: 1fr; }
  .president-photo { min-height: 220px; order: -1; }
  .content-grid { grid-template-columns: 1fr; }
  .form-page { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-strip-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .expertise-card, .product-card, .news-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}
