/* ============================================================
   KEAN ONE — Corporate Site Styles
   Primary: Dark Blue-Gray (#1E2A3A) | Crimson Red (#C0392B)
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --primary:     #1E2A3A;   /* Dark Blue-Gray */
  --primary-light: #2C3E50;
  --primary-dark: #141E2B;
  --accent:      #C0392B;   /* Crimson Red */
  --accent-light: #E74C3C;
  --accent-dark:  #96281B;
  --white:       #FFFFFF;
  --off-white:   #F5F5F0;
  --light-gray:  #ECF0F1;
  --mid-gray:    #95A5A6;
  --text-dark:   #1A1A2E;
  --text-muted:  #7F8C8D;
  --gold:        #D4AC0D;
  --transition:  0.3s ease;
  --shadow:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.2);
  --radius:      4px;
  --radius-lg:   8px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { line-height: 1.8; color: #555; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; }
.centered { text-align: center; }
.centered .section-subtitle { margin: 0 auto; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-pad { padding: 60px 0; }
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-ghost { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-ghost:hover { background: var(--accent); color: var(--white); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1rem; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--primary);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.navbar.scrolled { background: var(--primary); box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px; max-width: 1340px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-mark {
  width: 42px; height: 42px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; color: #fff;
  font-family: 'Georgia', serif;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.nav-logo-text { line-height: 1; display: flex; flex-direction: column; gap: 8px; }
.nav-logo-name { font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: 0.05em; font-family: 'Georgia', serif; }
.nav-logo-tagline {
  font-size: 0.62rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
  font-style: italic;
  opacity: 0.9;
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--accent);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 0.9rem; right: 0.9rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--primary);
  min-width: 260px;
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.75rem 1.2rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem; font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-dropdown-item:hover { background: rgba(192,57,43,0.15); color: #fff; padding-left: 1.6rem; }
.nav-dropdown-item .badge {
  margin-left: auto; font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  background: var(--accent); color: #fff;
  border-radius: 20px; font-weight: 700;
}
.nav-dropdown-item .badge.flagship { background: var(--gold); color: var(--primary); }
.nav-cta { margin-left: 1rem; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.5rem; background: none; border: none;
}
.nav-hamburger span { width: 24px; height: 2px; background: #fff; transition: var(--transition); display: block; }

/* === MOBILE NAV === */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--primary-dark);
    flex-direction: column; align-items: flex-start;
    padding: 2rem; gap: 0;
    transform: translateX(-100%); transition: var(--transition);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 1rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-link::after { display: none; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; background: rgba(255,255,255,0.05); margin: 0.5rem 0; }
  .nav-cta { margin: 1.5rem 0 0 0; }
}

/* === HERO === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a3045 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192,57,43,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,57,43,0.08) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,42,58,0.92) 50%, rgba(30,42,58,0.4) 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: 0.35;
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-line { width: 50px; height: 2px; background: var(--accent); }
.hero-eyebrow-text {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent);
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; max-width: 680px; }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 580px; margin-bottom: 2.5rem; line-height: 1.9; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-bar { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Hero Variant (page headers) */
.page-hero {
  position: relative; padding: 160px 0 90px;
  background: var(--primary);
  overflow: hidden;
}
.page-hero::before {
  content: '';position:absolute;inset:0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, rgba(192,57,43,0.15) 100%);
}
.page-hero-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; font-size: 1.1rem; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--accent); }

/* === STATS SECTION === */
.stats-section { background: var(--primary); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-item {}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white);
  font-family: 'Georgia', serif;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-number span { color: var(--accent); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.stat-divider { width: 30px; height: 2px; background: var(--accent); margin: 0.6rem auto 0; }

/* === CARDS === */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.75rem; }
.card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.6rem;
}
.card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.7; }

