/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(228, 228, 231, 0.5);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(228, 228, 231, 0.5);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-container {
  padding-top: 0;
  padding-bottom: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

@media (max-width: 600px) {
  .header-inner { height: 3.5rem; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-icon {
  width: 10rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .logo-icon { width: 7rem; height: 7rem; }
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--zinc-900);
  letter-spacing: -0.025em;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-600);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--emerald-600); }

.menu-toggle {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--zinc-600);
  font-size: 1.5rem;
}

.menu-toggle:hover { color: var(--zinc-900); }

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* ===== DROPDOWN NAVIGATION ===== */
.nav-dropdown-group {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: inherit;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-600);
  transition: color 0.15s;
}

.nav-dropdown-trigger:hover { color: var(--emerald-600); }
.nav-chevron { font-size: 0.6rem; transition: transform 0.2s; }
.nav-dropdown-group:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border: 1px solid var(--zinc-200);
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px -8px rgba(0,0,0,0.15);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 200;
  white-space: nowrap;
}

.nav-dropdown-group:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-700);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.15s;
}

.nav-dropdown-item:hover {
  background-color: var(--emerald-50);
  color: var(--emerald-600);
}


/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: white;
  padding-top: 5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.25rem);
  transition: all 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-content {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--zinc-800);
  text-decoration: none;
  transition: color 0.15s;
}

.mobile-nav-link:hover { color: var(--emerald-600); }

.mobile-menu-group { width: 100%; text-align: center; }

.mobile-group-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: var(--zinc-50);
  border-radius: 0.5rem;
  margin-top: 0.25rem;
}

.mobile-submenu.open { display: flex; }
.mobile-sublink { font-size: 0.95rem !important; color: var(--zinc-500) !important; }

/* ===== OVERLAY PANEL MENU (index.html) ===== */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.overlay-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: white;
  z-index: 46;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  box-shadow: -8px 0 48px rgba(0, 0, 0, 0.14);
}

.overlay-panel.open { transform: translateX(0); }

@media (max-width: 480px) {
  .overlay-panel { max-width: 100%; }
}

.overlay-panel-inner {
  padding: 5rem 1.75rem 2.5rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.overlay-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--zinc-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--zinc-500);
  transition: background 0.2s, color 0.2s;
}

.overlay-close:hover { background: var(--zinc-200); color: var(--zinc-900); }

.overlay-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.overlay-nav-list > li {
  border-bottom: 1px solid var(--zinc-100);
}

.overlay-nav-list > li:last-child { border-bottom: none; }

.overlay-nav-btn,
.overlay-nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--zinc-800);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  text-align: left;
  transition: color 0.2s;
}

.overlay-nav-btn:hover,
.overlay-nav-link:hover { color: var(--emerald-600); }

.overlay-chevron {
  font-size: 0.65rem;
  color: var(--zinc-400);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-has-sub.open .overlay-chevron { transform: rotate(180deg); }

.overlay-sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-has-sub.open .overlay-sub { grid-template-rows: 1fr; }

.overlay-sub-inner { overflow: hidden; }

.overlay-sub-inner a {
  display: block;
  padding: 0.6rem 0 0.6rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--zinc-500);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.overlay-sub-inner a:hover { color: var(--emerald-600); padding-left: 1.25rem; }

.overlay-has-sub.open .overlay-sub-inner { padding-bottom: 0.75rem; }

/* ===== FOOTER ===== */
.footer {
  background-color: var(--zinc-900);
  padding: 4rem 0;
  color: var(--zinc-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 1100px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 10rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  letter-spacing: -0.025em;
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--zinc-400); transition: color 0.15s; }
.footer-social a:hover { color: white; }

.footer-links h4 { color: white; font-weight: 700; margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--zinc-400); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--emerald-400); }

.footer-bottom {
  border-top: 1px solid var(--zinc-800);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-certifications { display: flex; gap: 1.5rem; }
.footer-certifications span { display: flex; align-items: center; gap: 0.5rem; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--zinc-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--zinc-600);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--zinc-900) 0%, var(--zinc-800) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}



