/* ========================================
   CHECK-CAP.COM - Global Styles
   Clean & Professional Design System
   ======================================== */

/* CSS Variables */
:root {
  --color-primary: #1B3A5C;
  --color-primary-light: #2A5580;
  --color-primary-dark: #0F2440;
  --color-accent: #0077B6;
  --color-accent-light: #00A1E4;
  --color-accent-hover: #005F8F;
  --color-success: #2E7D32;
  --color-text: #2D3748;
  --color-text-light: #64748B;
  --color-text-lighter: #94A3B8;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F9FC;
  --color-bg-card: #FFFFFF;
  --color-border: #E2E8F0;
  --color-border-light: #F1F5F9;
  --color-hero-bg: #0F2440;
  --color-hero-text: #FFFFFF;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --transition: 0.2s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--color-primary-dark); }
h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }

/* Container */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.25rem; color: var(--color-primary-dark);
}
.nav-logo-mark {
  width: 36px; height: 36px; background: var(--color-primary);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.03em;
}
.nav-logo-img {
  height: 32px; width: auto;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--color-text); font-size: 0.9rem; font-weight: 500;
  padding: 0.5rem 0; position: relative; transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--color-accent); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--color-accent); border-radius: 1px;
}
.nav-links .nav-external {
  color: var(--color-text-light); font-size: 0.85rem;
}
.nav-links .nav-external::after { content: ' \2197'; font-size: 0.7rem; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-text); margin: 5px 0; transition: var(--transition); }

/* ========================================
   NAV DROPDOWNS
   ======================================== */
.nav-links > li.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.dropdown-toggle {
  background: none; border: none; cursor: pointer;
  padding: 0.5rem 0 0.5rem 0.3rem;
  display: flex; align-items: center;
}
.dropdown-toggle::after {
  content: ''; display: block; width: 5px; height: 5px;
  border-right: 1.5px solid var(--color-text-light);
  border-bottom: 1.5px solid var(--color-text-light);
  transform: rotate(45deg); margin-bottom: 2px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.has-dropdown:hover .dropdown-toggle::after {
  border-color: var(--color-accent);
}
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px; background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
  padding: 0.5rem 0; list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
}
/* Hover bridge between nav item and dropdown */
.nav-links > li.has-dropdown::after {
  content: ''; position: absolute; top: 100%;
  left: -10px; right: -10px; height: 14px;
}
/* Arrow pointer */
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 6px solid white;
}
/* Show on hover */
.nav-links > li.has-dropdown:hover > .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Dropdown links */
.nav-links > li .nav-dropdown a {
  display: block; padding: 0.55rem 1.25rem;
  font-size: 0.84rem; font-weight: 500;
  color: var(--color-text); white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links > li .nav-dropdown a:hover {
  background: var(--color-bg-alt); color: var(--color-accent);
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--color-hero-bg) 0%, var(--color-primary) 100%);
  color: var(--color-hero-text);
  padding: 10rem 0 6rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0,119,182,0.15) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(0,161,228,0.08) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.8rem;
  font-weight: 500; margin-bottom: 1.5rem; color: rgba(255,255,255,0.9);
}
.hero-badge-dot { width: 6px; height: 6px; background: #4ADE80; border-radius: 50%; }
.hero h1 { color: white; margin-bottom: 1.25rem; font-size: 3rem; }
.hero p { font-size: 1.2rem; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 600px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--color-hero-bg) 0%, var(--color-primary) 100%);
  color: white; padding: 8rem 0 4rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0,119,182,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 640px; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: all var(--transition); border: none; text-decoration: none;
}
.btn-primary {
  background: var(--color-accent); color: white;
  box-shadow: 0 2px 8px rgba(0,119,182,0.25);
}
.btn-primary:hover { background: var(--color-accent-hover); color: white; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.5); }
.btn-secondary {
  background: var(--color-bg-alt); color: var(--color-primary);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover { background: var(--color-border-light); }

/* ========================================
   TICKER STRIP
   ======================================== */
.ticker-strip {
  background: var(--color-primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 0; color: white;
}
.ticker-inner {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  font-size: 0.85rem; font-weight: 500;
}
.ticker-symbol { color: var(--color-accent-light); font-weight: 700; }
.ticker-divider { color: rgba(255,255,255,0.2); }

/* ========================================
   STAT CARDS
   ======================================== */
.stats-section { padding: 5rem 0; background: var(--color-bg); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.stat-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 2rem 1.5rem;
  text-align: center; transition: all var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-accent); transform: translateY(-2px); }
.stat-number {
  font-size: 2.5rem; font-weight: 800; color: var(--color-accent);
  line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.stat-label { font-size: 0.85rem; color: var(--color-text-light); line-height: 1.4; font-weight: 500; }

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 5rem 0; }
.section-alt { background: var(--color-bg-alt); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--color-text-light); font-size: 1.05rem; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* ========================================
   INDUSTRY CARDS
   ======================================== */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.industry-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 2rem 1.5rem;
  transition: all var(--transition);
}
.industry-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.industry-icon {
  width: 48px; height: 48px; background: var(--color-bg-alt);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1rem;
}
.industry-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.industry-card p { font-size: 0.9rem; color: var(--color-text-light); margin-bottom: 0; }

