/* ===================================
   HOME PAGE STYLES
   ===================================
   
   TABLE OF CONTENTS:
   1. CSS Variables & Custom Properties
   2. Hero Section
   3. Philosophy Section
   4. Three Pillars Section
   5. Business Network Section
   6. Statistics Section
   7. Transformation Stories Section
   8. Innovation & Sustainability Section
   9. Sustainability Metrics Section
   10. Leadership & Careers Section
   11. News/Insights Section
   12. Call to Action Section
   13. Utility Classes
   14. Animations & Keyframes
   15. Responsive Design
   
   =================================== */

/* ===================================
   1. CSS VARIABLES & CUSTOM PROPERTIES
   =================================== */

:root {
  /* Slider Variables */
  --gap: 1.25rem;
  --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --closed: 5rem;
  --open: 50rem;
  --accent: #ff6b35;

  /* Extended Color Palette */
  --primary-blue: #1a3a75;
  --secondary-cyan: #54a8d4;
  --accent-gold: #f39c12;
  --success-green: #27ae60;
  --dark-gray: #343a40;
  --light-gray: #f8f9fa;
  --pure-white: #ffffff;

  /* Section Spacing */
  --section-padding: 5rem 0;
  --section-padding-mobile: 3rem 0;

  /* Typography Sizes */
  --hero-title-size: 4.5rem;
  --section-title-size: 2.5rem;
  --card-title-size: 1.5rem;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.7s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* ===================================
   2. HERO SECTION
   =================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #2c5aa0 100%);
  margin-top: var(--header-height);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#networkCanvas {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--pure-white);
  padding: 2rem 0;
}

.hero-title {
  font-size: var(--hero-title-size);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-tagline {
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
  margin-bottom: 2rem;
}

/* ===================================
   3. PHILOSOPHY SECTION
   =================================== */

.philosophy-section {
  padding: var(--section-padding);
  background: var(--light-gray);
  position: relative;
}

.philosophy-quote {
  position: relative;
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 3rem 2rem;
}

.quote-mark {
  font-size: 6rem;
  line-height: 1;
  color: var(--secondary-cyan);
  opacity: 0.3;
  font-family: Georgia, serif;
  position: absolute;
  top: 0;
  left: 0;
}

.quote-mark.closing {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}

.quote-text {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--dark-gray);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.founder-statement {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--pure-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent-gold);
}

.founder-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.founder-attribution {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-blue);
  font-style: italic;
  text-align: right;
}

/* ===================================
   4. THREE PILLARS SECTION
   =================================== */

.pillars-section {
  padding: var(--section-padding);
  background: var(--pure-white);
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.pillar-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  background: var(--light-gray);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-cyan),
    var(--primary-blue)
  );
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: var(--pure-white);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  font-size: 4rem;
  color: var(--secondary-cyan);
  margin-bottom: 1.5rem;
  transition: all var(--transition-medium);
}

.pillar-card:hover .pillar-icon {
  color: var(--primary-blue);
  transform: scale(1.1) rotate(5deg);
}

.pillar-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pillar-description {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--secondary-cyan);
  margin-bottom: 1rem;
}

