/* ==========================================================================
   BEGREEN - MODERN DESIGN SYSTEM & STYLESHEET
   Based on Reference Design System (Green/Emerald/Forest Theme)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Primary Colors */
  --primary-forest: #0B5D3B;     /* Deep forest green - primary brand & headers */
  --primary-emerald: #18A957;    /* Leaf / Emerald green - accents, badges, icons */
  --primary-dark: #061C14;       /* Deepest forest green / slate navy */
  --primary-lime: #8BCF3F;       /* High-energy lime accent */
  --accent-gold: #F5B800;        /* Solar gold for high-contrast action buttons */
  --accent-gold-hover: #E5A800;

  /* Background & Surface Tints */
  --bg-page: #FFFFFF;
  --bg-soft-tint: #F0FDF4;       /* Mint tint for alternate sections */
  --bg-surface: #FFFFFF;
  --bg-dark-footer: #061C14;     /* Deep dark footer */
  --bg-dark-card: #0A261B;       /* Dark card surface */
  --bg-card-hover: #F8FAFC;
  --bg-pill: #E8F8F0;

  /* Typography Colors */
  --text-headline: #1E293B;      /* Rich charcoal headline */
  --text-body: #475569;          /* Readable slate body */
  --text-muted: #64748B;         /* Muted annotations & metadata */
  --text-light: #FFFFFF;
  --text-on-dark-muted: #94A3B8;

  /* Borders & Dividers */
  --line: #E2E8F0;
  --line-green: #A7F3D0;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 20px -2px rgba(11, 93, 59, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 14px 34px -4px rgba(11, 93, 59, 0.14), 0 6px 12px -2px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 20px 40px -10px rgba(6, 28, 20, 0.2);

  /* Gradients */
  --gradient-nature: linear-gradient(135deg, #0B5D3B 0%, #18A957 100%);
  --gradient-nature-reverse: linear-gradient(135deg, #18A957 0%, #0B5D3B 100%);
  --gradient-dark-forest: linear-gradient(180deg, #061C14 0%, #0B3322 100%);
  --gradient-card-soft: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
  --gradient-gold: linear-gradient(135deg, #F5B800 0%, #E5A800 100%);
  --gradient-sunset: linear-gradient(135deg, #0B5D3B 0%, #104C33 50%, #061C14 100%);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Layout */
  --container-max-width: 1220px;
  --header-height: 94px;
  --topbar-height: 38px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  font-size: 15px;
  color: var(--text-body);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-headline);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary-emerald);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-forest);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--primary-forest);
  color: #FFFFFF;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: var(--radius-sm);
  transition: top var(--transition-fast);
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

/* --------------------------------------------------------------------------
   3. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 64px 0;
}

.section.compact {
  padding: 48px 0;
}

.section-soft,
.section.section-soft,
.section.soft-section {
  background-color: var(--bg-soft-tint);
}

.section.section-dark {
  background-color: var(--bg-dark-footer);
  color: #FFFFFF;
}

.section.section-dark h2,
.section.section-dark h3,
.section.section-dark p {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY & SECTION HEADINGS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-emerald);
  margin-bottom: 12px;
}

.eyebrow.light {
  color: var(--primary-lime);
}

.section-intro {
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.section-intro.center {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.section-intro > div:first-child {
  max-width: 680px;
}

.section-intro > p {
  max-width: 480px;
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

.section-title {
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--text-headline);
  line-height: 1.25;
  margin-bottom: 10px;
}

.section-title.left {
  text-align: left;
}

.section-title.center {
  text-align: center;
}

.section-title span,
h1 span,
h2 span {
  color: var(--primary-emerald);
}

.section-title.light,
h2.light {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   5. BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary,
.btn.btn-primary,
.btn-green,
.btn.btn-green {
  background-color: var(--primary-emerald);
  color: #FFFFFF;
  border-color: var(--primary-emerald);
  box-shadow: 0 4px 14px rgba(24, 169, 87, 0.3);
}

.btn-primary:hover,
.btn-green:hover {
  background-color: var(--primary-forest);
  border-color: var(--primary-forest);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 93, 59, 0.4);
}

.btn-gold,
.btn.btn-gold {
  background: var(--gradient-gold);
  color: #061C14;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(245, 184, 0, 0.35);
}

.btn-gold:hover {
  background: var(--accent-gold-hover);
  color: #061C14;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.45);
}

.btn-outline-light,
.btn.btn-outline-light {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background-color: #FFFFFF;
  color: var(--primary-forest);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-dark,
.btn.btn-outline-dark {
  background-color: transparent;
  color: var(--primary-forest);
  border-color: var(--primary-forest);
}

.btn-outline-dark:hover {
  background-color: var(--primary-forest);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--primary-emerald);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.text-link:hover {
  color: var(--primary-forest);
  gap: 12px;
}

/* --------------------------------------------------------------------------
   6. TOP UTILITY BAR & HEADER NAVIGATION
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: #061C14;
  color: #94A3B8;
  font-size: 0.8125rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #94A3B8;
}

.top-bar-item a {
  color: #94A3B8;
}

.top-bar-item a:hover {
  color: var(--primary-lime);
}

.top-bar-item i {
  color: var(--primary-emerald);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 0;
  flex-shrink: 0;
}

.logo-img,
.site-logo img {
  height: 72px;
  max-height: 72px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.logo-link:hover .logo-img,
.logo-link:hover .site-logo img {
  transform: scale(1.03);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-headline);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav a:hover {
  color: var(--primary-emerald);
  background-color: var(--bg-soft-tint);
}

.main-nav a.active {
  color: var(--primary-forest);
  background-color: var(--bg-pill);
  font-weight: 600;
}

.nav-cta {
  margin-left: 8px;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--text-headline);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-toggle:hover {
  color: var(--primary-emerald);
  background-color: var(--bg-soft-tint);
}

/* --------------------------------------------------------------------------
   7. PAGE HERO SECTIONS
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: 108px 0 96px;
  background-color: var(--primary-dark);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.78) 28%,
    rgba(0, 0, 0, 0.54) 48%,
    rgba(0, 0, 0, 0.20) 64%,
    transparent 76%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.page-hero::after {
  display: none;
}

.page-hero .shell {
  position: relative;
  z-index: 2;
}

/* Specific Page Hero Background Images */
.page-hero.home-hero {
  background-image: url('../../images/slider/homepage-slider.webp');
}

.page-hero.about-hero {
  background-image: url('../../images/core-expertise.webp');
}

.page-hero.solutions-hero {
  background-image: url('../../images/slider/products-slider.webp');
}

.page-hero.industries-hero,
.page-hero.sunset {
  background-image: url('../../images/slider/industry-slider.webp');
}

.page-hero.projects-hero {
  background-image: url('../../images/Solar%20Infrastructure%20Solutions.webp');
}

.page-hero.product-catalogue-hero {
  background-image: url('../../images/battery-storage-system.webp');
}

.page-hero.partner-hero {
  background-image: url('../../images/slider/partner-slider.webp');
}

.page-hero.career-hero {
  background-image: url('../../images/slider/career-slider.webp');
}

.page-hero.contact-hero {
  background-image: url('../../images/slider/contact-slider.webp');
}

.page-hero-copy {
  max-width: 660px;
}

.page-hero-copy h1 {
  font-size: 3.125rem;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.page-hero-copy h1 span {
  color: var(--primary-lime);
}

.page-hero-copy h2 {
  font-size: 1.25rem;
  color: #D1FAE5;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.page-hero-copy p {
  font-size: 1.0625rem;
  color: #F8FAFC;
  line-height: 1.65;
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.page-hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-lime);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

/* Glass Badge Hero Buttons */
.page-hero .btn,
.page-hero-copy .btn,
.page-hero .product-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  color: #FFFFFF !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.page-hero .btn:hover,
.page-hero-copy .btn:hover,
.page-hero .product-actions .btn:hover {
  background-color: var(--primary-emerald) !important;
  background: var(--primary-emerald) !important;
  border-color: var(--primary-emerald) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 169, 87, 0.45);
}

.page-hero .btn:active,
.page-hero-copy .btn:active,
.page-hero .product-actions .btn:active {
  transform: translateY(0);
}

.hero-mini-row,
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-mini-row span,
.about-stats span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-hero.compact-hero {
  padding: 68px 0 60px;
  background-image: url('../../images/slider/homepage-slider.webp');
}

.page-hero.compact-hero h1 {
  font-size: 2.25rem;
}

/* --------------------------------------------------------------------------
   8. SIGNATURE STATS COUNTER BANNER (Space Grotesk)
   -------------------------------------------------------------------------- */
.stats-counter-banner {
  background: var(--gradient-nature);
  color: #FFFFFF;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.stats-counter-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stats-counter-item {
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-counter-item:last-child {
  border-right: 0;
}

.stats-counter-number {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stats-counter-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #D1FAE5;
  font-weight: 500;
  line-height: 1.35;
}

/* Floating Stats Strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: -48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
}

.stats-strip article {
  background: #FFFFFF;
  padding: 24px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.stats-strip article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--line-green);
}

.stats-strip article img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  object-fit: contain;
}

.stats-strip article strong {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-size: 1.625rem;
  color: var(--primary-forest);
  font-weight: 700;
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stats-strip article span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.25;
}

/* --------------------------------------------------------------------------
   9. SOLUTION CARDS & GRID
   -------------------------------------------------------------------------- */
.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.solution-card {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--line-green);
}

.solution-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.solution-head .round-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: var(--bg-pill);
  color: var(--primary-emerald);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.solution-head strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  color: var(--primary-forest);
  font-weight: 700;
}