/* ========================================
   MISSION / CTA BLOCK
   ======================================== */
.mission-block {
  background: var(--color-bg-alt); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 3.5rem;
  text-align: center; max-width: 800px; margin: 0 auto;
}
.mission-block h2 { margin-bottom: 1rem; }
.mission-block p { font-size: 1.1rem; color: var(--color-text-light); margin-bottom: 0; }

/* ========================================
   NEWS STRIP
   ======================================== */
.news-section { padding: 4rem 0; border-top: 1px solid var(--color-border); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card {
  padding: 1.5rem; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); transition: all var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-sm); border-color: var(--color-accent); }
.news-date { font-size: 0.8rem; color: var(--color-text-lighter); margin-bottom: 0.5rem; font-weight: 500; }
.news-title { font-size: 0.95rem; font-weight: 600; color: var(--color-primary-dark); line-height: 1.4; }

/* ========================================
   FEATURE LIST / CHECKMARKS
   ======================================== */
.feature-list { list-style: none; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0; font-size: 1rem;
}
.feature-list li::before {
  content: '\2713'; color: var(--color-accent); font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* ========================================
   CONTENT GRID (2 columns)
   ======================================== */
.content-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.content-grid-text h2 { margin-bottom: 1rem; }
.content-grid-text p { color: var(--color-text-light); }
.content-grid-visual {
  background: var(--color-bg-alt); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 3rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 300px; color: var(--color-text-lighter);
  font-size: 0.9rem; text-align: center;
}

/* ========================================
   TIMELINE
   ======================================== */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 18px; top: 0; bottom: 0;
  width: 2px; background: var(--color-border);
}
.timeline-item {
  display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative;
}
.timeline-marker {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; position: relative; z-index: 1;
}
.timeline-marker.completed {
  background: var(--color-accent); color: white;
}
.timeline-marker.pending {
  background: var(--color-border); color: var(--color-text-lighter);
  border: 2px dashed var(--color-text-lighter);
}
.timeline-current {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.25rem 0 1.25rem; margin: 0;
}
.timeline-current-label {
  font-size: 0.7rem; font-weight: 800; color: #e63946;
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap; flex-shrink: 0;
  padding: 0.25rem 0.6rem; border: 2px solid #e63946; border-radius: 4px;
}
.timeline-current-line {
  flex: 1; height: 3px; background: #e63946; border-radius: 2px;
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.timeline-content h3, .timeline-content h4 { margin-bottom: 0.25rem; font-size: 1.05rem; }
.timeline-content p { font-size: 0.9rem; color: var(--color-text-light); margin-bottom: 0; }
.timeline-date { font-size: 0.8rem; color: var(--color-text-lighter); font-weight: 600; }

/* ========================================
   TEAM GRID
   ======================================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-photo {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1rem;
  object-fit: cover; border: 3px solid var(--color-border);
  display: block;
}
.team-card h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-card .team-title { font-size: 0.85rem; color: var(--color-accent); font-weight: 600; margin-bottom: 0.5rem; }
.team-card p { font-size: 0.85rem; color: var(--color-text-light); line-height: 1.5; }

/* ========================================
   INFO CARDS / KEY DOCS
   ======================================== */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.info-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 2rem;
}
.info-card h3 { margin-bottom: 0.75rem; }
.info-card p { font-size: 0.95rem; color: var(--color-text-light); margin-bottom: 0; }

