/* =========================
   NEW NAVIGATION STYLES
   ========================= */
:root {
  --nav-bg: rgba(4, 9, 20, 0.9);
  --accent: #f4b41a;
  --accent-soft: rgba(244, 180, 26, 0.08);
  --accent-2: #4de2c1;
  --text-main: #f5f7ff;
  --text-muted: #a6b0d4;
  --danger: #ff4b6b;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --blur: 18px;
  --transition-fast: 160ms ease-out;
  --transition-med: 220ms ease-out;
  --nav-height-mobile: 64px;
  --nav-height-desktop: 80px;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont;
  --font-display: "Fraunces", "DM Serif Display", Georgia, "Times New Roman", serif;
}

/* Basic reset for nav elements */
.nav-wrapper, nav, .nav-links, .nav-actions,
.nav-panel, .nav-panel-backdrop {
  box-sizing: border-box;
}

/* =========================
   NAVIGATION BAR
   ========================= */
.nav-wrapper {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0.75rem 0.85rem;
  pointer-events: none;
}

nav.sccf-nav {
  pointer-events: auto;
  width: 100%;
  max-width: 1120px;
  height: var(--nav-height-mobile);
  background: linear-gradient(135deg, rgba(10, 16, 38, 0.85), rgba(14, 29, 64, 0.96));
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  display: flex;
  align-items: center;
  padding-inline: 0.9rem 0.5rem;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  color: var(--text-main);
  font-family: var(--font-body);
}

.sccf-nav-logo-area {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}

.sccf-nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    conic-gradient(from 210deg, #f4b41a, #ff7d6b, #ff4b6b, #4de2c1, #f4b41a);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 2px rgba(8, 10, 22, 0.9),
    0 0 20px rgba(244, 180, 26, 0.55);
}

.sccf-nav-logo-mark::after {
  content: "";
  width: 72%;
  height: 72%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, #fff, #fef6e3 45%, #f4b41a 100%);
  mix-blend-mode: screen;
  opacity: 0.95;
}

.sccf-nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
  flex-shrink: 1;
}

.sccf-nav-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.sccf-nav-subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  opacity: 0.9;
}

/* Inline links (desktop/tablet) */
.sccf-nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.sccf-nav-link {
  position: relative;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background var(--transition-fast), color var(--transition-fast),
              transform var(--transition-fast), border-color var(--transition-fast),
              box-shadow var(--transition-fast);
  cursor: pointer;
}

.sccf-nav-link span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.sccf-nav-link--primary {
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(244, 180, 26, 0.2), rgba(244, 180, 26, 0.05));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45);
}

.sccf-nav-link--ghost {
  background: transparent;
  border-color: transparent;
}

.sccf-nav-link:hover {
  transform: translateY(-1px);
}

.sccf-nav-link--primary:hover {
  background: radial-gradient(circle at top left, rgba(244, 180, 26, 0.3), rgba(244, 180, 26, 0.06));
  border-color: rgba(255, 255, 255, 0.22);
}

.sccf-nav-link.active {
  color: var(--accent);
  border-color: rgba(244, 180, 26, 0.4);
  background: radial-gradient(circle at top left, rgba(244, 180, 26, 0.25), rgba(244, 180, 26, 0.08));
  box-shadow: 0 0 0 1px rgba(244, 180, 26, 0.3), 0 0 12px rgba(244, 180, 26, 0.2);
}

.sccf-nav-link--ghost.active {
  color: var(--text-main);
  border-color: rgba(244, 180, 26, 0.3);
  background: rgba(244, 180, 26, 0.1);
}

.sccf-nav-link--ghost:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Right side controls */
.sccf-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.sccf-nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.45rem;
  border-radius: 999px;
  background: rgba(3, 7, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sccf-nav-lang-code {
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.sccf-nav-lang-code--active {
  background: var(--accent-soft);
  color: var(--accent);
}

.sccf-nav-cta-chip {
  display: none;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(246, 250, 255, 0.04);
  color: var(--accent-2);
  border: 1px solid rgba(77, 226, 193, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  font-weight: 500;
}

.sccf-nav-cta-chip:hover {
  background: rgba(77, 226, 193, 0.1);
  border-color: rgba(77, 226, 193, 0.6);
  transform: translateY(-1px);
}

/* Burger */
.sccf-nav-toggle {
  margin-left: 0.2rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(7, 11, 31, 0.95));
  color: var(--text-main);
  transition: background var(--transition-fast), transform var(--transition-fast),
              box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.sccf-nav-toggle:hover {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.16), rgba(7, 11, 31, 0.98));
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.55);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}

