/* ============================================
   Tombola du Patrimoine 2026 — Prométhéa
   Styles principaux
   ============================================ */

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

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

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #2D5016;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: underline;
  color: #3d6b1e;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #2D5016;
  line-height: 1.3;
  margin-bottom: 0.75em;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}

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

/* --- Top Bar (compliance strip) --- */
.top-bar {
  background: #1A1A1A;
  color: #bbb;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #333;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar .badge-18 {
  background: #c0392b;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0;
  line-height: 1.4;
}

.top-bar-left span {
  opacity: 0.75;
}

.top-bar-right a {
  color: #C8A951;
  font-weight: 600;
  font-size: 0.78rem;
}

.top-bar-right a:hover {
  color: #dfc06a;
  text-decoration: underline;
}

/* --- Header --- */
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  gap: 24px;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-logos a {
  display: flex;
  align-items: center;
}

.site-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2D5016;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-brand:hover {
  text-decoration: none;
  color: #3d6b1e;
}

.header-logos img {
  height: 40px;
  width: auto;
}

.logo-separator {
  width: 1px;
  height: 28px;
  background: #d0d0d0;
  flex-shrink: 0;
}

/* Main navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  display: block;
  padding: 8px 11px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links a:hover {
  background: #f0f7e8;
  color: #2D5016;
  text-decoration: none;
}

.nav-links a.active {
  background: #2D5016;
  color: #FFFFFF;
}

.header-badge-18 {
  background: #c0392b;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 8px;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 9px 10px;
  transition: border-color 0.2s ease;
}

.hamburger:hover {
  border-color: #2D5016;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
}

.mobile-nav-overlay.visible {
  display: block;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px 20px;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 3rem;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
  opacity: 0.95;
}

.hero .subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1em;
}

/* --- Homepage sections --- */
.section-pourquoi {
  padding: 64px 0;
}

.section-pourquoi h2,
.section-partenaires h2,
.section-dates h2 {
  text-align: center;
  margin-bottom: 40px;
}

.section-partenaires {
  padding: 48px 0;
  background: #F5F5F0;
}