/* ========================================
   CALLOUT / BANNER
   ======================================== */
.callout {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white; border-radius: var(--radius-lg);
  padding: 2.5rem 3rem; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.callout h3 { color: white; margin-bottom: 0.5rem; }
.callout p { color: rgba(255,255,255,0.8); margin-bottom: 0; }

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--color-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); font-size: 0.95rem;
  font-family: inherit; background: white; color: var(--color-text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}
.form-group textarea { resize: vertical; }

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background: var(--color-bg-card);
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--color-accent); }
.faq-item[open] { border-color: var(--color-accent); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; cursor: pointer;
  font-weight: 600; font-size: 1rem; color: var(--color-primary-dark);
  list-style: none; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 400;
  color: var(--color-accent); flex-shrink: 0; margin-left: 1rem;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: var(--color-accent); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem; color: var(--color-text-light); line-height: 1.7;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ========================================
   DISCLAIMER
   ======================================== */
.disclaimer {
  background: var(--color-bg-alt); border-top: 1px solid var(--color-border);
  padding: 2rem 0;
}
.disclaimer p {
  font-size: 0.75rem; color: var(--color-text-lighter);
  line-height: 1.6; max-width: 1100px; margin: 0 auto;
}
.disclaimer a { color: var(--color-text-lighter); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-primary-dark); color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand h4 { color: white; margin-bottom: 0.75rem; font-size: 1.1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }
.footer-col h5 {
  color: white; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.6); font-size: 0.85rem;
  padding: 0.3rem 0; transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem; display: flex; justify-content: space-between;
  align-items: center; font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: white; }
.footer-legal { display: flex; gap: 1.5rem; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .stats-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 8rem 0 4rem; }
  .hero h1 { font-size: 2.25rem; }
  .page-hero { padding: 7rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .callout { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: white;
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 2rem; gap: 0.5rem;
  }
  /* Dropdown mobile overrides */
  .nav-links > li.has-dropdown { flex-wrap: wrap; }
  .nav-links > li.has-dropdown > a { flex: 1; }
  .nav-links > li.has-dropdown::after { display: none; }
  .dropdown-toggle { padding: 0.5rem 0.75rem; }
  .dropdown-toggle::after { width: 6px; height: 6px; }
  .has-dropdown.dropdown-open .dropdown-toggle::after {
    transform: rotate(-135deg); margin-bottom: 0; margin-top: 2px;
  }
  .nav-dropdown {
    position: static; transform: none; min-width: 100%; width: 100%;
    background: transparent; border: none; border-radius: 0;
    box-shadow: none; padding: 0; opacity: 1; visibility: visible;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-dropdown::before { display: none; }
  .has-dropdown.dropdown-open > .nav-dropdown { max-height: 500px; padding: 0.25rem 0 0.5rem; }
  .nav-links > li .nav-dropdown a {
    padding: 0.35rem 0 0.35rem 1rem; font-size: 0.82rem;
    color: var(--color-text-light); border-left: 2px solid var(--color-border);
    white-space: normal;
  }
  .nav-links > li .nav-dropdown a:hover {
    background: transparent; border-left-color: var(--color-accent);
    color: var(--color-accent);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stats-grid, .industry-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
}