.solution-head h3 {
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0;
  color: var(--text-headline);
}

.solution-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: transform var(--transition-normal);
}

.solution-card:hover .solution-photo {
  transform: scale(1.02);
}

.solution-card .mini-check-list {
  margin-top: auto;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   10. SECTOR & INDUSTRY CARDS
   -------------------------------------------------------------------------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-card {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--line-green);
}

.industry-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.industry-card:hover .industry-image img {
  transform: scale(1.06);
}

.industry-cdn-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-nature);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.industry-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.industry-body h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--text-headline);
}

.industry-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.industry-body .mini-check-list {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   11. CHECKLISTS & MINI-BULLETS
   -------------------------------------------------------------------------- */
.mini-check-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.mini-check-list li,
.check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.45;
}

.mini-check-list li::before,
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bg-pill);
  color: var(--primary-emerald);
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.mini-check-list.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

/* --------------------------------------------------------------------------
   12. ABOUT PAGE OVERVIEWS & DOMAINS
   -------------------------------------------------------------------------- */
.about-overview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}

.about-card {
  padding: 36px;
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-card-accent {
  background: var(--gradient-nature);
  color: #FFFFFF;
  border-color: transparent;
}

.about-card-accent h2,
.about-card-accent p,
.about-card-accent li {
  color: #FFFFFF;
}

.about-card-accent .check-list li::before {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.about-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-pill-card {
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-pill-card .about-cdn-icon {
  margin-bottom: 20px;
}

.about-domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-domain-card {
  padding: 28px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.about-domain-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-green);
  box-shadow: var(--shadow-card-hover);
}

.about-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.about-partner-card {
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-alignment-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
}

/* --------------------------------------------------------------------------
   13. BOARD OF DIRECTORS & TEAM
   -------------------------------------------------------------------------- */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.board-card {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: left;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.board-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--line-green);
}

.board-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background-color: #F1F5F9;
}