.sccf-nav-toggle-icon {
  position: relative;
  width: 16px;
  height: 12px;
}

.sccf-nav-toggle-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition-med), opacity var(--transition-fast),
              top var(--transition-med), bottom var(--transition-med);
}

.sccf-nav-toggle-icon span:nth-child(1) { top: 0; }
.sccf-nav-toggle-icon span:nth-child(2) { top: 5px; }
.sccf-nav-toggle-icon span:nth-child(3) { bottom: 0; }

.sccf-nav-toggle[aria-expanded="true"] .sccf-nav-toggle-icon span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.sccf-nav-toggle[aria-expanded="true"] .sccf-nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}
.sccf-nav-toggle[aria-expanded="true"] .sccf-nav-toggle-icon span:nth-child(3) {
  bottom: 5px;
  transform: rotate(-45deg);
}

/* Focus styles */
.sccf-nav-link:focus-visible,
.sccf-nav-lang-toggle button:focus-visible,
.sccf-nav-toggle:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

/* =========================
   MOBILE PANEL
   ========================= */
.sccf-nav-panel-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(6, 11, 40, 0.9), rgba(1, 4, 16, 0.96));
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease-out, visibility 200ms ease-out;
  z-index: 30;
}

.sccf-nav-panel-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.sccf-nav-panel {
  position: fixed;
  inset-inline: 0.75rem;
  top: calc(var(--nav-height-mobile) + 0.85rem);
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(17, 24, 56, 0.98), rgba(7, 10, 26, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.1rem 1rem;
  transform: translateY(-6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease-out, transform 200ms ease-out, visibility 200ms ease-out;
  z-index: 35;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  color: var(--text-main);
  font-family: var(--font-body);
}

.sccf-nav-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sccf-nav-panel-section-title {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.sccf-nav-panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
  padding: 0;
}

.sccf-nav-panel-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(8, 12, 36, 0.8);
  color: var(--text-main);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: background var(--transition-fast), border-color var(--transition-fast),
              transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.sccf-nav-panel-item a span.label {
  font-weight: 500;
}

.sccf-nav-panel-item a span.meta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
}

.sccf-nav-panel-item a:hover {
  background: rgba(15, 32, 80, 0.98);
  border-color: rgba(244, 180, 26, 0.52);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
}

.sccf-nav-panel-item a.active {
  background: rgba(244, 180, 26, 0.15);
  border-color: rgba(244, 180, 26, 0.6);
  color: var(--accent);
}

.sccf-nav-panel-item a.active span.meta {
  color: var(--accent);
}

.sccf-nav-panel-item--primary a {
  background: linear-gradient(135deg, #f4b41a, #ffce58);
  color: #0d101c;
  box-shadow: 0 14px 30px rgba(244, 180, 26, 0.75);
}

.sccf-nav-panel-item--primary a span.meta {
  color: #4a3506;
}

.sccf-nav-panel-item--danger a {
  background: radial-gradient(circle at top, rgba(255, 75, 107, 0.18), rgba(148, 24, 54, 0.95));
  border-color: rgba(255, 75, 107, 0.9);
  color: #ffeaf0;
}

.sccf-nav-panel-item--danger a span.meta {
  color: #ffc0ce;
}

.sccf-nav-panel-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  margin: 0.6rem 0 0.9rem;
}

.sccf-nav-panel-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-radius: 16px;
  padding: 0.75rem 0.8rem;
  background: rgba(3, 7, 19, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sccf-nav-panel-note strong {
  color: var(--accent);
  font-weight: 600;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (min-width: 720px) {
  nav.sccf-nav {
    height: var(--nav-height-desktop);
    padding-inline: 1.3rem;
  }

  .sccf-nav-logo-area {
    flex: 0 0 auto;
    min-width: 280px;
  }

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

  .sccf-nav-actions {
    margin-left: auto;
  }

  .sccf-nav-cta-chip {
    display: inline-flex;
  }

  .sccf-nav-panel {
    display: none; /* desktop uses inline nav, no panel */
  }

  .sccf-nav-toggle {
    display: none; /* hide burger on desktop */
  }
}

@media (min-width: 960px) {
  nav.sccf-nav {
    padding-inline: 1.6rem;
  }

  .sccf-nav-link {
    font-size: 0.76rem;
  }

  .sccf-nav-title {
    font-size: 1rem;
  }

  .sccf-nav-subtitle {
    font-size: 0.72rem;
  }
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #111827;
    background-color: #F7F4EF;
}

/* Ensure main content clears the fixed nav */
main, .page-content {
    padding-top: 6rem;
}

@media (min-width: 720px) {
    main, .page-content {
        padding-top: 7rem;
    }
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 76, 116, 0.5);
    border-radius: 4px;
}

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

/* Old navbar styles - completely hidden since we're using new menu */
.site-header,
header.site-header,
.navbar:not(.sccf-nav),
.navbar-inner,
.navbar-links:not(.sccf-nav-links),
.navbar-links-mobile,
.navbar-toggle:not(.sccf-nav-toggle),
.disclaimer-banner {
    display: none !important;
    visibility: hidden !important;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
    max-width: 100%;
    background: rgba(247, 244, 239, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.navbar-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

.navbar-logo {
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.navbar-links {
    flex-shrink: 1;
    min-width: 0;
}

.navbar-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    max-width: 100%;
}

.navbar-brand-text {
    min-width: 0;
    overflow: hidden;
}

.navbar-logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #373223;
}

.navbar-brand-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.navbar-brand-subtitle {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #4B5563;
}

@media (max-width: 1100px) {
    .navbar-brand-subtitle {
        display: none;
    }
    
    .navbar-brand-title {
        font-size: 16px;
    }
    
    .navbar-links {
        gap: 10px;
        font-size: 13px;
    }
    
    .navbar-link {
        padding: 6px 6px;
    }
    
    .navbar-cta {
        padding: 6px 12px;
        font-size: 13px;
    }
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navbar-link {
    position: relative;
    padding: 6px 8px;
    cursor: pointer;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.navbar-link:hover {
    color: #6B5E47;
    transform: translateY(-1px);
}

.navbar-link:focus-visible {
    outline: none;
    color: #6B5E47;
    box-shadow: 0 2px 0 0 #C94C74;
}

.navbar-language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-left: 8px;
    border-left: 1px solid rgba(148, 163, 184, 0.7);
}

.lang-toggle {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    color: #4B5563;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lang-toggle:hover {
    color: #111827;
    background-color: #E5E7EB;
    transform: translateY(-1px);
}

.lang-toggle-active {
    background-color: #111827;
    color: #F9FAFB;
    border-color: #111827;
}

.navbar-cta {
    padding: 8px 16px;
    min-height: 40px;
    background: #C94C74;
    color: #FFFFFF;
    border: 1px solid #A53D60;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.navbar-cta:hover {
    background: #A53D60;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.navbar-cta:active {
    background: #7F2E48;
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.navbar-cta:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 76, 116, 0.45);
}

.navbar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.navbar-toggle:hover {
    background: #F3F4F6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.navbar-toggle:active {
    background: #E5E7EB;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.navbar-toggle-bar {
    width: 18px;
    height: 2px;
    background-color: #374151;
    border-radius: 999px;
    display: block;
}

.navbar-toggle-bar + .navbar-toggle-bar {
    margin-top: 3px;
}

.navbar-links-mobile {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 8px 16px 12px 16px;
    background: #F7F4EF;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.navbar-links-mobile.active {
    display: flex;
}

.navbar-link-mobile {
    padding: 6px 0;
    text-decoration: none;
    color: #374151;
    font-size: 15px;
}

.navbar-link-mobile:hover {
    color: #6B5E47;
}

.navbar-cta-mobile {
    margin-top: 4px;
    padding: 8px 16px;
    min-height: 40px;
    background: #C94C74;
    color: #FFFFFF;
    border: 1px solid #A53D60;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.navbar-cta-mobile:hover {
    background: #A53D60;
}

.navbar-language-toggle-mobile {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-toggle-mobile {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    color: #374151;
    border: 1px solid #CBD5E1;
    background-color: #FFFFFF;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lang-toggle-mobile:hover {
    background-color: #F3F4F6;
    transform: translateY(-1px);
}

.lang-toggle-mobile.lang-toggle-active {
    background-color: #111827;
    color: #F9FAFB;
    border-color: #111827;
}

.disclaimer-banner {
    width: 100%;
    background: #FEF3C7;
    border-top: 1px solid #FBBF24;
    border-bottom: 1px solid #FBBF24;
    padding: 10px 16px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.disclaimer-banner-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #78350F;
}

.by-the-numbers-section {
    width: 100%;
    padding: 16px 16px 8px 16px;
    background: #111827;
    color: #F9FAFB;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.by-the-numbers-inner {
    width: 100%;
    max-width: 1200px;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.stats-item {
    padding: 10px 12px;
    border-radius: 10px;
    background: #020617;
    border: 1px solid #1F2937;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stats-number {
    font-size: 18px;
    font-weight: 700;
}

.stats-label {
    font-size: 13px;
    color: #E5E7EB;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    width: 100%;
    background: linear-gradient(135deg, #F7F4EF 0%, #E8E0D4 45%, #F7F4EF 100%);
    padding: 100px 16px 40px 16px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    box-sizing: border-box;
}

@media (min-width: 720px) {
    .hero {
        padding-top: 120px;
    }
}

.hero-inner {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6B5E47;
    margin: 0;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #222222;
    max-width: 640px;
    margin: 0;
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #374151;
    max-width: 640px;
    margin: 0;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.hero-supporting {
    font-size: 13px;
    line-height: 1.5;
    color: #4B5563;
    max-width: 520px;
    margin: 0;
}

.hero-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(209, 191, 167, 0.8);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.hero-image {
    border-radius: 16px;
}

.section-wrapper {
    width: 100%;
    padding: 40px 16px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.section-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #222222;
    margin: 0 0 4px 0;
}

.section-subtitle {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #4B5563;
    max-width: 640px;
    margin: 0;
}

.mission-block {
    padding: 20px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mission-title {
    font-size: 18px;
    font-weight: 600;
    color: #373223;
    margin: 0;
}

.mission-text {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.what-card {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.what-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}

.what-list {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 20px;
    background: #FFFFFF;
    color: #222222;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    border-color: #D1BFA7;
    background: #FFFEFB;
}

.card:focus-within {
    box-shadow: 0 0 0 3px rgba(201, 76, 116, 0.25);
    border-color: #C94C74;
}

.card-header {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #373223;
}

.card-body {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 16px;
}

.card-body ul {
    margin: 0;
    padding-left: 18px;
}

.card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.btn-primary {
    padding: 12px 24px;
    min-height: 44px;
    background: #6B5E47;
    color: #FFFFFF;
    border: 1px solid #564837;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #564837;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.btn-primary:active {
    background: #4A3D30;
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary {
    padding: 10px 22px;
    min-height: 44px;
    background: #FFFFFF;
    color: #6B5E47;
    border: 1px solid #70818F;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    background-clip: padding-box;
}

.btn-secondary:hover {
    background: #F7F4EF;
    border-color: #6B5E47;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.btn-secondary:active {
    background: #E4DED3;
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline: none;
}

.btn-primary:focus-visible {
    box-shadow: 0 0 0 3px rgba(201, 76, 116, 0.45);
    border-color: #C94C74;
}

.btn-secondary:focus-visible {
    box-shadow: 0 0 0 3px rgba(112, 129, 143, 0.4);
    border-color: #70818F;
}

.text-link {
    color: #C94C74;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease, text-decoration-color 0.2s ease, transform 0.2s ease;
}

.text-link:hover {
    color: #A53D60;
    text-decoration-color: #A53D60;
    transform: translateY(-1px);
}

.text-link:active {
    color: #7F2E48;
    transform: translateY(0);
}

.text-link:visited {
    color: #8B3A62;
}

.text-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 76, 116, 0.4);
    border-radius: 2px;
}

.founders-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
}

.founders-bio-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.founder-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #D1BFA7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.founder-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.founder-name {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 2px 0;
}

.founder-role {
    font-size: 14px;
    font-weight: 500;
    color: #6B5E47;
    margin: 0 0 8px 0;
}

.founder-bio {
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 12px 0;
}

.founder-bio:last-child {
    margin-bottom: 0;
}

.founders-photo-frame {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #111827;
    border: 1px solid #111827;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founders-photo-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
}

.founders-photo {
    border-radius: 14px;
}

.onco-section {
    width: 100%;
    padding: 40px 16px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.onco-inner {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.onco-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.onco-video-col {
    display: flex;
}

.onco-video-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 16px;
    background: #0F172A;
    border-radius: 16px;
    border: 1px solid #1F2937;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.6);
    color: #F9FAFB;
    width: 100%;
}

.onco-video-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #111827;
    margin-bottom: 12px;
    cursor: pointer;
}

.onco-video-overlay-text {
    position: absolute;
    inset: 0;
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #E5E7EB;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(17, 24, 39, 0.7));
}

.onco-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: rgba(201, 76, 116, 0.92);
    border: 2px solid rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.onco-play-btn:hover {
    transform: translate(-50%, -52%) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    background: rgba(165, 61, 96, 0.98);
}

.onco-play-btn:active {
    transform: translate(-50%, -48%) scale(0.97);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.onco-play-icon {
    font-size: 26px;
    color: #F9FAFB;
}

.onco-card-body {
    color: #E5E7EB;
}

.cancer-sathi-section {
    width: 100%;
    padding: 40px 16px;
    background: linear-gradient(135deg, #0F172A 0%, #111827 40%, #1F2937 100%);
    color: #F9FAFB;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.cancer-sathi-inner {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
}

.cancer-sathi-info {
    display: flex;
}

.cancer-sathi-card {
    display: flex;
    flex-direction: column;
    min-height: 240px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
}

.cancer-sathi-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #F9FAFB;
    margin-bottom: 6px;
}

.cancer-sathi-tagline {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #E5E7EB;
    margin-bottom: 10px;
}

.cancer-sathi-list {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #E5E7EB;
}

.cancer-sathi-privacy {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(248, 250, 252, 0.35);
    background: rgba(15, 23, 42, 0.9);
    font-size: 13px;
    line-height: 1.6;
    color: #E5E7EB;
    display: flex;
    gap: 8px;
}

.cancer-sathi-cta-col {
    display: flex;
}

.cancer-sathi-cta {
    display: flex;
    flex-direction: column;
    min-height: 240px;
    padding: 20px;
    background: rgba(17, 24, 39, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.small-muted {
    font-size: 12px;
    line-height: 1.5;
    color: #6B7280;
}

.stats-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 18px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.chart-area {
    position: relative;
    width: 100%;
    min-height: 180px;
    margin-top: 8px;
    border-radius: 8px;
    background: #F9FAFB;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chart-step {
    padding: 16px 12px;
    border-right: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chart-step:last-child {
    border-right: none;
}

.chart-step-label {
    font-size: 14px;
    font-weight: 600;
    color: #6B5E47;
}

.chart-step-desc {
    font-size: 13px;
    color: #4B5563;
}

.contact-section {
    width: 100%;
    padding: 40px 16px 56px 16px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.contact-inner {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.contact-form-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    gap: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.form-helper {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
}

.form-error {
    font-size: 12px;
    color: #C53030;
    margin-top: 2px;
    min-height: 14px;
}

.form-success {
    font-size: 13px;
    color: #166534;
    margin-top: 4px;
    min-height: 16px;
}

.input {
    padding: 10px 12px;
    min-height: 44px;
    width: 100%;
    background: #FFFFFF;
    color: #222222;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    display: block;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    caret-color: #6B5E47;
}

.input:hover {
    border-color: #70818F;
    background: #FDFBF7;
}

.input:focus-visible {
    outline: none;
    border-color: #6B5E47;
    box-shadow: 0 0 0 3px rgba(107, 94, 71, 0.25);
    background: #FFFFFF;
}

.textarea {
    padding: 10px 12px;
    min-height: 120px;
    width: 100%;
    background: #FFFFFF;
    color: #222222;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    display: block;
    resize: vertical;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    caret-color: #6B5E47;
}

.textarea:hover {
    border-color: #70818F;
    background: #FDFBF7;
}

.textarea:focus-visible {
    outline: none;
    border-color: #6B5E47;
    box-shadow: 0 0 0 3px rgba(107, 94, 71, 0.25);
    background: #FFFFFF;
}

.input.error,
.textarea.error {
    border-color: #C53030;
    box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.18);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-col {
    display: flex;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    gap: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
}

.site-footer {
    width: 100%;
    background: #111827;
    color: #E5E7EB;
    padding: 20px 16px;
    border-top: 1px solid #1F2937;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.footer-inner {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 16px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.6;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    text-align: right;
}

.footer-disclaimer {
    color: #E5E7EB;
    font-size: 12px;
    margin: 0;
}

.footer-created-by {
    color: #9CA3AF;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1000px) {
    .navbar-links {
        gap: 8px;
        font-size: 12px;
    }
    
    .navbar-link {
        padding: 6px 4px;
    }
    
    .navbar-language-toggle {
        padding-left: 6px;
    }
    
    .lang-toggle {
        font-size: 12px;
        padding: 3px 6px;
    }
}

@media (max-width: 900px) {
    .navbar-links {
        display: none;
    }

    .navbar-toggle {
        display: inline-flex;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .founders-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .onco-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .cancer-sathi-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-right {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 40px;
    }
    
    .navbar-logo-wrapper {
        gap: 8px;
    }
    
    .navbar-logo-img {
        height: 36px;
    }
    
    .navbar-brand-title {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 26px;
    }

    .section-wrapper,
    .onco-section,
    .cancer-sathi-section,
    .contact-section {
        padding-inline: 16px;
    }

    .chart-area {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 8px;
    }
}
