/* ==========================================================
   W6 ENGINEERING SURINAME NV – Stylesheet
   Colors: Navy #0d1b4b | Green #3d7a35 | White #ffffff
   ========================================================== */
:root {
  --navy: #0d1b4b;
  --navy-mid: #1a2b5e;
  --navy-light: #243472;
  --green: #3d7a35;
  --green-light: #4e9a42;
  --green-dark: #2a5a24;
  --blue-acc: #1a5fa8;
  --blue-light: #4a8fc4;
  --red-star: #c0392b;
  --white: #ffffff;
  --off-white: #f4f7fc;
  --gray-100: #f0f3f8;
  --gray-200: #dde3ee;
  --gray-500: #7a899e;
  --text-dark: #0f1d3a;
  --text-mid: #3a4f6a;
  --text-light: rgba(255, 255, 255, 0.88);
  --text-muted: rgba(255, 255, 255, 0.55);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(13, 27, 75, 0.12);
  --shadow-lg: 0 16px 56px rgba(13, 27, 75, 0.22);
  --transition: 0.3s ease;
  --font: "Inter", sans-serif;
  --font-d: "Outfit", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 88px 0;
}
.mt-btn {
  margin-top: 28px;
  display: inline-flex;
}

/* ---- BUTTONS ---- */
.btn-primary-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 6px 22px rgba(61, 122, 53, 0.4);
}
.btn-primary-green:hover {
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(61, 122, 53, 0.5);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* ============================================================ NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(13, 27, 75, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-atom {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.logo-atom svg,
.small-atom svg {
  width: 100%;
  height: 100%;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.logo-w6 {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
}
.navbar.scrolled .logo-w6 {
  color: var(--white);
}
.logo-engineering {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-mid);
  letter-spacing: 0.5px;
}
.navbar.scrolled .logo-engineering {
  color: var(--white);
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo-sub .star {
  color: var(--red-star);
}
.logo-tagline {
  font-size: 0.58rem;
  color: var(--gray-500);
  font-style: italic;
}
.navbar.scrolled .logo-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: all var(--transition);
}
/* Before scroll: dark links */
.navbar:not(.scrolled) .nav-link {
  color: var(--navy);
}
.nav-link:hover,
.nav-link.active {
  color: var(--green) !important;
  background: rgba(61, 122, 53, 0.1);
}
.nav-link .fa-chevron-down {
  font-size: 0.62rem;
  transition: transform var(--transition);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .fa-chevron-down {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.87rem;
  font-weight: 500;
  transition: all var(--transition);
}
.dropdown-menu li a i {
  color: var(--green);
  width: 16px;
}
.dropdown-menu li a:hover {
  background: rgba(61, 122, 53, 0.15);
  color: #7dc86e;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(61, 122, 53, 0.4);
}
.btn-nav-cta:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .burger-btn span {
  background: var(--white);
}

/* ============================================================ HERO */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    150deg,
    #f4f7fc 0%,
    #e8edf8 35%,
    #dce6f0 65%,
    #cfdded 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 74px;
}
.hero-geo-left {
  position: absolute;
  top: 0;
  left: -60px;
  width: 220px;
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 60%, var(--navy-mid));
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  opacity: 0.9;
}
.hero-geo-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.hero-geo-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 280px;
  height: 240px;
  background: var(--green);
  clip-path: polygon(30% 100%, 100% 0, 100% 100%);
}
.hero-geo-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 60px;
  width: 180px;
  height: 160px;
  background: rgba(61, 122, 53, 0.5);
  clip-path: polygon(30% 100%, 100% 0, 100% 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 247, 252, 0.15);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 60px 24px;
}
.hero-atom-logo {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 8px 24px rgba(13, 27, 75, 0.2));
}
.hero-atom-logo svg {
  width: 100%;
  height: 100%;
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -2px;
}
.hero-w6 {
  color: var(--navy);
}
.hero-eng {
  color: var(--navy-mid);
}
.hero-brand-line {
  font-family: var(--font-d);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.star-red {
  color: var(--red-star);
}
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--text-mid);
  font-style: italic;
  font-weight: 400;
}
.hero-w6-pillars {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.hero-w6-pillars .dot {
  color: var(--navy);
  opacity: 0.5;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--navy-mid);
  opacity: 0.5;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================================ SECTION COMMON */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.section-tag.green {
  background: rgba(61, 122, 53, 0.1);
  border: 1px solid rgba(61, 122, 53, 0.3);
  color: var(--green);
}
.section-tag.blue {
  background: rgba(26, 95, 168, 0.1);
  border: 1px solid rgba(26, 95, 168, 0.3);
  color: var(--blue-acc);
}
.section-tag.white-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.section-header.centered {
  text-align: center;
  margin-bottom: 52px;
}
.section-header.centered .section-tag {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title.dark {
  color: var(--navy);
}
.section-title.light {
  color: var(--white);
}
.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 620px;
}
.section-sub.dark {
  color: var(--text-mid);
}
.section-sub.light {
  color: var(--text-light);
}
.section-header.centered .section-sub {
  margin: 0 auto;
}

/* ============================================================ OUR VALUES */
.values-section {
  position: relative;
}

/* Dark hero banner with turbines */
.values-hero {
  position: relative;
  min-height: 220px;
  background: linear-gradient(
    150deg,
    var(--navy) 0%,
    var(--navy-mid) 60%,
    #1a2e70 100%
  );
  overflow: hidden;
  display: flex;
  align-items: center;
}
.values-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 75, 0.55);
  z-index: 1;
}
.values-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.turbines-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.values-hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 0 56px 80px;
}
.values-hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
/* Green triangle top right */
.values-tri-tr {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 110px solid var(--green);
  border-left: 110px solid transparent;
}