.board-card-body {
  padding: 24px;
}

.person-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 4px;
}

.person-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-emerald);
  margin-bottom: 4px;
}

.board-cred {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 10px;
}

/* Board Modal */
.board-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.board-modal[hidden] {
  display: none;
}

.board-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 28, 20, 0.75);
  backdrop-filter: blur(4px);
}

.board-modal-dialog {
  position: relative;
  z-index: 10;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: var(--shadow-elevated);
}

.board-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #FFFFFF;
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.board-modal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

.board-modal-portrait img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   14. PROCESS & APPROACH ROWS
   -------------------------------------------------------------------------- */
.process-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.process-item {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-item img,
.process-cdn-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.process-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--primary-emerald);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   15. WHY CHOOSE BAND & ICON ROWS
   -------------------------------------------------------------------------- */
.why-band {
  background: var(--gradient-sunset);
  color: #FFFFFF;
  padding: 72px 0;
}

.why-band h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
}

.why-band-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.why-band-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
}

.why-band-grid article:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.why-cdn-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-nature);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.why-band-grid h3 {
  font-size: 0.875rem;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.icon-row article {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.icon-row article:hover {
  transform: translateY(-4px);
  border-color: var(--line-green);
  box-shadow: var(--shadow-card-hover);
}

.icon-row-cdn-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background-color: var(--bg-pill);
  color: var(--primary-emerald);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.icon-row h3 {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   16. PARTNERS PAGE & SHOWCASE
   -------------------------------------------------------------------------- */
.partner-two {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.partner-two article,
.featured-partner-grid article {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.partner-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.partner-two img,
.featured-partner-grid img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.featured-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.partner-label {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-pill);
  color: var(--primary-forest);
  margin-bottom: 16px;
}

.why-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.world-map img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   17. PRODUCTS & CATALOGUE
   -------------------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-body);
}

.breadcrumb a:hover {
  color: var(--primary-emerald);
}

.breadcrumb span[aria-current="page"] {
  color: var(--primary-forest);
  font-weight: 600;
}

.catalogue-highlights {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.catalogue-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.catalogue-highlights span strong {
  color: var(--primary-lime);
  font-weight: 700;
}

.product-tabbar {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.product-tab {
  padding: 12px 24px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-headline);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.product-tab strong {
  background: #F1F5F9;
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.product-tab:hover {
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
}

.product-tab.is-active {
  background: var(--primary-forest);
  color: #FFFFFF;
  border-color: var(--primary-forest);
}

.product-tab.is-active strong {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.category-panel-copy {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.category-panel-copy h3 {
  font-size: 1.5rem;
  color: var(--text-headline);
}

.category-panel-copy p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--line-green);
}

.product-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  max-height: 190px;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-number {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(6, 28, 20, 0.85);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-emerald);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.product-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-card-body .text-link {
  margin-top: auto;
}

/* Product Single Page */
.product-hero {
  padding: 48px 0 56px;
  background: var(--bg-soft-tint);
  border-bottom: 1px solid var(--line);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.product-main-image {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 380px;
}

.product-main-image img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  display: block;
}

.product-hero-copy h1 {
  font-size: 2.375rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.product-lead {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.product-meta span {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-forest);
  background: var(--bg-pill);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
}

.product-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.hero-feature-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9375rem;
  color: var(--text-body);
}

.hero-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-emerald);
  font-weight: 700;
}

.product-section-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.product-section-nav .shell {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-section-nav .shell::-webkit-scrollbar {
  display: none;
}

.product-section-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-headline);
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.product-section-nav a:hover {
  color: var(--primary-emerald);
  border-bottom-color: var(--primary-emerald);
}

.narrow-content {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.narrow-content h2 {
  font-size: 1.875rem;
  margin-bottom: 20px;
}

.narrow-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 18px;
}

.product-spec-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.spec-heading {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.spec-heading p {
  color: var(--text-muted);
  margin: 14px 0 24px;
  line-height: 1.6;
}

.spec-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-card);
  background: #FFFFFF;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 440px;
}

.spec-table th,
.spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.9375rem;
}

.spec-table thead th {
  background: #F8FAFC;
  font-weight: 700;
  color: var(--text-headline);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-table tbody tr:last-child th,
.spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.spec-table tbody th {
  font-weight: 600;
  color: var(--text-headline);
  width: 38%;
  background: #FAFAFA;
}

.two-detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.detail-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.detail-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.55;
}

.detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-emerald);
  font-weight: 700;
}