.partenaires-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partenaires-logos img {
  height: 60px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.partenaires-logos img:hover {
  opacity: 1;
}

.section-dates {
  padding: 48px 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
  border: none;
  text-decoration: none;
}

.btn:hover {
  filter: brightness(1.15);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: #2D5016;
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: #2D5016;
  border: 2px solid #2D5016;
}

.btn-secondary:hover {
  background: #2D5016;
  color: #FFFFFF;
}

.btn-accept {
  background: #27ae60;
  color: #FFFFFF;
}

.btn-refuse {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-refuse:hover {
  border-color: #FFFFFF;
}

/* --- Flash Messages --- */
.flash {
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 0.95rem;
}

.flash-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.flash-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* --- Form Validation --- */
.field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 4px;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #dc3545;
}

/* --- Sections --- */
.section {
  padding: 64px 0;
}

.section-alt {
  background: #F5F5F0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-bottom: 0.3em;
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  margin-bottom: 0.5em;
}

.card p {
  color: #555;
  font-size: 0.95rem;
}

/* --- Project Cards --- */
.project-card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-card-body {
  padding: 24px;
}

.project-card-body h3 {
  margin-bottom: 0.4em;
}

.project-card-body .project-org {
  color: #C8A951;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}

.project-card-body .project-amount {
  font-weight: 700;
  color: #2D5016;
  margin-top: 0.5em;
}

/* --- Partners logo row --- */
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 24px 0;
}

.partners-row img {
  height: 60px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.partners-row img:hover {
  opacity: 1;
}

/* --- Partner blocks --- */
.partner-block {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.partner-block img {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

.partner-block-text h3 {
  margin-bottom: 0.4em;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 40px;
  margin: 32px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #C8A951;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: #2D5016;
  border: 3px solid #C8A951;
  border-radius: 50%;
}

.timeline-item .timeline-date {
  font-weight: 700;
  color: #C8A951;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.timeline-item h3 {
  margin-bottom: 0.3em;
}

.timeline-item p {
  color: #555;
}

/* --- Dates clés (mini timeline on homepage) --- */
.dates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.date-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 8px;
  border-left: 4px solid #C8A951;
}

.date-item .date-label {
  font-weight: 700;
  color: #2D5016;
  white-space: nowrap;
  min-width: 120px;
}

/* --- Page content --- */
.page-header {
  background: #F5F5F0;
  padding: 48px 0 40px;
  border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
  margin-bottom: 0.3em;
}

.page-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 640px;
}

.page-content {
  padding: 48px 0 64px;
}

.page-content h2 {
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content ul,
.page-content ol {
  margin: 1em 0;
  padding-left: 1.5em;
}

.page-content ul {
  list-style: disc;
}

.page-content ol {
  list-style: decimal;
}

.page-content li {
  margin-bottom: 0.4em;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 32px 0;
}

.content-with-image img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* --- Contact form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info p {
  margin-bottom: 0.8em;
}

.contact-info a {
  font-weight: 600;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2D5016;
  box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-form .checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.contact-form .checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
}

.map-placeholder {
  background: #e8e8e0;
  border-radius: 8px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.1rem;
  margin-top: 24px;
}

/* --- Legal pages --- */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5em;
  padding-top: 1em;
  border-top: 1px solid #e0e0e0;
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 1.5em;
}

/* --- Footer --- */
.site-footer {
  background: #1A1A1A;
  color: #ccc;
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 0.6em;
}

.footer-col a {
  color: #C8A951;
  font-size: 0.9rem;
}

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

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  color: #C8A951;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-responsible {
  border-top: 1px solid #2a2a2a;
  background: linear-gradient(180deg, #151515 0%, #1A1A1A 100%);
  padding: 48px 0 40px;
}

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

.footer-responsible-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 32px;
}

.footer-responsible-eyebrow {
  display: inline-block;
  color: #C8A951;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(200, 169, 81, 0.4);
  border-radius: 999px;
}

.footer-responsible-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.footer-responsible-text {
  color: #b5b5b5;
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 36px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.footer-logo--age {
  gap: 12px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: 999px;
  height: auto;
}

.footer-logo-caption {
  color: #C8A951;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  outline-offset: 4px;
}

.footer-logo img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 200px;
  max-height: 44px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-logo a:hover img,
.footer-logo a:focus-visible img {
  opacity: 1;
  transform: scale(1.04);
}

.footer-logo--age img {
  height: 36px;
  width: 36px;
  max-width: none;
  max-height: none;
  flex-shrink: 0;
  opacity: 1;
}

.footer-responsible-helpline {
  text-align: center;
  color: #cfcfcf;
  font-size: 0.92rem;
  margin: 0;
  padding: 14px 20px;
  background: rgba(200, 169, 81, 0.08);
  border: 1px solid rgba(200, 169, 81, 0.25);
  border-radius: 8px;
}

.footer-responsible-helpline strong {
  color: #FFFFFF;
  margin-right: 6px;
}

.footer-responsible-helpline a {
  color: #C8A951;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.footer-responsible-helpline a:hover {
  color: #dfc06a;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .footer-responsible {
    padding: 36px 0 28px;
  }
  .footer-responsible-title {
    font-size: 1.15rem;
  }
  .footer-logos {
    gap: 20px 24px;
  }
  .footer-logo {
    height: 40px;
  }
  .footer-logo img {
    max-height: 36px;
    max-width: 130px;
  }
  .footer-logo--age img {
    height: 30px;
    width: 30px;
  }
  .footer-logo-caption {
    font-size: 0.66rem;
  }
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 24px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: 0.5em;
  color: #999;
}

.footer-bottom a {
  color: #C8A951;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.footer-legal-links a {
  font-size: 0.85rem;
}

.footer-warning {
  color: #c0392b;
  font-weight: 600;
  font-size: 0.85rem;
}

.footer-age-notice {
  color: #777;
  font-size: 0.8rem;
  margin-top: 8px;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  color: #FFFFFF;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  min-width: 300px;
}

.cookie-text a {
  color: #C8A951;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-with-image {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero {
    min-height: 400px;
  }

  .top-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 5px 12px;
  }

  .top-bar-right {
    display: none;
  }

  .header-inner {
    padding: 8px 12px;
    gap: 12px;
  }

  .header-logos img {
    height: 32px;
  }

  .logo-separator {
    height: 22px;
  }

  .header-badge-18 {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 8px;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 6px;
  }

  .nav-links a.active {
    background: #f0f7e8;
    color: #2D5016;
  }

  .hamburger {
    display: flex;
  }

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

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

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

  .partner-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 40px 0;
  }

  .page-header {
    padding: 32px 0;
  }

  .page-content {
    padding: 32px 0 48px;
  }
}

@media (max-width: 480px) {
  .header-logos img {
    height: 28px;
  }

  .logo-separator {
    height: 18px;
  }

  .top-bar-left {
    gap: 8px;
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .partners-row {
    gap: 20px;
  }

  .partners-row img {
    height: 40px;
  }
}
