/* MavenSource Global - Modern Stylish UI */
:root {
  --primary-green: #0F3D35;
  --primary-green-light: #154a41;
  --accent-maroon: #8F1A2F;
  --accent-maroon-light: #a81f38;
  --accent-maroon-tint: #d4546a;
  --accent-gold: #D4AF37;
  --accent-gold-light: #E8C547;
  --accent-teal: #3B9C9F;
  --bg-light: #FAFAFA;
  --bg-white: #ffffff;
  --text-dark: #333333;
  --text-muted: #555;
  --white: #ffffff;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out 0.3s forwards;
  transform-origin: center;
  opacity: 0;
}

.animate-delay-1 { animation-delay: 0.5s; opacity: 0; animation: fadeUp 0.8s ease-out 0.5s forwards; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.animate-on-scroll.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

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

section {
  padding: 2.5rem 0;
}

.section-header-left {
  text-align: left;
}

.section-header-left .gold-divider,
.section-header-left .maroon-divider {
  margin-left: 0;
}

/* Header */
.site-header {
  background: linear-gradient(180deg, var(--primary-green) 0%, #0a2d26 100%);
  color: var(--white);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  border-bottom: 2px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--transition);
}

.site-header:hover {
  box-shadow: 0 6px 32px rgba(0,0,0,0.25);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  background: white;
  border-radius: 50%;
  padding: 6px;
}

.site-logo .logo-img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

/* Nav overlay - hidden by default */
.nav-overlay {
  display: none;
}

/* Hamburger - hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.2);
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

nav {
  margin-left: auto;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

nav a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}

nav a:hover, nav a:focus {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

nav a:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Visual separation for legal links */
nav ul li:nth-last-child(3) {
  border-left: 1px solid rgba(255,255,255,0.35);
  margin-left: 0.35rem;
  padding-left: 0.65rem;
}

nav ul li:nth-last-child(-n+3) a {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
}

/* Responsive nav - hamburger menu */
@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--primary-green) 0%, #0a2d26 100%);
    margin: 0;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu li:nth-last-child(3) {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  .nav-menu li:nth-last-child(-n+3) a {
    font-size: 0.95rem;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 98;
    cursor: pointer;
  }

  body.nav-open .nav-overlay[aria-hidden="false"] {
    display: block;
  }
}

@media (max-width: 480px) {
  .site-header .container {
    padding: 0 1rem;
  }

  .site-logo .logo-img {
    height: 36px;
  }

  .site-logo {
    padding: 5px;
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 50%, #0a2d26 100%);
  color: var(--white);
  padding: 3.5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 Q20 20 40 40 Q60 60 80 40' fill='none' stroke='%23D4AF37' stroke-opacity='0.06' stroke-width='1'/%3E%3Cpath d='M0 60 Q40 40 80 60' fill='none' stroke='%238F1A2F' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(55%, 500px);
  height: 100%;
  background: url("../images/meeting-assessment.png") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
  opacity: 0.45;
  animation: float 6s ease-in-out infinite;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-headline {
  margin: 0;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 720px;
  letter-spacing: 0.01em;
  text-align: center;
}

.hero .gold-line {
  width: 80px;
  height: 4px;
  background: var(--accent-gold);
  margin: 1.25rem auto;
  border-radius: 2px;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.4);
}

.hero-headline .hero-accent {
  color: var(--accent-gold);
}

.hero-sub {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
  letter-spacing: 0.02em;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.hero-sub .hero-maroon {
  color: var(--accent-maroon-tint);
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.02em;
}

.hero .tagline-hero {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 0.5rem;
}

.hero .motto {
  font-size: 1rem;
  font-style: italic;
  color: var(--accent-gold);
  opacity: 0.95;
}

/* Curved wave divider */
.wave-divider {
  position: relative;
  height: 40px;
  margin: -1px 0 0;
  background: var(--primary-green);
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
}

.wave-divider path {
  fill: var(--bg-light);
}

/* Section styling */
.section-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--primary-green);
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.gold-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  margin: 0.75rem auto 0;
  border-radius: 2px;
  transition: width var(--transition);
}

.section-header:hover .gold-divider {
  width: 80px;
}

.section-header .maroon-divider {
  width: 40px;
  height: 2px;
  background: var(--accent-maroon);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Section: About - Two-column layout with highlight */
.section-about {
  background: linear-gradient(180deg, rgba(143, 26, 47, 0.05) 0%, rgba(15, 61, 53, 0.04) 100%);
  position: relative;
  overflow: hidden;
}

.section-about::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(45%, 400px);
  height: 100%;
  background: url("../images/hero-meeting.png") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
  opacity: 0.2;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2.5rem;
  max-width: 100%;
  margin-top: 1rem;
}

.about-layout p {
  margin: 0 0 0.4rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-layout p.about-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  margin: 0.5rem 0 0;
  font-size: 1.05rem;
  border-left: 4px solid var(--accent-gold);
}