/* Cards row below hero */
.values-cards-row {
  background: var(--white);
  padding: 60px 0 72px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}
.value-icon-wrap {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(13, 27, 75, 0.2);
}
.value-icon-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}
.value-pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.value-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 520px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ COMMERCIAL ADVANTAGES */
.advantages-section {
  background: var(--white);
  padding: 0;
}
.advantages-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 480px;
}
.advantages-left {
  padding: 72px 60px 72px 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-right: 1px solid var(--gray-200);
}
.advantages-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}
.advantage-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.advantage-num {
  font-family: var(--font-d);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.advantage-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}
.advantage-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.advantages-right {
  display: flex;
  align-items: stretch;
}
.advantages-visual {
  width: 100%;
  background: #1e1e2e;
}
.adv-illustration {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .advantages-left {
    padding: 60px 24px;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  .advantages-right {
    min-height: 320px;
  }
}

/* ============================================================ SURINAME */
.suriname-section {
  background: var(--off-white);
}
.suriname-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
.suriname-stats-row {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.suriname-map-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.donut-ring {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}
.donut-ring svg {
  width: 140px;
  height: 140px;
}
.donut-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.donut-label strong {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
}
.donut-label span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.map-caption {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.suriname-opportunities {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.suriname-opportunities h3 {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.opp-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.opp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.opp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
}
.opp-icon.blue {
  background: linear-gradient(135deg, var(--blue-acc), var(--blue-light));
}
.opp-icon.green {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
}
.opp-icon.navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.opp-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.opp-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.sr-stat {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(13, 27, 75, 0.08);
  transition: all var(--transition);
}
.sr-stat:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.sr-stat i {
  font-size: 1.6rem;
  color: var(--blue-acc);
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.sr-stat strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.sr-stat span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============================================================ ABOUT */
.about-section {
  padding: 0;
}
.about-dark-bg {
  background: linear-gradient(
    150deg,
    var(--navy) 0%,
    var(--navy-mid) 60%,
    #1e2e70 100%
  );
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.about-geo-right {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 300px;
  height: 300px;
  background: var(--green);
  opacity: 0.08;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.about-heading {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}
.about-desc {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.about-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
}
.about-tags span i {
  color: var(--green-light);
}

.about-visual-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.about-gear-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gear-bg {
  width: 180px;
  height: 180px;
}
.gear-svg {
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-certbadge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.cert-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-certbadge strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}
.about-certbadge small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================ SERVICES */
.services-section {
  background: var(--white);
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  background: var(--white);
  transition: background var(--transition);
}
.service-row:hover {
  background: var(--off-white);
}
.svc-divider {
  height: 1px;
  background: var(--gray-200);
}
.svc-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px 20px;
  border-right: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.svc-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
}
.svc-icon-wrap.blue-icon {
  background: linear-gradient(135deg, var(--navy), var(--blue-acc));
}
.svc-icon-wrap.green-icon {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
}
.svc-icon-wrap.navy-icon {
  background: linear-gradient(135deg, #0a1234, var(--navy-mid));
}
.svc-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
}
.svc-label.blue-label {
  background: rgba(13, 27, 75, 0.1);
  color: var(--navy);
}
.svc-label.green-label {
  background: rgba(61, 122, 53, 0.12);
  color: var(--green);
}
.svc-label.navy-label {
  background: rgba(13, 27, 75, 0.08);
  color: var(--navy-mid);
}
.svc-content {
  padding: 36px 40px;
}
.svc-content h3 {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.svc-sub {
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
}
.svc-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-tags span {
  font-size: 0.77rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(13, 27, 75, 0.07);
  color: var(--navy);
  border: 1px solid rgba(13, 27, 75, 0.15);
}

/* ============================================================ REGULATORY */
.regulatory-section {
  background: var(--gray-100);
}
.reg-block {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.mt-reg {
  margin-top: 28px;
}
.reg-country-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}
.flag-emoji {
  font-size: 2.8rem;
  line-height: 1;
}
.reg-country-header h3 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.reg-country-header h3 span {
  color: var(--text-mid);
  font-weight: 500;
}
.reg-country-header p {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
}
.tl-line {
  position: absolute;
  top: 14px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 3px;
}
.navy-line {
  background: linear-gradient(90deg, var(--navy), var(--blue-acc));
}
.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 120px;
  position: relative;
  padding-top: 30px;
  text-align: center;
}
.tl-wide {
  min-width: 200px;
}
.tl-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid var(--white);
  position: absolute;
  top: 4px;
  box-shadow: 0 0 0 2px currentColor;
}
.tl-dot.green-dot {
  background: var(--green);
  color: var(--green);
}
.tl-dot.gold-dot {
  background: #c9a227;
  color: #c9a227;
}
.tl-dot.navy-dot {
  background: var(--navy);
  color: var(--navy);
}
.tl-year {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.tl-desc {
  font-size: 0.77rem;
  color: var(--text-mid);
  line-height: 1.5;
  padding: 0 8px;
}
.tl-desc strong {
  display: block;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.reg-benefits {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 20px;
  padding: 32px 36px;
}
.reg-benefits h4 {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.reg-benefits h4 i {
  color: var(--green-light);
}
.reg-benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reg-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}
.reg-benefit-item i {
  color: var(--green-light);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================ STATS */
.stats-section {
  background: linear-gradient(
    150deg,
    var(--navy) 0%,
    var(--navy-mid) 60%,
    #1a2e70 100%
  );
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover {
  background: rgba(61, 122, 53, 0.2);
  border-color: rgba(61, 122, 53, 0.5);
  transform: translateY(-4px);
}
.stat-icon {
  font-size: 1.8rem;
  color: var(--green-light);
  margin-bottom: 14px;
}
.stat-num {
  font-family: var(--font-d);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.w-pillars-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}
.pdot {
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================================ SECTORS */
.sectors-section {
  background: var(--white);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sector-card {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 32px 26px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}
.sector-card:hover {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.sector-icon {
  font-size: 2.2rem;
  color: var(--blue-acc);
  margin-bottom: 16px;
}
.sector-card:hover .sector-icon {
  color: var(--green);
}
.sector-card h4 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.sector-card p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================ CONTACT */
.contact-section {
  background: linear-gradient(
    160deg,
    var(--navy) 0%,
    #14276a 50%,
    #0a1e50 100%
  );
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cinfo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(61, 122, 53, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cinfo-item strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.cinfo-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-socials {
  display: flex;
  gap: 10px;
  padding-top: 6px;
}
.csocial-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition);
}
.csocial-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full {
  width: 100%;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font);
  width: 100%;
  transition: all var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(61, 122, 53, 0.1);
  box-shadow: 0 0 0 3px rgba(61, 122, 53, 0.15);
}
.form-group select option {
  background: var(--navy);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 6px 22px rgba(61, 122, 53, 0.4);
}
.btn-submit-green:hover {
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(61, 122, 53, 0.55);
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(61, 122, 53, 0.2);
  border: 1px solid rgba(61, 122, 53, 0.4);
  color: #7dc86e;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
}
.form-success.active {
  display: flex;
}

/* ============================================================ FOOTER */
.footer {
  background: #060d20;
}
.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.small-atom {
  width: 46px;
  height: 46px;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.fl-w6 {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}
.fl-eng {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}
.fl-sub {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 2px;
  margin-top: 2px;
}
.fstar {
  color: var(--red-star);
}
.footer-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 14px;
}
.footer-pillars {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 1.5px;
  opacity: 0.7;
}
.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}
.footer-col ul li a i {
  font-size: 0.68rem;
  color: var(--green);
}
.footer-col ul li a:hover {
  color: var(--green-light);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px !important;
}
.footer-contact-list li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact-list li i {
  color: var(--green);
  width: 14px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.footer-bottom {
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom p strong {
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--green-light);
}

/* ============================================================ FLOATS */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-tip {
  position: absolute;
  right: 66px;
  bottom: 50%;
  transform: translateY(50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tip {
  opacity: 1;
}
.btt-btn {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}
.btt-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.btt-btn:hover {
  background: var(--green);
}

/* ============================================================ PROJECTS SECTION */
.projects-section {
  background: var(--white);
  padding: 100px 0 88px;
  position: relative;
  /* NO overflow:hidden — lets corners show */
}
/* Corner decorative shapes matching the slides */
.proj-corner {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.proj-corner-tl {
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 110px solid var(--navy);
  border-right: 110px solid transparent;
}
.proj-corner-tr-navy {
  top: 0;
  right: 80px;
  width: 0;
  height: 0;
  border-top: 100px solid var(--navy);
  border-left: 80px solid transparent;
}
.proj-corner-tr-green {
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 100px solid #2d6b37;
  border-left: 80px solid transparent;
}
/* Make sure content sits above the corner shapes */
.projects-section .container {
  position: relative;
  z-index: 1;
}

/* Title */
.proj-main-title {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 36px;
}

/* Tabs */
.proj-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.proj-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  font-family: var(--font);
}
.proj-tab:hover {
  border-color: var(--green);
  color: var(--green);
}
.proj-tab.active {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13, 27, 75, 0.25);
}
.proj-tab i {
  font-size: 0.8rem;
}

/* Panels */
.proj-panel {
  display: none;
  animation: projFadeIn 0.4s ease;
}
.proj-panel.active {
  display: block;
}
@keyframes projFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proj-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-style: italic;
}

/* Photo grids */
.proj-photos-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.proj-photos-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Photo card */
.proj-photo-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  background: var(--gray-100);
}
.proj-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 27, 75, 0.2);
}
.proj-photo-card svg {
  width: 100%;
  display: block;
}
.proj-photo-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.proj-photo-label {
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}
.proj-photo-label i {
  color: var(--navy);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .proj-photos-3col {
    grid-template-columns: 1fr 1fr;
  }
  .proj-photos-2col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .proj-photos-3col {
    grid-template-columns: 1fr;
  }
  .proj-tab {
    font-size: 0.78rem;
    padding: 8px 16px;
  }
}

/* ============================================================ TECHNICAL TEAM SECTION */
.team-section {
  background: var(--white);
  padding: 0 0 88px;
}

/* Green header bar matching the slide */
.team-header-bar {
  background: #3a7a35;
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  text-align: center;
  margin-bottom: 64px;
}
.team-bar-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
/* Corner triangles in header bar */
.team-corner-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 80px solid var(--navy);
  border-right: 80px solid transparent;
  z-index: 2;
}
.team-corner-tr-navy {
  position: absolute;
  top: 0;
  right: 70px;
  width: 0;
  height: 0;
  border-top: 72px solid var(--navy);
  border-left: 70px solid transparent;
  z-index: 2;
}
.team-corner-tr-green {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 72px solid #2d6b37;
  border-left: 70px solid transparent;
  z-index: 2;
}

/* ── Lead engineers ── */
.team-leads {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto 72px;
}
.team-lead-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 36px;
  align-items: center;
}
/* Circular avatar container */
.team-avatar-wrap {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: 0 8px 30px rgba(13, 27, 75, 0.2);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.team-avatar-wrap:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 40px rgba(13, 27, 75, 0.3);
}
.team-avatar-wrap svg,
.team-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-lead-name {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.team-lead-bio p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Divider between lead rows */
.team-lead-row + .team-lead-row {
  border-top: 1px solid var(--gray-200);
  padding-top: 48px;
}

/* ── Support team grid ── */
.team-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  max-width: 860px;
  margin: 0 auto;
  justify-items: center;
}
/* 4th and 5th members centered in second row */
.team-support-grid .team-support-card:nth-child(4) {
  grid-column: 1;
}
.team-support-grid .team-support-card:nth-child(5) {
  grid-column: 2;
}

.team-support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
}
/* Smaller avatars for support team */
.team-avatar-wrap.sm {
  width: 120px;
  height: 120px;
  border-color: #3a7a35;
  margin-bottom: 16px;
}
.team-support-bio {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 700px) {
  .team-lead-row {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .team-support-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-support-grid .team-support-card:nth-child(4),
  .team-support-grid .team-support-card:nth-child(5) {
    grid-column: auto;
  }
}
@media (max-width: 480px) {
  .team-support-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ STRATEGIC ALLIANCES SECTION */
.alliances-section {
  background: var(--off-white);
  padding: 88px 0;
}
.alliances-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 8px;
}
.alliance-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.alliance-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13, 27, 75, 0.15);
  border-color: var(--green);
}
.alliance-logo-wrap {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: border-color var(--transition);
}
.alliance-card:hover .alliance-logo-wrap {
  border-color: var(--green);
}
.alliance-logo-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}
.alliance-name {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.alliance-desc {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .alliances-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .alliances-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ ALLIANCE / PETROSCOOL */
.alliance-section {
  background: var(--white);
  padding: 88px 0;
}

.alliance-grid {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}
.alliance-img-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.alliance-img-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex: 1;
}
.alliance-scene {
  width: 100%;
  aspect-ratio: 340/260;
  display: block;
}
.alliance-scene svg {
  width: 100%;
  height: 100%;
  display: block;
}
.alliance-img-label {
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border-radius: 0 0 20px 20px;
  border: 1px solid var(--gray-200);
  border-top: none;
}
.alliance-img-label i {
  color: var(--navy);
}

.alliance-center {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 0;
}
.petroscool-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--navy), #1e4080);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 6px 24px rgba(13, 27, 75, 0.3);
}
.petroscool-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.petroscool-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.petroscool-text strong {
  font-family: var(--font-d);
  font-size: 1rem;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 1px;
}
.petroscool-text small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.alliance-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.alliance-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.af-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-dark);
  font-weight: 500;
}
.af-item i {
  color: var(--green);
  width: 16px;
  flex-shrink: 0;
}