.pillar-detail {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.pillars-connector {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 2px;
  color: var(--secondary-cyan);
  pointer-events: none;
  opacity: 0.25;
  display: none; /* Hidden on mobile, shown on desktop */
  z-index: 1;
  transform: translateY(-50%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   5. BUSINESS NETWORK SECTION
   =================================== */

.network-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.network-card {
  position: relative;
  perspective: 1000px;
}

.network-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform var(--transition-medium);
  transform-style: preserve-3d;
}

.network-card-front {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.network-card-front::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.network-card[data-color="blue"] .network-card-front::before {
  background: var(--primary-blue);
}

.network-card[data-color="teal"] .network-card-front::before {
  background: var(--secondary-cyan);
}

.network-card[data-color="gold"] .network-card-front::before {
  background: var(--accent-gold);
}

.network-card:hover .network-card-front {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.network-card:hover .network-card-front::before {
  transform: scaleX(1);
}

.network-icon {
  font-size: 4rem;
  color: var(--secondary-cyan);
  margin-bottom: 1.5rem;
  transition: all var(--transition-medium);
}

.network-card[data-color="blue"] .network-icon {
  color: var(--primary-blue);
}

.network-card[data-color="teal"] .network-icon {
  color: var(--secondary-cyan);
}

.network-card[data-color="gold"] .network-icon {
  color: var(--accent-gold);
}

.network-card:hover .network-icon {
  transform: scale(1.15) rotate(-5deg);
}

.network-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.network-company {
  font-size: 1.125rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.network-services {
  list-style: none;
  margin-bottom: 2rem;
}

.network-services li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--text-color);
}

.network-services li i {
  color: var(--success-green);
  font-size: 1.25rem;
}

.network-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.network-link:hover {
  color: var(--secondary-cyan);
  gap: 0.75rem;
}

.network-link i {
  transition: transform var(--transition-fast);
}

.network-link:hover i {
  transform: translateX(5px);
}

.network-card-expand .network-expand-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 2rem;
}

/* ===================================
   5. BUSINESS NETWORK SECTION (SLIDER)
   =================================== */

.network-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
  color: var(--pure-white);
}

.network-section .section-title {
  color: var(--pure-white);
}

.network-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.slider {
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
}
.track {
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
  justify-content: center;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px;
}
.track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  flex: 0 0 var(--closed);
  height: 26rem;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: flex-basis var(--speed), transform var(--speed);
}
.project-card[active] {
  flex-basis: var(--open);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.project-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(75%);
  transition: filter 0.3s, transform var(--speed);
}
.project-card:hover .project-card__bg {
  filter: brightness(0.9) saturate(100%);
  transform: scale(1.06);
}

.project-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}
.project-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 1.35rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.project-card__thumb,
.project-card__desc,
.project-card__btn {
  display: none;
}

.project-card[active] .project-card__content {
  flex-direction: row;
  align-items: center;
  padding: 1.2rem 2rem;
  gap: 1.1rem;
}
.project-card[active] .project-card__title {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 2.4rem;
}
.project-card[active] .project-card__thumb,
.project-card[active] .project-card__desc,
.project-card[active] .project-card__btn {
  display: block;
}

.project-card__thumb {
  width: 180px;
  height: 269px;
  border-radius: 0.45rem;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.project-card__desc {
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
  max-width: 16rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.9),
    0 4px 12px rgba(0, 0, 0, 0.8);
}
.project-card__btn {
  padding: 0.55rem 1.3rem;
  margin-top: 1rem;
  border: none;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.project-card__btn:hover {
  background: #ff824f;
}

@media (max-width: 767px) {
  :root {
    --closed: 4rem;
    --open: 22rem;
  }
  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
  }
  .project-card {
    height: 20rem;
  }
  .project-card__title {
    font-size: 1.1rem;
    writing-mode: horizontal-tb;
    transform: none;
    text-align: center;
    padding-inline: 0.3rem;
  }
  .nav-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  :root {
    --closed: 100%;
    --open: 100%;
    --gap: 0.8rem;
  }

  .head {
    padding: 30px 15px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .slider {
    padding: 0 15px;
  }

  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    gap: 0.8rem;
    padding-bottom: 20px;
  }

  .project-card {
    height: auto;
    min-height: 80px;
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: start;
  }

  .project-card[active] {
    min-height: 300px;
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .project-card__content {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
  }

  .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.2rem;
    margin-right: auto;
  }

  .project-card__thumb,
  .project-card__desc,
  .project-card__btn {
    display: none;
  }

  .project-card[active] .project-card__content {
    align-items: flex-start;
    padding: 1.5rem;
  }

  .project-card[active] .project-card__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

  .project-card[active] .project-card__thumb {
    width: 200px;
    height: 267px;
    border-radius: 0.35rem;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__btn {
    align-self: center;
    width: 100%;
    text-align: center;
    padding: 0.7rem;
  }
}

/* ===================================
   6. INNOVATION & SUSTAINABILITY SECTION
   =================================== */

.innovation-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary-blue) 0%, #2c5aa0 100%);
  color: var(--pure-white);
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
}

.innovation-column {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-medium);
}

.innovation-column:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.innovation-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.sustainability .innovation-icon {
  color: var(--success-green);
}

.innovation-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.innovation-intro {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.innovation-list {
  list-style: none;
}

.innovation-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.innovation-list li:last-child {
  border-bottom: none;
}

.innovation-list li i {
  color: var(--accent-gold);
  font-size: 1.25rem;
}

/* ===================================
   7. UTILITY CLASSES
   =================================== */

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1.125rem 3rem;
  font-size: 0.938rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--body-font);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left var(--transition-medium);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