.about-layout p.about-highlight strong {
  color: var(--accent-gold);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}

/* Section: Leadership - Split layout */
.section-leadership {
  background: var(--bg-white);
  padding: 2.5rem 0;
}

.founder-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin-top: 1.25rem;
  align-items: start;
}

.founder-sidebar {
  background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: var(--white);
  padding: 1.75rem;
  border-radius: 14px;
  position: sticky;
  top: 120px;
  box-shadow: var(--shadow-lg);
}

.founder-sidebar h3 {
  color: var(--white);
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.founder-title {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}

.founder-credentials {
  list-style: none;
  margin: 0;
  padding: 0;
}

.founder-credentials li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.founder-credentials li:last-child {
  border-bottom: none;
}

.founder-credentials i {
  color: var(--accent-gold);
  width: 20px;
  flex-shrink: 0;
}

.founder-content {
  background: var(--bg-light);
  padding: 1.75rem 2rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 61, 53, 0.08);
}

.founder-content p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

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

@media (max-width: 900px) {
  .founder-layout {
    grid-template-columns: 1fr;
  }
  .founder-sidebar {
    position: static;
  }
}

/* Section: Vision & Mission - Side-by-side cards */
.section-vision {
  background: linear-gradient(180deg, rgba(15, 61, 53, 0.03) 0%, rgba(143, 26, 47, 0.04) 100%);
  padding: 2.5rem 0;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.vision-card,
.mission-card {
  background: var(--bg-white);
  padding: 1.75rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-maroon), var(--accent-maroon-light));
}

.vision-card:hover,
.mission-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.vision-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.mission-card .vision-icon-wrap {
  background: linear-gradient(135deg, var(--accent-maroon), var(--accent-maroon-light));
}

.vision-card h3,
.mission-card h3 {
  font-family: var(--font-heading);
  color: var(--primary-green);
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.mission-card h3 {
  color: var(--accent-maroon);
}

.vision-card p,
.mission-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* Brand statement */
.brand-statement {
  background: var(--primary-green);
  color: var(--white);
  padding: 1.5rem 2rem;
  text-align: center;
  font-style: italic;
  font-size: 1.1rem;
  border-radius: 14px;
  max-width: 100%;
  margin: 0.75rem auto 0;
  transition: transform var(--transition);
}

.brand-statement:hover {
  transform: scale(1.01);
}

.brand-statement strong {
  color: var(--accent-gold);
}

/* Section: Values - Bento grid */
.section-values {
  background: linear-gradient(180deg, rgba(143, 26, 47, 0.04) 0%, rgba(15, 61, 53, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.section-values::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(40%, 350px);
  height: 100%;
  background: url("../images/meeting-handshake.png") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
  opacity: 0.15;
}

.values-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 1.25rem;
}

.value-item.value-featured {
  grid-column: span 2;
  grid-row: span 1;
}

.value-item {
  background: var(--bg-white);
  padding: 1.35rem 1.5rem;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height var(--transition);
}

.value-item.value-border-green::before { background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light)); }
.value-item.value-border-maroon::before { background: linear-gradient(90deg, var(--accent-maroon), var(--accent-maroon-light)); }
.value-item.value-border-gold::before { background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light)); }

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-item:hover::before { height: 6px; }

.value-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform var(--transition);
}

.value-item.value-border-green .value-icon { color: var(--primary-green); }
.value-item.value-border-maroon .value-icon { color: var(--accent-maroon); }
.value-item.value-border-gold .value-icon { color: var(--accent-gold); }

.value-item:hover .value-icon { transform: scale(1.1); }

.value-item h4 {
  font-family: var(--font-heading);
  color: var(--primary-green);
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.value-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .values-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-item.value-featured {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .values-bento {
    grid-template-columns: 1fr;
  }
  .value-item.value-featured {
    grid-column: span 1;
  }
}

/* Section: Services - Grid of boxes */
.section-services {
  background: var(--bg-white);
  padding: 2.5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.service-box {
  background: var(--bg-white);
  padding: 1.75rem;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 53, 0.08);
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height var(--transition);
}

.service-box.service-border-green::before { background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light)); }
.service-box.service-border-maroon::before { background: linear-gradient(90deg, var(--accent-maroon), var(--accent-maroon-light)); }
.service-box.service-border-gold::before { background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light)); }

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-box:hover::before { height: 6px; }

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform var(--transition);
}

.service-box.service-border-green .service-icon { color: var(--primary-green); }
.service-box.service-border-maroon .service-icon { color: var(--accent-maroon); }
.service-box.service-border-gold .service-icon { color: var(--accent-gold); }

.service-box:hover .service-icon { transform: scale(1.1); }