/* ============================================================ TRAINING PROGRAMS */
.training-programs-section {
  background: var(--off-white);
  padding: 88px 0;
}

.cert-programs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 40px 0 36px;
}
.cert-pill {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  cursor: default;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  line-height: 1.3;
}
.cert-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.green-dark-pill {
  background: #2d6b37;
  color: #fff;
}
.green-mid-pill {
  background: #3d7a35;
  color: #fff;
}
.green-light-pill {
  background: #68b84e;
  color: #fff;
}
.blue-pill {
  background: #2d7fc4;
  color: #fff;
}
.navy-dark-pill {
  background: #0d1b4b;
  color: #fff;
}
.navy-mid-pill {
  background: #1a3578;
  color: #fff;
}

.petroscool-footer-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--navy), #1e4080);
  border-radius: 16px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 24px rgba(13, 27, 75, 0.25);
}
.petroscool-footer-badge strong {
  font-family: var(--font-d);
  font-size: 1rem;
  color: #fff;
  letter-spacing: 1px;
  display: block;
  font-weight: 900;
}
.petroscool-footer-badge small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================ EXPERIENCE */
.experience-section {
  background: var(--white);
  padding: 88px 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 36px;
}
.exp-projects-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.exp-projects-card h3 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.exp-projects-card h3 i {
  color: var(--green);
}
.exp-projects-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exp-projects-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.89rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.exp-projects-list li i {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
}