.detail-list.benefit-list li::before {
  content: '★';
  color: var(--accent-gold);
}

.detail-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.detail-tile-grid article {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.detail-tile-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--line-green);
  box-shadow: var(--shadow-card-hover);
}

.detail-tile-grid article span {
  display: inline-block;
  color: var(--primary-emerald);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.detail-tile-grid article h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.detail-tile-grid article p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.model-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--line-green);
}

.model-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 14px;
  color: var(--primary-forest);
}

.model-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.model-card li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-closing {
  background: var(--bg-soft-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  text-align: center;
}

.product-closing .shell {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-closing img {
  height: 48px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.product-closing p {
  font-size: 1.125rem;
  color: var(--text-headline);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Related Products & Case Studies Shared Section */
.related-products {
  padding: 64px 0;
}

.related-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.related-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.related-product-grid article {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.related-product-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--line-green);
}

.related-image {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  background: #F8FAFC;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.related-product-grid article:hover .related-image img {
  transform: scale(1.05);
}

.related-product-grid article h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.related-product-grid article p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.related-product-grid article .text-link {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   18. PROJECTS PORTFOLIO & DETAILS
   -------------------------------------------------------------------------- */
.projects-hero-grid .product-main-image {
  padding: 0;
  background: transparent;
}

.projects-hero-grid .product-main-image img,
.project-main-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.project-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-detail-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  transition: all var(--transition-normal);
  align-items: stretch;
}

.project-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--line-green);
}

.project-detail-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.project-detail-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.project-detail-body .tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-forest);
  background: var(--bg-pill);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.project-detail-body h3 {
  font-size: 1.1875rem;
  margin-bottom: 6px;
}