/* === VERTICAL CARDS (Business Verticals) === */
.vertical-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--primary);
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: var(--transition);
  cursor: pointer;
}
.vertical-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vertical-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,42,58,0.95) 0%, rgba(30,42,58,0.4) 60%, transparent 100%);
}
.vertical-card-img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  transition: transform 0.6s ease;
}
.vertical-card:hover .vertical-card-img { transform: scale(1.08); }
.vertical-card-body { position: relative; z-index: 1; padding: 2rem; }
.vertical-card-icon {
  width: 50px; height: 50px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.vertical-card-icon svg { width: 24px; height: 24px; fill: #fff; }
.vertical-card-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.vertical-card h3 { color: #fff; margin-bottom: 0.6rem; font-size: 1.3rem; }
.vertical-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1.2rem; }
.badge-upcoming { display: inline-block; padding: 0.2rem 0.7rem; background: rgba(212,172,13,0.2); color: var(--gold); border: 1px solid var(--gold); border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; }
.badge-flagship { display: inline-block; padding: 0.2rem 0.7rem; background: rgba(192,57,43,0.2); color: var(--accent-light); border: 1px solid var(--accent-light); border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; }
.badge-core { display: inline-block; padding: 0.2rem 0.7rem; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.25); border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; }

/* === FEATURE SECTION === */
.feature-section { padding: 100px 0; }
.feature-section.alt { background: var(--off-white); }
.feature-section.dark { background: var(--primary); }
.feature-section.dark h2, .feature-section.dark h3 { color: #fff; }
.feature-section.dark p { color: rgba(255,255,255,0.7); }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-content { padding: 2rem 0; }
.feature-list { margin: 1.5rem 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem; color: #555;
}
.feature-list li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-top: 0.55rem; flex-shrink: 0; }
.dark .feature-list li { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }

/* === CTA SECTION === */
.cta-section { background: var(--accent); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section.dark-cta { background: var(--primary); }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--off-white); padding: 90px 0; }
.testimonial-card {
  background: #fff; padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  position: relative;
  border-top: 4px solid var(--accent);
}
.testimonial-quote { font-size: 3rem; color: var(--accent); line-height: 0.5; margin-bottom: 1rem; font-family: serif; }
.testimonial-text { font-size: 1rem; color: #555; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.1rem;
}
.testimonial-name { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* === TEAM === */
.team-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2rem; font-weight: 700; font-family: serif;
  border: 4px solid var(--off-white);
}
.team-name { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.3rem; }
.team-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.8rem; }
.team-bio { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* === HOW IT WORKS === */
.hiw-step {
  text-align: center; padding: 2rem 1.5rem;
  position: relative;
}
.hiw-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; font-family: serif;
  margin: 0 auto 1.2rem;
}
.hiw-step h4 { margin-bottom: 0.6rem; }
.hiw-step p { font-size: 0.9rem; color: var(--text-muted); }

