/* ============================================
   PC&H Design System - v2.0 (Premium)
   Pharmaceutical Care & Health
   ============================================ */

/* -------- CSS Variables -------- */
:root {
  /* Colors - Kept your original palette but refined the alphas */
  --bg-primary: #fafaf9;
  --bg-secondary: #f5f5f4;
  --bg-card: rgba(255, 255, 255, 0.65); /* More transparent for glass effect */
  --text-primary: #1c1917;
  --text-secondary: #44403c; /* Slightly darker for better readability */
  --text-muted: #a8a29e;
  --border: rgba(28, 25, 23, 0.06);
  
  /* Brand Colors */
  --accent-teal: #0d9488;
  --accent-cyan: #0891b2;
  --gradient-start: #0d9488;
  --gradient-mid: #0891b2;
  --gradient-end: #7c3aed;
}

.dark {
  --bg-primary: #050505; /* Deeper black for premium feel */
  --bg-secondary: #0a0a0a;
  --bg-card: rgba(20, 20, 20, 0.6);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --border: rgba(255, 255, 255, 0.08);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
  min-height: 100vh;
}

/* -------- Typography (Editorial Update) -------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.03em; /* Tighter tracking for "Finance" look */
}

h1 { font-weight: 700; letter-spacing: -0.04em; }

.page-label, .section-label, .logo-sub, .stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em; /* Wide spacing for small caps */
  font-size: 0.7rem;
}

a { color: inherit; text-decoration: none; transition: all 0.2s ease; }

/* -------- Premium Glassmorphism Cards -------- */
/* Applies to all cards across the site */
.card, .featured-article, .portfolio-card, .focus-card, .info-card, .form-card, .stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 24px;
  
  /* The "Expensive" Inner Glow */
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 0.4), /* Top white lip */
    0 10px 40px -10px rgba(0, 0, 0, 0.05);
  
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dark .card, .dark .featured-article, .dark .portfolio-card, .dark .focus-card, .dark .info-card, .dark .stat-card {
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
    0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Hover Effects */
.featured-article:hover, .portfolio-card:hover, .focus-card:hover, .stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-teal);
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
    0 30px 60px -15px rgba(13, 148, 136, 0.2); /* Teal ambient glow */
}

/* -------- Header & Nav -------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.dark header.scrolled { background: rgba(10, 10, 10, 0.8); }

.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo Styles */
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark { display: flex; align-items: center; } /* SVG handles size */

/* Nav Links */
nav { display: flex; gap: 2rem; }
nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
}
nav a:hover, nav a.active { color: var(--text-primary); }

/* Buttons */
.btn-primary {
  padding: 0.8rem 1.75rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 100px; /* Pill shape is more modern */
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* -------- Hero Section -------- */
.hero {
  min-height: 90vh;
  display: flex; align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* -------- Visual Placeholder -------- */
.visual-gradient {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-image: url('hero-dna.png');
  background-size: cover;
  background-position: center;
}

/* -------- Footer -------- */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
  margin-top: 6rem;
  background: var(--bg-secondary);
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-text { font-size: 0.85rem; color: var(--text-muted); }
.footer-email {
  font-size: 0.85rem;
  color: var(--accent-teal);
  font-weight: 500;
}
.footer-email:hover { opacity: 0.8; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--text-primary); }

/* -------- Page Layout -------- */
.page-content {
  padding-top: 120px;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

/* Page Headers */
.page-header {
  margin-bottom: 4rem;
  max-width: 700px;
}

.page-label {
  color: var(--accent-teal);
  margin-bottom: 1rem;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* -------- Badges -------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-teal);
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* -------- Buttons -------- */
.btn-secondary {
  padding: 0.8rem 1.75rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* -------- Form Elements -------- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  background: var(--bg-card);
}

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

/* -------- Logo Text -------- */
.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* -------- Theme Toggle -------- */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.theme-toggle:hover {
  background: var(--bg-secondary);
  transform: scale(1.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* -------- Animations -------- */
.fade-up { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; opacity: 0; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }

/* -------- Mobile Navigation -------- */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 99;
  padding: 100px 2rem 2rem;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

.mobile-nav a:hover {
  color: var(--accent-teal);
}

/* -------- Skip to Content (Accessibility) -------- */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
  outline: none;
}

/* -------- Focus States (Accessibility) -------- */
a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
.focus-tab:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 3px;
}

.theme-toggle:focus-visible,
.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 2px;
}

/* -------- Utility Classes (moved from inline styles) -------- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-6 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.25rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 2.5rem; }

.text-sm { font-size: 0.85rem; }
.text-md { font-size: 1rem; }
.text-lg { font-size: 1.5rem; }
.text-xl { font-size: 1.75rem; }

.font-semibold { font-weight: 600; }

.text-secondary { color: var(--text-secondary); }

.line-height-relaxed { line-height: 1.8; }

/* -------- Premium Icon Containers -------- */
.icon-container {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(8, 145, 178, 0.1));
  border: 1px solid rgba(13, 148, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.icon-container svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-teal);
  stroke-width: 1.5;
  fill: none;
}

.focus-card:hover .icon-container,
.focus-area-item:hover .icon-container {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  border-color: transparent;
}

.focus-card:hover .icon-container svg,
.focus-area-item:hover .icon-container svg {
  stroke: white;
}

.icon-container.icon-sm {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.icon-container.icon-sm svg {
  width: 20px;
  height: 20px;
}

.dark .icon-container {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.25), rgba(8, 145, 178, 0.15));
}

/* -------- Image Fallbacks -------- */
.visual-gradient {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  /* Fallback gradient if image doesn't load */
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  background-size: cover;
  background-position: center;
}