/* Remove any pseudo-element arrows */
.btn::after {
  display: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e67e22 100%);
  color: var(--pure-white);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  border-color: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  border-color: var(--pure-white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--pure-white);
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-light {
  background: var(--pure-white);
  color: var(--primary-blue);
  border-color: var(--pure-white);
}

.btn-light:hover {
  background: var(--accent-gold);
  color: var(--pure-white);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.btn-outline-light:hover {
  background: var(--pure-white);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================================
   12. ANIMATIONS & KEYFRAMES
   =================================== */

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

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal animations (applied via JavaScript) */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   13. RESPONSIVE DESIGN
   =================================== */

/* Mobile devices (up to 576px) */
@media screen and (max-width: 576px) {
  :root {
    --hero-title-size: 2.5rem;
    --section-title-size: 2rem;
    --section-padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    padding: 0.875rem 2rem;
  }

  .quote-mark {
    font-size: 4rem;
  }

  .quote-text {
    font-size: 1.25rem;
  }

  .founder-statement {
    padding: 2rem 1.5rem;
  }

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

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

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

  .stat-number {
    font-size: 3rem;
  }

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

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

  .innovation-column {
    padding: 2rem 1.5rem;
  }

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

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.125rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Tablets (577px - 768px) */
@media screen and (min-width: 577px) and (max-width: 768px) {
  :root {
    --hero-title-size: 3rem;
    --section-title-size: 2.25rem;
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* Tablets and small desktops (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillars-connector {
    display: block;
  }

  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .innovation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop (1025px and above) */
@media screen and (min-width: 1025px) {
  .container {
    margin-inline: auto;
  }

  .pillars-connector {
    display: block;
  }

  .network-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Large Desktop (1400px and above) */
@media screen and (min-width: 1400px) {
  :root {
    --hero-title-size: 5rem;
    --section-title-size: 3rem;
  }

  .container {
    max-width: 1320px;
  }
}

/* ===================================
   ACCESSIBILITY & REDUCED MOTION
   =================================== */

/* Focus states for keyboard navigation */
.btn:focus,
.network-link:focus,
.story-link:focus,
.news-link:focus {
  outline: 3px solid var(--accent-gold);
  outline-offset: 4px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-indicator {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .pillar-card,
  .network-card-front,
  .story-card,
  .news-card {
    border: 2px solid currentColor;
  }
}

/* ===================================
   LEADERSHIP & CAREERS SECTION
   =================================== */

.leadership-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #f8f9fa 0%, var(--pure-white) 100%);
}

.leadership-content {
  margin-top: 3rem;
}

/* Founder's Vision Redesigned (No Photo) */
.founder-vision-redesigned {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}

.vision-quote-container {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #2c5aa0 100%);
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.vision-quote-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.quote-decoration {
  position: relative;
  z-index: 1;
}

.quote-decoration i {
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.founder-main-quote {
  font-size: 1.75rem;
  line-height: 1.6;
  font-weight: 600;
  color: var(--pure-white);
  margin: 0;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.quote-attribution {
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.attribution-line {
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin-bottom: 1rem;
}

.attribution-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 0.25rem;
}

.attribution-company {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.vision-statement {
  padding: 2rem 0;
}

.vision-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.vision-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-cyan), transparent);
}

.vision-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

/* Leadership Principles */
.leadership-principles {
  margin-top: 5rem;
}

.principles-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--title-color);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.principles-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-cyan),
    transparent
  );
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.principle-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  background: var(--pure-white);
  border: 2px solid #e9ecef;
  transition: all var(--transition-medium);
  overflow: hidden;
}

.principle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-cyan),
    var(--primary-blue)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.principle-card:hover::before {
  transform: scaleX(1);
}

.principle-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-cyan);
}

.principle-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  transition: all var(--transition-medium);
}

.principle-card:hover .principle-number {
  color: rgba(84, 168, 212, 0.1);
}

.principle-content {
  position: relative;
  z-index: 1;
}

.principle-icon {
  font-size: 3rem;
  color: var(--secondary-cyan);
  margin-bottom: 1.5rem;
  transition: all var(--transition-medium);
}

.principle-card:hover .principle-icon {
  color: var(--primary-blue);
  transform: scale(1.1) rotate(5deg);
}

.principle-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 1rem;
}

.principle-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* Careers Section */
.careers-section {
  margin-top: 5rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: var(--pure-white);
}