.project-detail-body .place {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.project-detail-body p {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.project-detail-body .text-link {
  margin-top: auto;
}

.mini-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mini-project-grid article {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.mini-project-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--line-green);
  box-shadow: var(--shadow-card-hover);
}

.mini-project-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.mini-project-grid span {
  display: inline-block;
  margin: 16px 20px 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-emerald);
}

.mini-project-grid h3 {
  font-size: 1rem;
  margin: 0 20px 8px;
}

.mini-project-grid p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 20px 16px;
}

.project-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.partner-logos-inline {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.partner-logos-inline img {
  height: 38px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.partner-logos-inline img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.image-cta {
  background: var(--gradient-dark-forest);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.image-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(24, 169, 87, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.image-cta h2 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.image-cta p {
  color: #CBD5E1;
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.image-cta img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.pill-row button {
  padding: 8px 18px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-headline);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pill-row button:hover {
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
}

.pill-row button.active {
  background: var(--primary-forest);
  color: #FFFFFF;
  border-color: var(--primary-forest);
}

/* --------------------------------------------------------------------------
   19. CAREERS PAGE
   -------------------------------------------------------------------------- */
.values-why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-item {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.value-cdn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-pill);
  color: var(--primary-emerald);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  margin-bottom: 14px;
}

.value-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.job-list {
  display: grid;
  gap: 16px;
}

.job-row {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 48px 1.4fr 1.8fr 1fr auto;
  align-items: center;
  gap: 24px;
  transition: all var(--transition-normal);
}

.job-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--line-green);
}

.job-cdn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-pill);
  color: var(--primary-emerald);
  display: grid;
  place-items: center;
}

.culture-benefits {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.culture-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-grid article {
  text-align: center;
  padding: 16px 12px;
  background: #F8FAFC;
  border-radius: var(--radius-md);
}

.benefit-cdn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-pill);
  color: var(--primary-emerald);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
}

.benefit-grid h3 {
  font-size: 0.8125rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   20. CONTACT PAGE & FORMS
   -------------------------------------------------------------------------- */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
}

.contact-strip article {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-cdn-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--bg-pill);
  color: var(--primary-emerald);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
}

.contact-strip h3 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.contact-strip p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
}

.contact-form {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background-color: #F8FAFC;
  color: var(--text-headline);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--primary-emerald);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(24, 169, 87, 0.12);
}

.form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  cursor: pointer;
}

.privacy input {
  margin-top: 3px;
  accent-color: var(--primary-emerald);
}

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
}

.form-alert.success {
  background-color: #E8F8F0;
  color: var(--primary-forest);
  border: 1px solid #A7F3D0;
}

.form-alert.error {
  background-color: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}

.locations-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.locations-copy h3 {
  font-size: 1.0625rem;
  margin-top: 20px;
  margin-bottom: 6px;
  color: var(--primary-forest);
}

.locations-copy p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.inquiry-grid article {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
}