.page-hero-overtitle {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--emerald-400);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .page-hero-title { font-size: 4rem; }
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--emerald-400);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.page-back:hover { color: white; }

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 5rem 0; }
.section-lead {
  font-size: 1.125rem;
  color: var(--zinc-600);
  line-height: 1.75;
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

/* ===== SECTION BACKGROUND UTILITIES ===== */
.section-white { padding: 5rem 0; background: var(--zinc-50); }
.section-light { padding: 5rem 0; background: var(--zinc-50); }
.section-dark-bg { padding: 5rem 0; background: var(--zinc-900); }
.section-dark-bg .section-title { color: white; }
.section-dark-bg .section-subtitle { color: rgba(255,255,255,0.65); }

/* ===== DARK CTA BLOCK ===== */
.dark-cta-block { text-align: center; max-width: 60rem; margin: 0 auto; }
.dark-cta-title { font-size: 3rem; font-weight: 800; color: white; margin-bottom: 1rem; }
.dark-cta-title-lg { font-size: 2.25rem; font-weight: 800; color: white; margin-bottom: 1rem; line-height: 1.2; }
.dark-cta-text { font-size: 1.25rem; color: rgba(255,255,255,0.65); margin-bottom: 2rem; line-height: 1.7; }

.section-cta-bottom { text-align: center; margin-top: 3rem; }

/* ===== ACCORDION ===== */
.accordion-item {
  border: 1px solid var(--zinc-200);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--zinc-50);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--zinc-800);
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}

.accordion-trigger:hover { color: var(--emerald-600); }

.accordion-trigger-icon,
.accordion-icon {
  font-size: 0.75rem;
  color: var(--emerald-500);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-item.open .accordion-trigger-icon,
.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.open .accordion-body { grid-template-rows: 1fr; }

.accordion-content {
  overflow: hidden;
  padding: 0 1.5rem 0;
  font-size: 0.9375rem;
  color: var(--zinc-600);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.accordion-content > *:last-child { margin-bottom: 1.5rem; }

.accordion-item.open .accordion-content {
  opacity: 1;
  transform: translateY(0);
}

.accordion-body > p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--zinc-600);
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.accordion-item.open .accordion-body > p {
  opacity: 1;
  transform: translateY(0);
}

.accordion-content ul {
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ===== COMPARISON TABLE ===== */
.table-wrapper {
  overflow-x: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.comparison-table { width: 100%; border-collapse: collapse; }

.comparison-table th {
  background: var(--zinc-800);
  color: white;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--zinc-100);
  font-size: 0.9375rem;
  background: var(--zinc-50);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--zinc-50); }
.comparison-table .highlight-row td { background: var(--emerald-50) !important; color: var(--emerald-800); font-weight: 700; }
.comparison-table .highlight-row td:last-child { color: var(--emerald-600); }

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: var(--zinc-50);
  border: 1.5px solid var(--zinc-200);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stat-icon { margin-bottom: 0.75rem; line-height: 0; display: flex; justify-content: center; }
.stat-number { font-size: 2rem; font-weight: 900; color: var(--zinc-900); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.875rem; color: var(--zinc-500); line-height: 1.4; }

/* ===== FEATURE GRID / CARDS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--zinc-50);
  border: 1px solid var(--zinc-200);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-200);
  transform: translateY(-3px);
}

.feature-card-icon { margin-bottom: 1rem; line-height: 0; display: flex; }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--zinc-900); margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.9375rem; color: var(--zinc-600); line-height: 1.65; }

.feature-card--centered { text-align: center; }

/* ===== DARK SECTION ===== */
.dark-section { background: var(--zinc-900); color: white; padding: 5rem 0; }
.dark-section .section-title { color: white; }
.dark-section .section-subtitle { color: rgba(255,255,255,0.65); }

.dark-fact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dark-fact-icon { line-height: 0; display: flex; }
.dark-fact-title { font-size: 1.125rem; font-weight: 700; color: white; }
.dark-fact-text { font-size: 0.9375rem; color: rgba(255,255,255,0.75); line-height: 1.65; }

.dark-fact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .dark-fact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .dark-fact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
  border-left: 4px solid var(--emerald-500);
  padding: 1.5rem 2rem;
  background: var(--emerald-50);
  border-radius: 0 1rem 1rem 0;
  margin: 2rem 0;
}