/* === FAQ === */
.faq-section { padding: 80px 0; background: var(--off-white); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer;
  font-weight: 600; font-size: 1rem; color: var(--primary);
  transition: var(--transition);
  user-select: none;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { width: 24px; height: 24px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1rem; }
.faq-a p { font-size: 0.95rem; color: #666; line-height: 1.8; }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } .gallery-item:first-child { grid-column: span 2; } }

/* === PROJECT PORTFOLIO === */
.portfolio-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 20px; font-size: 0.82rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  background: transparent; font-family: inherit;
  letter-spacing: 0.03em;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; }
.project-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.project-card-img { height: 280px; overflow: hidden; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-card-img img { transform: scale(1.08); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,42,58,0.9) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-body { padding: 1.5rem; background: #fff; }
.project-status { display: inline-block; padding: 0.2rem 0.75rem; border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.status-ongoing { background: rgba(39,174,96,0.12); color: #27AE60; }
.status-completed { background: rgba(52,73,94,0.1); color: #34495E; }
.status-upcoming { background: rgba(212,172,13,0.12); color: #D4AC0D; }

/* === PRESS / MEDIA === */
.press-card {
  display: flex; gap: 1.5rem; padding: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
}
.press-card:hover { background: var(--off-white); }
.press-card-date { flex-shrink: 0; text-align: center; padding: 0.5rem; background: var(--primary); color: #fff; border-radius: var(--radius); min-width: 60px; }
.press-card-day { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.press-card-mon { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.press-card-content { flex: 1; }
.press-card-source { font-size: 0.72rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.press-card h4 { font-size: 1rem; color: var(--primary); margin-bottom: 0.4rem; font-family: 'Segoe UI', sans-serif; }
.press-card p { font-size: 0.88rem; color: var(--text-muted); }

/* === HIGHLIGHT BOX === */
.highlight-box {
  padding: 2.5rem; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; position: relative; overflow: hidden;
}
.highlight-box::before { content:''; position:absolute; top:-30px;right:-30px; width:150px;height:150px;border-radius:50%;background:rgba(192,57,43,0.15); }
.highlight-box h3 { color:#fff; margin-bottom:0.7rem; }
.highlight-box p { color:rgba(255,255,255,0.8); font-size:0.95rem; }

/* === ICON BOX === */
.icon-box {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.75rem; background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.icon-box:hover { border-left-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.icon-box-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box-icon svg { width: 26px; height: 26px; fill: #fff; }
.icon-box h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.icon-box p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* === DIVIDER === */
.divider { width: 60px; height: 3px; background: var(--accent); margin: 1.2rem 0; }
.divider.centered { margin: 1.2rem auto; }

/* === FOOTER === */
.footer { background: var(--primary-dark); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-logo > div { display: flex; flex-direction: column; gap: 8px; }
.footer-logo-mark {
  width: 44px; height: 44px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; color: #fff;
  font-family: 'Georgia', serif;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.footer-brand-name { font-size: 1.4rem; font-weight: 800; color: #fff; font-family: 'Georgia', serif; }
.footer-brand-tagline {
  font-size: 0.62rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
  font-style: italic;
  opacity: 0.9;
}
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer-col h5 {
  color: #fff; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1.2rem;
  font-family: 'Segoe UI', sans-serif;
}
.footer-col h5::after { content: ''; display: block; width: 25px; height: 2px; background: var(--accent); margin-top: 0.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.82rem; transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* === MISC HELPERS === */
.text-accent { color: var(--accent); }
.text-white { color: #fff !important; }
.text-muted { color: var(--text-muted); }
.bg-primary { background: var(--primary); }
.bg-accent { background: var(--accent); }
.bg-off-white { background: var(--off-white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-0 { padding-top: 0 !important; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* === ANIMATIONS === */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* === SCROLL TOP === */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 44px; height: 44px;
  background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: var(--transition); border: none; font-size: 1.2rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* === NOTIFICATION / UPCOMING BANNER === */
.upcoming-banner {
  background: linear-gradient(135deg, rgba(212,172,13,0.12), rgba(212,172,13,0.05));
  border: 1px solid rgba(212,172,13,0.3);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 3rem;
}
.upcoming-banner-icon { font-size: 2rem; flex-shrink: 0; }
.upcoming-banner h4 { color: var(--gold); margin-bottom: 0.2rem; }
.upcoming-banner p { font-size: 0.88rem; color: var(--text-muted); }

/* === MARINE SPECIFIC === */
.marine-metric { text-align: center; padding: 2rem; }
.marine-metric-num { font-size: 2.8rem; font-weight: 900; color: var(--primary); font-family: serif; }
.marine-metric-num span { color: var(--accent); }
.marine-metric-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 0.3rem; }

/* === PAGE TRANSITION === */
.page-transition { animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* === CONTACT FORM === */
.contact-form { background: #fff; padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; letter-spacing: 0.03em; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.85rem 1rem;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  font-size: 0.95rem; font-family: inherit;
  color: var(--text-dark); background: #fff;
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }

/* === TICKER === */
.ticker-wrap { overflow: hidden; background: var(--accent); padding: 0.6rem 0; }
.ticker { display: flex; width: max-content; animation: ticker 25s linear infinite; }
.ticker:hover { animation-play-state: paused; }
.ticker-item { padding: 0 3rem; color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; white-space: nowrap; }
.ticker-item::after { content: '◆'; margin-left: 3rem; color: rgba(255,255,255,0.5); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .grid-2 { gap: 2rem; }
  .container { padding: 0 1.25rem; }
  .section-pad { padding: 50px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   KEAN AT WORK — Work Page Components
   ============================================================ */

/* Culture stat cards */
.work-culture-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--accent);
}
.work-culture-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.work-culture-card h4 { font-size: 1.6rem; color: var(--accent); margin-bottom: 0.25rem; font-family: Georgia, serif; }
.work-culture-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* Work photo grid */
.work-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.work-photo-item { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; }
.work-photo-item img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.work-photo-item.large { grid-column: span 2; grid-row: span 2; }
.work-photo-item.large img { height: 100%; min-height: 500px; }
.work-photo-item:hover img { transform: scale(1.05); }
.work-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,30,43,0.92) 0%, rgba(20,30,43,0.3) 50%, transparent 100%);
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity 0.35s ease;
}
.work-photo-item:hover .work-photo-overlay { opacity: 1; }
.work-photo-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
  align-self: flex-start;
}
.work-photo-overlay p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin: 0; line-height: 1.5; }

/* Work value cards (on-site) */
.work-value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem;
  border-top: 3px solid var(--accent);
}
.work-value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.work-value-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.6rem; }
.work-value-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* On-site timeline */
.work-timeline { display: flex; flex-direction: column; gap: 0; max-width: 780px; margin: 0 auto; }
.work-timeline-item {
  display: grid;
  grid-template-columns: 90px 28px 1fr;
  gap: 0 1.25rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 2rem;
}
.work-timeline-item:last-child { padding-bottom: 0; }
.work-timeline-time {
  font-size: 0.82rem; font-weight: 700; color: var(--accent);
  text-align: right; padding-top: 0.2rem; letter-spacing: 0.04em;
}
.work-timeline-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid rgba(255,255,255,0.2);
  margin-top: 0.25rem; flex-shrink: 0; position: relative; z-index: 1;
}
.work-timeline-item:not(:last-child) .work-timeline-dot::after {
  content: '';
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 2px; background: rgba(255,255,255,0.12);
  height: calc(100% + 2rem + 0.5rem);
}
.work-timeline-content h4 { color: #fff; font-size: 1rem; margin-bottom: 0.35rem; }
.work-timeline-content p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* Office perk cards */
.work-perk-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-left: 4px solid transparent;
  transition: var(--transition);
}
.work-perk-card:hover { border-left-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.work-perk-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.work-perk-card h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--primary); }
.work-perk-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   MEDIA GALLERY — Gallery Page Components
   ============================================================ */

/* Masonry project gallery */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.1rem;
}
.gallery-media-card { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; }
.gallery-media-card img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-media-card.tall { grid-row: span 2; }
.gallery-media-card.tall img { height: 100%; min-height: 535px; }
.gallery-media-card:hover img { transform: scale(1.04); }
.gallery-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,22,34,0.95) 0%, rgba(14,22,34,0.4) 55%, transparent 100%);
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity 0.35s ease;
}
.gallery-media-card:hover .gallery-media-overlay { opacity: 1; }
.gallery-media-tag {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.2rem 0.6rem;
  border-radius: 3px; margin-bottom: 0.5rem; align-self: flex-start;
}
.gallery-media-overlay h4 { color: #fff; font-size: 1rem; margin-bottom: 0.4rem; }
.gallery-media-overlay p { color: rgba(255,255,255,0.8); font-size: 0.84rem; line-height: 1.5; margin: 0; }

/* Site photography cards */
.gallery-site-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.gallery-site-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-site-img { overflow: hidden; height: 200px; }
.gallery-site-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-site-card:hover .gallery-site-img img { transform: scale(1.05); }
.gallery-site-body { padding: 1.25rem 1.5rem 1.5rem; }
.gallery-site-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 0.5rem;
}
.gallery-site-body h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--primary); }
.gallery-site-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Leadership / people cards */
.gallery-person-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.gallery-person-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.gallery-person-img { position: relative; height: 280px; overflow: hidden; }
.gallery-person-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.gallery-person-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--accent); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 3px;
}
.gallery-person-body { padding: 1.5rem; }
.gallery-person-body h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.2rem; }
.gallery-person-role { font-size: 0.78rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.75rem; }
.gallery-person-body p { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; }
.gallery-person-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.gallery-person-tags span {
  font-size: 0.7rem; background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6); padding: 0.2rem 0.6rem;
  border-radius: 3px; border: 1px solid rgba(255,255,255,0.1);
}

/* Milestone cards */
.gallery-milestone-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
  transition: var(--transition);
}
.gallery-milestone-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-milestone-year {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--primary); color: #fff;
  font-size: 0.88rem; font-weight: 900;
  font-family: Georgia, serif; padding: 0.3rem 0.75rem;
  border-radius: 4px; z-index: 1;
}
.gallery-milestone-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.gallery-milestone-body { padding: 1.25rem 1.5rem 1.5rem; }
.gallery-milestone-body h4 { font-size: 1rem; color: var(--primary); margin-bottom: 0.4rem; }
.gallery-milestone-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   FAQ PAGE — Category Navigation & Section Headers
   ============================================================ */

.faq-cat-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem; font-weight: 600;
  border-radius: 50px; border: 1.5px solid #d0d0d0;
  color: var(--text-dark); background: #fff;
  text-decoration: none; transition: var(--transition);
  white-space: nowrap;
}
.faq-cat-btn:hover, .faq-cat-btn.active-cat {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

.faq-section-header {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.faq-section-icon {
  font-size: 2.2rem;
  width: 60px; height: 60px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid #e0e0e0;
}
.faq-section-header h2 { margin: 0; }
.faq-section-header .section-label { margin-bottom: 0.2rem; }

.faq-list { }
.faq-list .faq-item { background: #fff; border-radius: 8px; margin-bottom: 0.75rem; box-shadow: 0 1px 8px rgba(0,0,0,0.05); }
.faq-list .faq-q { padding: 1.25rem 1.5rem; font-size: 1rem; font-weight: 600; color: var(--primary); }
.faq-list .faq-a { padding: 0 1.5rem 1.25rem; }
.faq-list .faq-a p { margin-bottom: 0.5rem; }
.faq-list .faq-a p:last-child { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE — New pages
   ============================================================ */
@media (max-width: 900px) {
  .work-photo-grid { grid-template-columns: 1fr 1fr; }
  .work-photo-item.large { grid-column: span 2; grid-row: span 1; }
  .work-photo-item.large img { min-height: 260px; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gallery-media-card.tall { grid-row: span 1; }
  .gallery-media-card.tall img { min-height: 260px; }
}
@media (max-width: 600px) {
  .work-photo-grid { grid-template-columns: 1fr; }
  .work-photo-item.large { grid-column: span 1; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-media-card.tall { grid-row: span 1; }
  .work-timeline-item { grid-template-columns: 70px 20px 1fr; }
  .faq-cat-btn { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
}

/* === NAVBAR: Compact mode for medium desktops with more links === */
@media (max-width: 1200px) and (min-width: 901px) {
  .nav-inner { padding: 0 1rem; }
  .nav-links { gap: 0; }
  .nav-link { font-size: 0.75rem; padding: 0.5rem 0.55rem; letter-spacing: 0.02em; }
  .nav-logo-name { font-size: 1.1rem; }
  .nav-logo-tagline { font-size: 0.57rem; }
  .btn-sm { padding: 0.55rem 1rem; font-size: 0.76rem; }
}
@media (max-width: 1060px) and (min-width: 901px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--primary-dark);
    flex-direction: column; align-items: flex-start;
    padding: 2rem; gap: 0;
    transform: translateX(-100%); transition: var(--transition);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 1rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-link::after { display: none; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; background: rgba(255,255,255,0.05); margin: 0.5rem 0; }
}