.inquiry-grid h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.inquiry-grid p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.inquiry-grid a {
  font-size: 0.8125rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   21. POLICY & LEGAL PAGES
   -------------------------------------------------------------------------- */
.policy-section {
  padding: 48px 0 80px;
}

.policy-shell {
  max-width: 820px;
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.policy-updated {
  font-size: 0.875rem;
  color: var(--primary-emerald);
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.policy-shell h2 {
  font-size: 1.375rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.policy-shell p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* --------------------------------------------------------------------------
   22. FOOTER & CTA BANDS
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--gradient-dark-forest);
  color: #FFFFFF;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(24, 169, 87, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  font-size: 2.125rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.cta-inner p {
  font-size: 1.0625rem;
  color: #CBD5E1;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.site-footer {
  background-color: var(--bg-dark-footer);
  color: #94A3B8;
  padding: 72px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col a {
  color: #94A3B8;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--primary-lime);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--primary-emerald);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-partner-strip {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.footer-partner-strip span {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #94A3B8;
}

.footer-partner-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-partner-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.footer-partner-logos a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(24, 169, 87, 0.35);
}

.footer-partner-logos img {
  height: 28px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #64748B;
}

.footer-bottom-links a:hover {
  color: #94A3B8;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-nature);
  color: #FFFFFF;
  border: 0;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 99;
  transition: all var(--transition-normal);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(24, 169, 87, 0.4);
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1280px) {
  :root {
    --header-height: 88px;
  }

  .nav-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo-img,
  .site-logo img {
    height: 64px;
    max-height: 64px;
  }

  .main-nav {
    gap: 2px;
  }

  .main-nav a {
    font-size: 0.8125rem;
    padding: 6px 9px;
  }

  .nav-cta {
    margin-left: 6px;
  }

  .nav-cta .btn {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 1200px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-band-grid,
  .icon-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 36px;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 84px;
  }

  .logo-img,
  .site-logo img {
    height: 58px;
    max-height: 58px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 34px -4px rgba(6, 28, 20, 0.14);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    font-size: 0.9375rem;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    text-align: left;
    white-space: nowrap;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.875rem;
  }
}

@media (max-width: 1024px) {
  h1 { font-size: 2.375rem; }
  h2 { font-size: 1.875rem; }

  .page-hero {
    padding: 88px 0 76px;
  }

  .solution-card-grid,
  .about-domain-grid,
  .board-grid,
  .partner-two,
  .featured-partner-grid,
  .product-grid,
  .mini-project-grid,
  .related-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-overview-grid,
  .about-pill-grid,
  .about-alignment-grid,
  .product-hero-grid,
  .product-spec-layout,
  .two-detail-columns,
  .project-bottom-grid,
  .contact-main-grid,
  .values-why-grid,
  .culture-benefits,
  .commitment-grid,
  .why-partner-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .spec-heading {
    position: static;
  }

  .project-detail-card {
    grid-template-columns: 1fr;
  }

  .project-detail-card img {
    height: 260px;
  }

  .image-cta {
    grid-template-columns: 1fr;
  }

  .job-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }

  .section { padding: 56px 0; }

  .site-header {
    height: 80px;
  }

  .logo-img,
  .site-logo img {
    height: 56px;
    max-height: 56px;
  }

  .top-bar { display: none; }

  .page-hero {
    padding: 76px 0 64px;
  }

  .page-hero::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.68) 60%,
      rgba(0, 0, 0, 0.40) 100%
    );
  }

  .page-hero-copy h1 {
    font-size: 2.125rem;
  }

  .page-hero-copy h2 {
    font-size: 1.125rem;
  }

  .product-hero-copy h1 {
    font-size: 1.875rem;
  }

  .product-main-image {
    min-height: 280px;
    padding: 16px;
  }

  .product-main-image img {
    max-height: 260px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stats-counter-item {
    border-right: 0;
  }

  .stats-strip,
  .contact-strip,
  .inquiry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industry-grid,
  .solution-card-grid,
  .about-domain-grid,
  .board-grid,
  .partner-two,
  .featured-partner-grid,
  .product-grid,
  .mini-project-grid,
  .project-detail-grid,
  .related-product-grid,
  .detail-tile-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .process-row {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .why-band-grid,
  .icon-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-partner-strip {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 20px;
  }

  .footer-partner-logos {
    justify-content: center;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    gap: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .policy-shell {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .page-hero-copy h1 {
    font-size: 1.75rem;
  }

  .page-hero-copy h2 {
    font-size: 1rem;
  }

  .stats-counter-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip,
  .contact-strip,
  .inquiry-grid,
  .why-band-grid,
  .icon-row,
  .value-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .product-card-image {
    height: 180px;
  }

  .image-cta {
    padding: 24px 18px;
  }

  .image-cta img {
    max-height: 180px;
  }

  .board-modal-dialog {
    padding: 24px 16px;
  }
}