.quote-block p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--zinc-700);
  line-height: 1.7;
}

/* ===== PERSON CARD ===== */
.person-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .person-grid { grid-template-columns: repeat(3, 1fr); }
}

.person-card {
  background: var(--zinc-50);
  border: 1px solid var(--zinc-200);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.person-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.person-card-flag { font-size: 2.5rem; margin-bottom: 1rem; }
.person-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--zinc-900); margin-bottom: 0.25rem; }
.person-card-title { font-size: 0.875rem; font-weight: 600; color: var(--emerald-600); margin-bottom: 1rem; }
.person-card p { font-size: 0.9375rem; color: var(--zinc-600); line-height: 1.7; }
.person-card-quote {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--zinc-50);
  border-radius: 0.75rem;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--zinc-500);
}

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 36rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--zinc-700); margin-bottom: 0.4rem; }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--zinc-200);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--zinc-900);
  transition: border-color 0.2s;
  background: white;
  box-sizing: border-box;
}
.form-input:focus { outline: none; border-color: var(--emerald-500); }
.form-input::placeholder { color: var(--zinc-400); }
textarea.form-input { resize: vertical; }

.form-container {
  max-width: 40rem;
  margin: 0 auto;
  background: var(--zinc-50);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.form-base { display: flex; flex-direction: column; gap: 1.25rem; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* ===== TWO / THREE COL GRIDS ===== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr 1fr; }
}

.two-col-grid--center { align-items: center; }

.three-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .three-col-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== VOTE / AWARD ===== */
.vote-stats { display: flex; gap: 2rem; margin-top: 1rem; align-items: center; }
.vote-stat-yes { font-size: 2.5rem; font-weight: 900; color: var(--emerald-600); }
.vote-stat-no { font-size: 2.5rem; font-weight: 900; color: var(--zinc-400); }
.award-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 640px) { .award-cards { grid-template-columns: 1fr; } }
.award-card { background: var(--emerald-50); border: 1px solid var(--emerald-200); border-radius: 1rem; padding: 1.25rem; }
.award-badge {
  display: inline-block;
  background: var(--emerald-600);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}




.famous-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .famous-grid { grid-template-columns: repeat(4, 1fr); }
}

.famous-card {
  background-color: var(--zinc-50);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--zinc-200);
  transition: all 0.3s;
}

.famous-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-xl);
  border-color: var(--emerald-200);
}

.famous-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.famous-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald-100) 0%, #a7f3d0 50%, var(--teal-500) 100%);
  color: var(--emerald-700);
  font-size: 3.5rem;
  transition: transform 0.5s;
}

.famous-card:hover .famous-image-placeholder { transform: scale(1.05); }
.famous-image-placeholder i { filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)); }

.famous-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s;
}

.famous-card:hover .famous-photo { transform: scale(1.05); }

.famous-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.5rem 1rem 0.75rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  letter-spacing: 0.05em;
}

.famous-badge i { color: var(--emerald-400); font-size: 0.875rem; }

.famous-content { padding: 1.25rem; }
.famous-name { font-size: 1.125rem; font-weight: 700; color: var(--zinc-900); margin-bottom: 0.25rem; }
.famous-desc { font-size: 0.75rem; color: var(--emerald-600); font-weight: 500; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.025em; }
.famous-quote {
  font-size: 0.875rem;
  color: var(--zinc-600);
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid var(--emerald-200);
}

.famous-more { text-align: center; }