.careers-header {
  text-align: center;
  margin-bottom: 3rem;
}

.careers-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.careers-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.careers-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.careers-cta {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.cta-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.cta-subtext {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1.5rem;
}

/* Responsive Design for Leadership Section */
@media screen and (max-width: 1024px) {
  .founder-vision-redesigned {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vision-quote-container {
    padding: 3rem 2.5rem;
  }

  .founder-main-quote {
    font-size: 1.5rem;
  }

  .principles-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .careers-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .vision-quote-container {
    padding: 2.5rem 2rem;
  }

  .quote-decoration i {
    font-size: 3rem;
  }

  .founder-main-quote {
    font-size: 1.35rem;
  }

  .vision-heading {
    font-size: 1.85rem;
  }

  .vision-text {
    font-size: 1rem;
  }

  .principles-heading {
    font-size: 1.85rem;
  }

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

  .principle-card {
    padding: 2rem 1.5rem;
  }

  .principle-number {
    font-size: 3rem;
    top: 1rem;
    right: 1rem;
  }

  .careers-section {
    padding: 3rem 2rem;
  }

  .careers-title {
    font-size: 2rem;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ===================================
   9. SUSTAINABILITY METRICS SECTION
   =================================== */

.sustainability-metrics {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.sustainability-metrics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23cbd5e0" opacity="0.3"/></svg>');
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.5;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.metric-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--success-green),
    var(--secondary-cyan)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.metric-card:hover::before {
  transform: scaleX(1);
}

.metric-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all var(--transition-medium);
}

.metric-icon.environmental {
  background: linear-gradient(
    135deg,
    rgba(39, 174, 96, 0.1),
    rgba(39, 174, 96, 0.2)
  );
  color: var(--success-green);
}

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

.metric-icon i {
  font-size: 2rem;
}

.metric-content {
  text-align: left;
}

.metric-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-cyan)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 0.75rem;
}

.metric-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 1.25rem;
}

.metric-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.breakdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #495057;
}

.breakdown-item i {
  color: var(--secondary-cyan);
  font-size: 1rem;
}

/* Sustainability Highlights */
.sustainability-highlights {
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.highlight-card {
  background: linear-gradient(135deg, var(--primary-blue), #2c5aa0);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--pure-white);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-lg);
}

.highlight-card i {
  font-size: 3rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.highlight-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.highlight-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

/* Sustainability CTA Section */
.sustainability-cta-section {
  text-align: center;
  padding: 3rem;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.sustainability-cta-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.sustainability-cta-section p {
  font-size: 1.125rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.sustainability-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sustainability-cta-buttons .btn {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.sustainability-cta-buttons .btn-primary {
  background: var(--success-green);
  color: var(--pure-white);
  border: none;
}

.sustainability-cta-buttons .btn-primary:hover {
  background: #229954;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.sustainability-cta-buttons .btn-secondary {
  background: var(--secondary-cyan);
  color: var(--pure-white);
  border: none;
}

.sustainability-cta-buttons .btn-secondary:hover {
  background: #3d8fb8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(84, 168, 212, 0.3);
}

.sustainability-cta-buttons .btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.sustainability-cta-buttons .btn-outline:hover {
  background: var(--primary-blue);
  color: var(--pure-white);
  transform: translateY(-2px);
}

/* Responsive Design for Sustainability Metrics */
@media screen and (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .metric-card {
    padding: 2rem;
  }

  .metric-number {
    font-size: 2.25rem;
  }

  .sustainability-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .sustainability-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .sustainability-metrics {
    padding: 4rem 0;
  }

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

  .metric-card {
    padding: 1.75rem;
  }

  .metric-icon {
    width: 60px;
    height: 60px;
  }

  .metric-icon i {
    font-size: 1.75rem;
  }

  .metric-number {
    font-size: 2rem;
  }

  .metric-label {
    font-size: 1.125rem;
  }

  .highlight-card {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    gap: 1.5rem;
  }

  .highlight-card i {
    font-size: 2.5rem;
  }

  .highlight-card h4 {
    font-size: 1.25rem;
  }

  .sustainability-cta-section {
    padding: 2rem 1.5rem;
  }

  .sustainability-cta-section h3 {
    font-size: 1.5rem;
  }

  .sustainability-cta-section p {
    font-size: 1rem;
  }
}

/* ===================================
   END OF HOME PAGE STYLES
   =================================== */