.exp-areas-list h4 {
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.exp-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.exp-area-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(13, 27, 75, 0.06);
  color: var(--navy);
  border: 1px solid rgba(13, 27, 75, 0.15);
  transition: all var(--transition);
}
.exp-area-tags span:hover {
  background: var(--navy);
  color: var(--white);
}

/* 4-quadrant visual */
.exp-right {
  position: relative;
}
.exp-quadrant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 16px 60px rgba(13, 27, 75, 0.2);
}
.exp-quad {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 20px;
  text-align: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.exp-quad span {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  z-index: 2;
  position: relative;
}
.quad-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  z-index: 2;
  position: relative;
}
.quad-construction {
  background: linear-gradient(145deg, #c8a840, #a08820);
}
.quad-water {
  background: linear-gradient(145deg, #4a90c4, #2a6090);
}
.quad-safety {
  background: linear-gradient(145deg, #8060b0, #604090);
}
.quad-environment {
  background: linear-gradient(145deg, #5a9060, #3a6040);
}

.exp-quad-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.8),
    0 8px 32px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 10;
}
.exp-quad-center-badge i {
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.exp-quad-center-badge span {
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.exp-quad-center-badge small {
  font-size: 0.64rem;
  color: var(--text-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
  .alliance-grid {
    grid-template-columns: 1fr;
  }
  .alliance-center {
    order: -1;
  }
  .exp-grid {
    grid-template-columns: 1fr;
  }
  .exp-quadrant-grid {
    max-width: 320px;
  }
}
@media (max-width: 600px) {
  .cert-pill {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/* ============================================================ SOCIAL MANAGEMENT */
.social-visual {
  background: linear-gradient(145deg, #eaf1ff, #d0e0f8);
}
.social-people-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
}

/* ============================================================ CIRCULAR ECONOMY */
.circular-visual {
  background: linear-gradient(145deg, #edf6ed, #d0ebd0);
}
.circular-ring-outer {
  background: rgba(61, 122, 53, 0.12);
  border: 3px solid rgba(61, 122, 53, 0.35);
  width: 280px;
  height: 280px;
  right: -80px;
  top: -80px;
}
.circular-ring-inner {
  background: transparent;
  border: 3px solid rgba(61, 122, 53, 0.2);
  width: 180px;
  height: 180px;
  right: -30px;
  top: -30px;
}

/* ============================================================ FORESTRY SECTION */
.forestry-section {
  background: linear-gradient(
    160deg,
    #0a200a 0%,
    #112d12 40%,
    #0d1b1e 100%
  ) !important;
  position: relative;
}
.forestry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(61,122,53,0.15)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.forestry-section .section-tag.green {
  background: rgba(61, 122, 53, 0.3);
  border-color: rgba(61, 122, 53, 0.6);
}
.forestry-bullets li::before {
  color: #7dc86e !important;
}
.forestry-bullets li {
  color: rgba(255, 255, 255, 0.8) !important;
}
.forestry-badge-row {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.forestry-badge-row .detail-badge-list li {
  color: rgba(255, 255, 255, 0.75);
}
.forestry-badge-row .detail-badge-list li i {
  color: #7dc86e;
}
.forestry-badge-lbl {
  color: rgba(255, 255, 255, 0.8) !important;
}

.forestry-visual {
  background: linear-gradient(170deg, #1a3a1a 0%, #0e2a0e 50%, #091e09 100%);
  border: 1px solid rgba(61, 122, 53, 0.3);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.forestry-dsv-content {
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(10px) !important;
}
.forest-tag {
  background: rgba(61, 122, 53, 0.3) !important;
  border-color: rgba(61, 122, 53, 0.5) !important;
  color: #7dc86e !important;
}

/* ============================================================ MANAGEMENT SYSTEMS */
.mgmt-section {
  background: var(--off-white);
}

.mgmt-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 24px;
  padding-top: 50px;
}
.mgmt-line {
  position: absolute;
  top: 70px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--navy),
    var(--blue-acc),
    var(--green)
  );
  border-radius: 3px;
  z-index: 1;
}

.mgmt-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
.mgmt-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 4px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0;
  box-shadow: 0 6px 20px rgba(13, 27, 75, 0.3);
  transition: all var(--transition);
}
.mgmt-step:hover .mgmt-icon-wrap {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-color: var(--navy);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(61, 122, 53, 0.4);
}
.mgmt-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
  margin: 8px 0 16px;
}
.mgmt-step h4 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.mgmt-step ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mgmt-step ul li {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
  position: relative;
  padding-left: 12px;
}
.mgmt-step ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .mgmt-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 0;
  }
  .mgmt-line {
    display: none;
  }
  .mgmt-step {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 18px;
  }
  .mgmt-dot {
    display: none;
  }
  .mgmt-icon-wrap {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .mgmt-step h4 {
    margin-bottom: 6px;
  }
}

/* ============================================================ APPROACH SECTION */
.approach-section {
  background: var(--off-white);
}

.approach-desc-block {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 36px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.approach-desc-block > p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}
.approach-pillars-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ap-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}
.ap-pillar i {
  color: var(--green);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.approach-stages {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.approach-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 130px;
}
.approach-divider {
  height: 1px;
  background: var(--gray-200);
}
.approach-stage-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
  gap: 3px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.approach-stage-label span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.3;
  writing-mode: horizontal-tb;
  transform: rotate(180deg);
  display: block;
}
.approach-stage-label.operation {
  background: linear-gradient(180deg, var(--navy), var(--navy-mid));
}
.approach-stage-label.construction {
  background: linear-gradient(180deg, var(--blue-acc), #1e7abf);
}
.approach-stage-label.design {
  background: linear-gradient(180deg, #1e7abf, #2a9a6a);
}
.approach-stage-label.feasibility {
  background: linear-gradient(180deg, var(--green-dark), var(--green-light));
}

.approach-content {
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.approach-content h3 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.approach-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.89rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.approach-list li i {
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* ============================================================ DETAIL SERVICE SECTIONS */
.detail-svc-section {
  padding: 88px 0;
  background: var(--white);
}
.detail-svc-section.alt-bg {
  background: var(--gray-100);
}

.detail-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.detail-svc-grid.reverse {
  direction: rtl;
}
.detail-svc-grid.reverse > * {
  direction: ltr;
}

.detail-svc-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin: 14px 0 24px;
}
.detail-svc-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.detail-svc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 6px;
}
.detail-svc-bullets li::before {
  content: "•";
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1.3;
  flex-shrink: 0;
}

.detail-badge-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 20px 20px;
  margin-bottom: 16px;
}
.detail-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 72px;
  text-align: center;
}
.detail-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
}
.support-badge .detail-badge-icon {
  background: linear-gradient(135deg, var(--navy), var(--blue-acc));
}
.training-badge .detail-badge-icon {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
}
.detail-badge > span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-badge-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.detail-badge-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.detail-badge-list li i {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
}

/* ---- Visual Cards ---- */
.detail-svc-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}
.env-planning-visual {
  background: linear-gradient(145deg, #e8f0fb, #c8daef);
}
.monitoring-visual {
  background: linear-gradient(145deg, #e2ecf3, #c8dae7);
}
.climate-visual {
  background: linear-gradient(145deg, #e2f0e8, #c8dfc8);
}

.dsv-circle-decor {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.dsv-circle-decor.navy-circle {
  background: rgba(13, 27, 75, 0.08);
  border-color: rgba(13, 27, 75, 0.2);
}
.dsv-circle-decor.green-circle {
  background: rgba(61, 122, 53, 0.1);
  border-color: rgba(61, 122, 53, 0.3);
}

.dsv-content {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  padding: 28px 30px;
}
.dsv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue-acc));
}
.dsv-icon.navy-icon {
  background: linear-gradient(135deg, var(--navy), #2460a0);
}
.dsv-icon.green-icon {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
}
.dsv-content h4 {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.dsv-content p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.dsv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dsv-tags span {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(13, 27, 75, 0.08);
  color: var(--navy);
  border: 1px solid rgba(13, 27, 75, 0.15);
}

/* ---- Responsive new sections ---- */
@media (max-width: 768px) {
  .approach-row {
    grid-template-columns: 1fr;
  }
  .approach-stage-label {
    writing-mode: horizontal-tb;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px 20px;
    justify-content: flex-start;
    min-height: auto;
  }
  .approach-stage-label span {
    transform: none;
  }
  .detail-svc-grid {
    grid-template-columns: 1fr;
    direction: ltr !important;
    gap: 36px;
  }
  .approach-pillars-row {
    grid-template-columns: 1fr;
  }
  .detail-badge-row {
    flex-direction: column;
    gap: 14px;
  }
  .detail-svc-visual {
    min-height: 260px;
  }
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .reg-benefits-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: var(--navy);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
  }
  .btn-nav-cta {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .suriname-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual-side {
    display: none;
  }
  .service-row {
    grid-template-columns: 1fr;
  }
  .svc-icon-col {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 28px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-atom-logo {
    width: 100px;
    height: 100px;
  }
  .hero-geo-left {
    display: none;
  }
  .suriname-stats-row {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
  .timeline {
    gap: 0;
  }
  .tl-item {
    min-width: 100px;
  }
}
@media (max-width: 480px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-w6-pillars {
    font-size: 0.72rem;
    gap: 6px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