.visual-gradient[style*="background-image"] {
  background-blend-mode: overlay;
}

.focus-highlight-visual img {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
}

/* -------- Abstract Visual Animation -------- */
.abstract-visual {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(8, 145, 178, 0.05));
  position: relative;
  overflow: hidden;
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.orb-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--gradient-mid), var(--gradient-end));
  top: 50%;
  right: 15%;
  animation-delay: -2s;
}

.orb-3 {
  width: 100px;
  height: 100px;
  background: var(--accent-teal);
  bottom: 20%;
  left: 30%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(10px, -20px) scale(1.05); }
  50% { transform: translate(-10px, 10px) scale(0.95); }
  75% { transform: translate(15px, 15px) scale(1.02); }
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 148, 136, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 148, 136, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.dark .abstract-visual {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(8, 145, 178, 0.1));
}

.dark .visual-orb {
  opacity: 0.4;
}

/* -------- News/Announcements Section -------- */
.news-section {
  padding: 5rem 0;
  display: none; /* Hidden by default - set to block to show */
}

.news-section.active {
  display: block;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.news-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(8, 145, 178, 0.05));
  border-color: rgba(13, 148, 136, 0.3);
}

.news-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.news-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.news-card.featured .news-title {
  font-size: 1.5rem;
}

.news-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-teal);
  transition: gap 0.3s ease;
}

.news-link:hover {
  gap: 0.75rem;
}

.news-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; }
}

/* News section divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 4rem 0;
}

/* -------- Responsive - Tablet -------- */
@media (max-width: 1024px) {
  nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .focus-highlight { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .header-actions .btn-primary { display: none; }

  .hero { min-height: auto; padding: 7rem 1.5rem 3rem; }
  .hero-visual { height: 350px; margin-top: 2rem; }

  .container { padding: 0 1.5rem 3rem; }
  .page-content { padding-top: 100px; }
}

/* -------- Responsive - Mobile -------- */
@media (max-width: 640px) {
  /* Header */
  header { padding: 1rem; }
  header.scrolled { padding: 0.75rem 1rem; }

  .logo-title { font-size: 0.75rem; }
  .logo-mark img { width: 36px; height: 36px; }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 6rem 1rem 2rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero-visual {
    height: 250px;
    border-radius: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .badge { font-size: 0.65rem; padding: 0.4rem 0.8rem; }

  /* Page Layout */
  .container { padding: 0 1rem 2rem; }
  .page-content { padding-top: 80px; }

  .page-header { margin-bottom: 2rem; }
  .page-title { font-size: 1.5rem; }
  .page-description { font-size: 1rem; }
  .page-label { font-size: 0.65rem; }

  /* Focus Section */
  .focus-highlight {
    padding: 1.5rem;
    border-radius: 20px;
    gap: 1.5rem;
  }

  .focus-highlight-visual {
    height: 200px;
    order: -1; /* Show visual first on mobile */
  }

  .focus-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .focus-tab {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    flex: 1;
    text-align: center;
    min-width: fit-content;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .focus-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .focus-area-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .focus-area-item:hover {
    transform: none; /* Disable hover transform on mobile */
  }

  .criteria-grid { grid-template-columns: 1fr; }
  .criteria-item { font-size: 0.85rem; }

  /* Cards */
  .stat-card {
    padding: 1.5rem !important;
    border-radius: 16px;
  }

  .info-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  /* Icons */
  .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .icon-container svg {
    width: 20px;
    height: 20px;
  }

  .icon-container.icon-sm {
    width: 36px;
    height: 36px;
  }

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

  /* News Section */
  .news-grid { gap: 1rem; }
  .news-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .news-title { font-size: 1.1rem; }
  .news-card.featured .news-title { font-size: 1.25rem; }
  .news-excerpt { font-size: 0.85rem; }

  /* Footer */
  footer {
    padding: 2rem 1rem;
    margin-top: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-left { align-items: center; }
  .footer-links { gap: 1.5rem; }

  /* Forms */
  .form-card {
    padding: 1.5rem !important;
    border-radius: 16px;
  }

  .form-input, .form-textarea, .form-select {
    padding: 0.875rem 1rem;
    font-size: 16px; /* Prevents iOS zoom */
  }

  .file-upload {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .submit-btn {
    padding: 1rem;
    font-size: 0.95rem;
  }

  /* Mobile Nav */
  .mobile-nav { padding: 80px 1.5rem 2rem; }
  .mobile-nav a {
    font-size: 1.25rem;
    padding: 0.875rem 0;
  }

  /* Buttons */
  .btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  /* Typography adjustments */
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  h4 { font-size: 1rem; }

  /* Utility overrides */
  .mt-6 { margin-top: 2rem; }
  .mb-5 { margin-bottom: 1.5rem; }
  .p-5 { padding: 1.5rem; }
}

/* -------- Responsive - Small Mobile -------- */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.5rem; }
  .page-title { font-size: 1.35rem; }
  .logo-title { font-size: 0.7rem; }
  .focus-tab { font-size: 0.65rem; padding: 0.4rem 0.75rem; }
}

/* -------- Focus Section -------- */
.focus-highlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(8, 145, 178, 0.05));
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 28px;
  margin-bottom: 3rem;
  align-items: center;
}

.dark .focus-highlight {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(8, 145, 178, 0.1));
}

.focus-highlight-visual {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}

.focus-areas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.focus-area-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.focus-area-item:hover {
  transform: translateX(8px);
  border-color: var(--accent-teal);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.focus-card {
  padding: 2rem;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.criteria-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 0.7rem;
}