/* ========================================
   ONE DEPARTMENT - Main Stylesheet
   ======================================== */

/* COLOR PALETTE */
:root {
  --primary-green: #1B5E3B;
  --dark-bg: #1A1A1A;
  --accent-yellow: #FFD700;
  --white-bg: #FFFFFF;
  --light-gray: #F8F9FA;
  --text-dark: #1A1A1A;
  --text-light: #666666;
  --border-light: #EEEEEE;
  --success: #2D7A51;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-logo: 'Bebas Neue', sans-serif;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--white-bg);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1rem;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-green);
  opacity: 0.8;
}

button {
  cursor: pointer;
  font-family: var(--font-sans);
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Large screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Ensure images never overflow */
img {
  max-width: 100%;
  height: auto;
}

.section {
  padding: 3.5rem 0;
}

.section.dark {
  background-color: var(--dark-bg);
  color: white;
}

.section.light {
  background-color: var(--light-gray);
}

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

.text-white {
  color: white;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ========================================
   NAVIGATION
   ======================================== */

header {
  position: sticky;
  top: 0;
  background-color: var(--white-bg);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

nav.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: width 0.3s ease;
}

.nav-menu a:hover:after {
  width: 100%;
}

.cta-button {
  background-color: var(--primary-green);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--success);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(27, 94, 59, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero {
  background: linear-gradient(135deg, var(--white-bg) 0%, var(--light-gray) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 94, 59, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero.dark {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0F1419 100%);
  color: white;
}

.hero.dark::before {
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero.dark h1 {
  color: white;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 750px;
}

.hero.dark .hero-subtitle {
  color: #BBBBBB;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-green);
  color: white;
}

.btn-primary:hover {
  background-color: var(--success);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(27, 94, 59, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--text-dark);
  color: white;
}

.btn-secondary.light {
  color: white;
  border-color: white;
}

.btn-secondary.light:hover {
  background-color: white;
  color: var(--text-dark);
}

.btn-text {
  color: var(--primary-green);
  background: none;
  padding: 0;
  font-weight: 600;
  text-decoration: underline;
  border: none;
}

.btn-text:hover {
  opacity: 0.7;
}

/* ========================================
   CARDS & GRIDS
   ======================================== */

.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background-color: #2A2A2A;
  border-color: #404040;
  color: white;
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.card.dark p {
  color: #CCCCCC;
}

.card-link {
  color: var(--primary-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.card-link::after {
  content: '→';
  transition: all 0.3s ease;
}

/* ========================================
   FORMS & INPUTS
   ======================================== */

form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(27, 94, 59, 0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========================================
   TABS
   ======================================== */

.tabs-container {
  margin-top: 1.5rem;
}

.tabs-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0;
  flex-wrap: wrap;
  border-bottom: none;
  background-color: #E8ECE9;
  border-radius: 10px 10px 0 0;
  padding: 0.5rem 0.5rem 0;
}

.tab-button {
  background: none;
  border: none;
  padding: 0.7rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0;
  border-bottom: none;
}

.tab-button:hover {
  color: var(--text-dark);
  background-color: rgba(255,255,255,0.5);
}

.tab-button.active {
  color: var(--primary-green);
  background-color: white;
  border-bottom-color: transparent;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.tab-panel {
  background: white;
  border: 1px solid var(--border-light);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 1.75rem;
}

.tab-panel h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  color: var(--primary-green);
}

.tab-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.included-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--light-gray);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.included-item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.included-item svg {
  color: var(--primary-green);
  flex-shrink: 0;
  margin-top: 1px;
}

.included-item span {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
}

/* ========================================
   ACCORDION
   ======================================== */

.accordion {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background-color: var(--light-gray);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: #ECECF0;
}

.accordion-header.active {
  background-color: var(--primary-green);
  color: white;
}

.accordion-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 1rem 1.25rem;
  background-color: white;
  color: var(--text-light);
  border-top: 1px solid var(--border-light);
}

.accordion-content.active {
  display: block;
}

.accordion-content p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ========================================
   ANIMATIONS & SCROLL EFFECTS
   ======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 2.5rem 0 1rem;
  border-top: 1px solid #404040;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #BBBBBB;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--accent-yellow);
}

.footer-contact {
  margin-top: 1rem;
}

.footer-contact p {
  color: #BBBBBB;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 700;
}

.footer-social a:hover {
  background-color: var(--primary-green);
  color: white;
}

.footer-bottom {
  border-top: 1px solid #404040;
  padding-top: 1.5rem;
  text-align: center;
  color: #888888;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
  color: #888888;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
    width: 100%;
  }

  .nav-menu a:after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .hero {
    padding: 2.5rem 0;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

  .tabs-nav {
    flex-direction: column;
    border-radius: 10px 10px 0 0;
    gap: 0.25rem;
  }

  .tab-button {
    border-radius: 6px;
    text-align: left;
  }

  .tab-button.active {
    border-radius: 6px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .tab-panel {
    padding: 1.25rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero::before {
    width: 300px;
    height: 300px;
  }

  .advisory-boxes {
    grid-template-columns: 1fr;
  }

  .about-capabilities {
    grid-template-columns: 1fr;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .engagement-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }

  .hero h1 {
    font-size: 1.5rem;
  }

  .nav-menu {
    gap: 0;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   SPECIAL STYLES
   ======================================== */

.italic-serif {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-dark);
}

.hero.dark .italic-serif {
  color: white;
}

.accent-green {
  color: var(--primary-green);
}

.accent-yellow {
  color: var(--accent-yellow);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-green);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section.dark .section-title {
  color: white;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
}

.checklist li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--primary-green);
  border-radius: 50%;
}

.section.dark .checklist li {
  color: #CCCCCC;
}

/* Old timeline (kept for backward compat) */
.timeline {
  position: relative;
  padding: 1.5rem 0;
}

/* ========================================
   TIMELINE V2 — Creative Card Layout
   ======================================== */

.timeline-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.tl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tl-year-badge {
  background: var(--dark-bg);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.tl-year-current {
  background: var(--primary-green);
  color: white;
}

.tl-connector {
  width: 2px;
  height: 1.25rem;
  background: linear-gradient(to bottom, var(--dark-bg), var(--border-light));
  flex-shrink: 0;
}

.tl-card-highlight .tl-connector {
  background: linear-gradient(to bottom, var(--primary-green), var(--border-light));
}

.tl-card-body {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.25rem 1.15rem;
  flex-grow: 1;
  width: 100%;
  transition: all 0.3s ease;
}

.tl-card-body:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.tl-card-highlight .tl-card-body {
  border-color: var(--primary-green);
  background: linear-gradient(135deg, #f0faf4 0%, white 100%);
}

.tl-card-body h4 {
  color: var(--primary-green);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.tl-card-body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .timeline-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .timeline-v2 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========================================
   PAGE-SPECIFIC STYLES
   ======================================== */

/* ========================================
   EXPERTISE SECTION
   ======================================== */

.expertise-section {
  background-color: var(--light-gray);
  padding: 3.5rem 0 3rem;
}

.expertise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.expertise-heading {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.expertise-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.expertise-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.expertise-checklist li {
  padding: 0.75rem 0 0.75rem 1.75rem;
  position: relative;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}

.expertise-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1rem;
}

.expertise-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
}

.expertise-photo-box {
  border-radius: 16px;
  overflow: hidden;
  width: 90%;
  margin-left: auto;
}

.expertise-photo-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.expertise-banner-scroll {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.banner-track {
  display: flex;
  gap: 1rem;
  animation: bannerScroll 20s linear infinite;
}

.banner-item {
  background-color: var(--dark-bg);
  color: white;
  border-radius: 10px;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: auto;
}

.banner-item svg {
  color: var(--primary-green);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.banner-item span {
  font-size: 0.8rem;
  font-weight: 600;
}

@keyframes bannerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .expertise-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .expertise-heading {
    font-size: 2rem;
  }

  .expertise-right {
    order: -1;
  }

  .expertise-desc {
    max-width: 100%;
  }

  .banner-item {
    min-width: 240px;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .expertise-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.intro-box {
  background-color: var(--light-gray);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.intro-box p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================
   MISSION LAYOUT (About Page)
   ======================================== */

.mission-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2.5rem;
  align-items: start;
}

.mission-left h2 {
  line-height: 1.3;
}

.mission-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.35rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.mission-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.mission-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--light-gray);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

.mission-card h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.mission-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .mission-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.engagement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.engagement-card {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.engagement-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 8px 24px rgba(27, 94, 59, 0.1);
}

.engagement-card h3 {
  color: var(--primary-green);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.engagement-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.engagement-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.engagement-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
}

/* ========================================
   ADVISORY BOXES SECTION
   ======================================== */

.advisory-section {
  background-color: #F0F4F1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.advisory-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.advisory-box-text {
  background-color: var(--dark-bg);
  color: white;
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.advisory-box-text h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.advisory-tagline {
  color: #CCCCCC;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.advisory-box-text p {
  color: #BBBBBB;
  font-size: 0.85rem;
  line-height: 1.65;
}

.advisory-founder {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.founder-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.advisory-founder strong {
  color: white;
  display: block;
  font-size: 0.85rem;
}

.advisory-founder span {
  color: #999;
  font-size: 0.78rem;
}

.advisory-box-image {
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
}

.advisory-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 768px) {
  .advisory-boxes {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .advisory-box-image {
    min-height: 280px;
  }

  .advisory-box-text h2 {
    font-size: 1.5rem;
  }
}

/* ========================================
   ABOUT SNIPPET SECTION
   ======================================== */

.about-snippet {
  padding: 4rem 0 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
}

.about-statement {
  margin-bottom: 2.5rem;
}

.about-statement p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.about-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.capability-item {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1.5rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.capability-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-green);
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.capability-item:hover {
  background: white;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.capability-item:hover::before {
  opacity: 1;
}

.capability-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.capability-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-capabilities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-statement p {
    font-size: 1.15rem;
  }

  .about-capabilities {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   SERVICES GRID (Index Page)
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--light-gray);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: white;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary-green);
}

.service-card:hover .service-icon {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card .card-link {
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ========================================
   FEATURED PROJECTS (Work Page)
   ======================================== */

.flagship-card {
  background: var(--dark-bg);
  border-radius: 14px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

.flagship-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--primary-green);
  color: white;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.flagship-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.flagship-left h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.flagship-subtitle {
  color: var(--accent-yellow);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.flagship-desc {
  color: #BBBBBB;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.flagship-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.flagship-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  color: white;
  font-size: 0.78rem;
  font-weight: 500;
}

.flagship-tag svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.project-card {
  background: var(--light-gray);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  transition: all 0.3s ease;
}

.project-card:hover {
  background: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.project-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.project-card:hover .project-card-icon {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
}

.project-card h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.project-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.project-tags span {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-green);
}

.project-card:hover .project-tags span {
  background: var(--light-gray);
}

@media (max-width: 1024px) {
  .flagship-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .project-cards {
    grid-template-columns: 1fr;
  }

  .flagship-right {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PIPELINE CARDS (Work Page)
   ======================================== */

.pipeline-cards {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.pipeline-step {
  background: white;
  border: 1.5px solid #1B5E3B;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  min-width: 80px;
  transition: all 0.3s ease;
  cursor: default;
}

.pipeline-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 94, 59, 0.15);
  border-color: #1B5E3B;
  background: #f0f7f2;
}

.pipeline-step-highlight {
  border-color: #D4A017;
}

.pipeline-step-highlight:hover {
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.2);
  border-color: #D4A017;
  background: #fdf8ec;
}

.pipeline-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1B5E3B;
  margin-bottom: 0.35rem;
}

.pipeline-step-highlight .pipeline-num {
  color: #B8860B;
}

.pipeline-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1B5E3B;
}

.pipeline-step-highlight .pipeline-label {
  color: #B8860B;
}

.pipeline-arrow {
  display: flex;
  align-items: center;
}

/* ========================================
   APPROACH SECTION (Work Page)
   ======================================== */

.approach-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0F1419 100%);
  color: white;
}

.approach-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: start;
}

.approach-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  transition: all 0.3s ease;
}

.approach-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(27, 94, 59, 0.4);
  transform: translateX(4px);
}

.approach-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-green);
  min-width: 36px;
  line-height: 1;
  padding-top: 2px;
  font-family: var(--font-sans);
}

.approach-item h4 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.approach-item p {
  color: #AAAAAA;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .approach-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========================================
   INSIGHTS / ARTICLE CARDS
   ======================================== */

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

.article-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.article-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 8px 28px rgba(27, 94, 59, 0.1);
  transform: translateY(-3px);
  color: var(--text-dark);
  opacity: 1;
}

.article-category {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: var(--light-gray);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-green);
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

.article-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.article-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  color: var(--primary-green);
}

.article-source {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-green);
}

.article-card:hover .article-footer svg:last-child {
  transform: translate(2px, -2px);
  transition: transform 0.2s ease;
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

/* Hide elements for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