.service-box h3 {
  font-family: var(--font-heading);
  color: var(--primary-green);
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.service-box p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

/* Section: Industries - Zigzag alternating layout */
.section-industries {
  background: linear-gradient(180deg, rgba(15, 61, 53, 0.04) 0%, rgba(143, 26, 47, 0.03) 100%);
  padding: 2.5rem 0;
}

.industries-zigzag {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.industry-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  transition: all var(--transition);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.industry-row-right {
  grid-template-columns: 1fr 80px;
}

.industry-row-right .industry-icon {
  order: 2;
}

.industry-row-right .industry-text {
  order: 1;
}

.industry-row:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.01);
}

.industry-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.industry-row:hover .industry-icon {
  transform: scale(1.1) rotate(5deg);
}

.industry-row-left.industry-icon-green .industry-icon,
.industry-row-right.industry-icon-green .industry-icon {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
}

.industry-row-left.industry-icon-maroon .industry-icon,
.industry-row-right.industry-icon-maroon .industry-icon {
  background: linear-gradient(135deg, var(--accent-maroon), var(--accent-maroon-light));
}

.industry-row-left.industry-icon-gold .industry-icon,
.industry-row-right.industry-icon-gold .industry-icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

.industry-text h4 {
  margin: 0 0 0.5rem;
  color: var(--primary-green);
  font-size: 1.15rem;
}

.industry-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .industry-row,
  .industry-row-right {
    grid-template-columns: 1fr;
  }
  .industry-row-right .industry-icon {
    order: 1;
  }
  .industry-row-right .industry-text {
    order: 2;
  }
  .industry-icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
}

/* Section: Why - Vertical timeline with steps */
.section-why {
  background: var(--bg-white);
  padding: 2.5rem 0;
}

.why-timeline {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.why-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 32px;
  bottom: 32px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-green), var(--accent-gold));
  border-radius: 2px;
  opacity: 0.4;
}

.why-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(15, 61, 53, 0.08);
  transition: all var(--transition);
}

.why-step:last-child {
  border-bottom: none;
}

.why-step:hover {
  padding-left: 0.5rem;
}

.why-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.why-step.why-icon-green .why-step-num { border: 3px solid var(--primary-green); }
.why-step.why-icon-maroon .why-step-num { border: 3px solid var(--accent-maroon); color: var(--accent-maroon); }
.why-step.why-icon-gold .why-step-num { border: 3px solid var(--accent-gold); color: var(--accent-gold); }

.why-step-content {
  flex: 1;
}

.why-step-content .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: white;
  transition: transform var(--transition);
}

.why-step.why-icon-green .icon {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
}

.why-step.why-icon-maroon .icon {
  background: linear-gradient(135deg, var(--accent-maroon), var(--accent-maroon-light));
}

.why-step.why-icon-gold .icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

.why-step:hover .icon {
  transform: scale(1.1);
}

.why-step-content h4 {
  color: var(--primary-green);
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.why-step-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .why-timeline::before {
    left: 18px;
  }
  .why-step {
    grid-template-columns: 36px 1fr;
    gap: 1.25rem;
  }
  .why-step-num {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* Section: Contact - Split layout with CTA */
.section-contact.contact-section {
  background: linear-gradient(180deg, var(--primary-green) 0%, #0a2d26 100%);
  color: var(--white);
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2.5rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}

.contact-info .section-title {
  color: var(--white);
  text-align: left;
  margin-bottom: 0.5rem;
}

.contact-info .gold-divider {
  background: var(--accent-gold);
  margin: 0.75rem 0 1.5rem 0;
}

.contact-info p {
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 420px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}

.contact-btn {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  border: 2px solid var(--accent-gold);
  border-radius: 14px;
  transition: all var(--transition);
  font-size: 1.05rem;
}

.contact-btn i {
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.contact-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.contact-btn:hover i {
  transform: scale(1.15);
}

.contact-linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.4);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-info .section-title,
  .contact-info .gold-divider {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-info p {
    margin: 0 auto;
    text-align: center;
  }
}

/* Footer */
.site-footer {
  background: #0a2d26;
  color: var(--white);
  padding: 1.75rem 0;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: white;
  border-radius: 50%;
  padding: 6px;
}

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

.footer-motto {
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-gold);
  margin: 0;
}

.footer-motto em {
  color: var(--accent-maroon-light);
  font-style: italic;
}

.site-footer .links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer .links + div {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.site-footer a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

.site-footer a:hover {
  color: var(--accent-gold-light);
  transform: translateY(-2px);
}

/* Legal pages */
.legal-page {
  padding: 4rem 0;
}

.legal-page h1 {
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.legal-page h2 {
  color: var(--accent-maroon);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.legal-page p, .legal-page li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-page ul {
  padding-left: 1.5rem;
}

.legal-page .back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--accent-maroon);
  font-weight: 600;
  text-decoration: none;
}

.legal-page .back-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .section-about,
  .section-leadership,
  .section-vision,
  .section-values,
  .section-services,
  .section-industries,
  .section-why {
    padding: 2rem 0;
  }

  .hero {
    padding: 3.5rem 0 4.5rem;
  }

  .container {
    padding: 0 1.25rem;
  }
}
