@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@300;400;500;600&display=swap');

/* CSS Reset & Variables */
:root {
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', SFMono-Regular, Consolas, monospace;

  /* Color Palette - Teal Theme */
  --color-bg-body: #f8fafc;
  --color-bg-white: #ffffff;

  --color-accent-bright: #0f766e;      /* Deep Teal (primary CTA) */
  --color-accent-bright-hover: #0d6460;

  --color-accent-medium: #14b8a6;      /* Bright Teal (highlights, hover) */
  --color-accent-medium-hover: #0f9d8c;

  --color-neutral-light: #f8fafc;      /* Off-white (section backgrounds) */
  --color-neutral-muted: #cbd5e1;      /* Borders & Light Text */

  --color-text-dark: #0f172a;          /* Deep Navy / Charcoal */
  --color-text-light: #f8fafc;         /* Off-white text */
  --color-text-muted: #64748b;         /* Medium Slate Text */

  /* Layout */
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 40px -4px rgba(15, 118, 110, 0.1);
  --container-width: 1680px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-body);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Base Typo */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Layout Utilities */
.container {
  width: 94%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

/* Reusable Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-bright {
  background-color: var(--color-accent-bright);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-bright:hover {
  background-color: var(--color-accent-bright-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  border: 2px solid var(--color-accent-bright);
  color: var(--color-accent-bright);
}

.btn-outline:hover {
  background-color: var(--color-accent-bright);
  color: #ffffff;
}

.arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-bright);
  border-radius: 50%;
  color: #ffffff;
  transition: var(--transition-smooth);
}

.arrow-icon:hover {
  background-color: var(--color-accent-medium);
  transform: scale(1.05);
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Header & Navbar styling */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 16px 0;
}

header.scrolled .nav-pill-wrapper {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  border-color: rgba(226, 232, 240, 0.8);
}

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

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--color-text-dark);
}

.logo span {
  color: var(--color-accent-bright);
}

.nav-pill-wrapper {
  background-color: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.5);
  padding: 6px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--color-text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-subtle);
}

/* Navigation Dropdown Menu styling */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 250px;
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--border-radius-md);
  box-shadow: 0 12px 32px -4px rgba(15, 23, 42, 0.08);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.3s;
  z-index: 1002;
  margin-top: 12px;
}

/* Arrow indicator */
.dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
}

/* Hover mouse bridge to prevent early closing */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  display: block;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted) !important;
  transition: var(--transition-smooth);
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  text-align: left !important;
}

.dropdown-menu a:hover {
  color: var(--color-accent-bright) !important;
  background-color: var(--color-neutral-light) !important;
  padding-left: 28px !important;
}

.header-right {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text-dark);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-pill-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    border-radius: 0;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-bg-white);
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.1);
    transition: var(--transition-smooth);
    padding: 60px 28px;
    border: none;
  }
  
  .nav-pill-wrapper.active {
    right: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    align-items: stretch;
  }
  
  .nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    padding: 10px 20px;
    display: block;
    width: 100%;
    text-align: center;
    color: var(--color-text-dark);
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Dropdown styles */
  .nav-item-dropdown:hover .dropdown-menu {
    transform: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    width: 90%;
    margin: 8px auto 12px auto;
    box-shadow: none;
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 8px 0;
    opacity: 1;
    visibility: visible;
    background-color: #f8fafc;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .dropdown-menu::before, .nav-item-dropdown::after {
    display: none;
  }

  .dropdown-menu a {
    padding: 10px 20px !important;
    font-size: 0.825rem !important;
    color: var(--color-text-muted) !important;
    text-align: center !important;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-sm) !important;
    width: auto !important;
    display: block !important;
  }

  .dropdown-menu a:hover {
    padding-left: 20px !important;
    background-color: rgba(20, 184, 166, 0.08) !important;
    color: var(--color-accent-bright) !important;
  }
}

/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.hero-section {
  position: relative;
  padding-top: 180px;
  padding-bottom: 140px;
  overflow: hidden;
  background: 
    radial-gradient(circle at 10% 20%, rgba(244, 114, 182, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 90% 20%, rgba(96, 165, 250, 0.07) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 15% 80%, rgba(96, 165, 250, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 85% 85%, rgba(244, 114, 182, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, #ffffff 0%, #fcfdfe 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: block;
}

.hero-layout-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 28px;
}

.hero-pretitle {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0f766e;
  text-transform: uppercase;
  display: inline-block;
}

.hero-headline {
  font-size: clamp(2.2rem, 5.2vw, 3.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #000000;
}

.hero-subtext {
  font-size: 1.05rem;
  color: #475569;
  max-width: 530px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* Button styles matching reference image */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: var(--transition-smooth);
  height: 52px;
  box-sizing: border-box;
}

.btn-pill-black {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.btn-pill-black:hover {
  background-color: #27272a;
  border-color: #27272a;
  transform: translateY(-1px);
}

.btn-pill-outline {
  background-color: transparent;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.btn-pill-outline:hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
  transform: translateY(-1px);
}

.hero-right-column {
  min-height: 400px;
  border-left: 1px solid rgba(226, 232, 240, 0.6);
  height: 100%;
}

/* ========================================= */
/* PHOTO PLACEHOLDER UTILITIES */
/* ========================================= */

.photo-placeholder {
  position: relative;
  background-color: #f1f5f9;
  border: 2px dashed #cbd5e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  width: 100%;
  min-height: 480px;
  transition: var(--transition-smooth);
}

.photo-placeholder:hover {
  border-color: var(--color-accent-bright);
  background-color: #eff6ff;
}

.photo-placeholder-icon {
  width: 48px;
  height: 48px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  opacity: 0.7;
}

.photo-placeholder-label {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 8px;
}

.photo-placeholder-subtext {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: center;
}

.photo-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-placeholder img[src]:not([src=""]) {
  opacity: 1;
}

/* ========================================= */
/* SECTION 2: WHO WE ARE */
/* ========================================= */

.who-we-are {
  background-color: var(--color-bg-white);
  padding: 120px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.who-title {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #000000;
  margin-bottom: 8px;
}

.who-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.65;
  font-weight: 300;
}

.who-desc-secondary {
  font-size: 0.98rem;
  color: #64748b;
  line-height: 1.65;
  font-weight: 300;
}

/* Bottom Line Badge */
.about-badge-line-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.about-badge-line {
  width: 48px;
  height: 1.5px;
  background-color: #0f766e;
}

.about-badge-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0f766e;
  text-transform: uppercase;
}

.who-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
}

.who-image-wrap {
  width: 100%;
  height: 520px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.who-image-wrap:hover {
  transform: scale(1.01);
}

.who-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .who-we-are {
    padding: 80px 0;
  }
  
  .who-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .who-right {
    justify-content: center;
    padding: 0;
  }
  
  .who-image-wrap {
    width: 100%;
    height: 380px;
  }
}

/* ========================================= */
/* SECTION 3: KEY FACTS (Slim Dark Stats Bar) */
/* ========================================= */

.facts-section {
  background-color: #000000;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.facts-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.fact-stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fact-stat-number {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #14b8a6; /* Bright premium teal */
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: var(--font-primary);
}

.fact-stat-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 2px;
  margin-top: 12px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .facts-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .facts-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .fact-stat-number {
    font-size: 2.5rem;
  }
  .fact-stat-title {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
  }
}

/* ========================================= */
/* SECTION 4: PRODUCTS & SERVICES (Expertise at Scale) */
/* ========================================= */

.services-section {
  padding: 120px 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(244, 114, 182, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 90% 20%, rgba(96, 165, 250, 0.07) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 15% 80%, rgba(96, 165, 250, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 85% 85%, rgba(244, 114, 182, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, #ffffff 0%, #fcfdfe 100%);
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-title {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #000000;
}

.services-subtext {
  font-size: 1.05rem;
  color: #64748b;
  margin-top: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.02);
  box-sizing: border-box;
}

.service-icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.02em;
}

.service-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 300;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.1);
}

.service-card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 9999px;
  border: 1.5px solid #cbd5e1;
  background-color: transparent;
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  cursor: pointer;
  margin-top: 24px;
}

.service-card-btn:hover {
  background-color: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
}

.service-card-btn svg {
  transition: transform 0.3s ease;
}

.service-card-btn:hover svg {
  transform: translateX(4px);
}

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

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-card {
    padding: 36px;
  }
}

/* ========================================= */
/* SECTION 5: INDUSTRIES SERVED */
/* ========================================= */

.industries-section {
  background-color: var(--color-bg-white);
  padding: 120px 0;
}

.industries-header {
  text-align: left;
  margin-bottom: 70px;
  max-width: 800px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0f766e;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.industries-title {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #000000;
}

.industries-subtext {
  font-size: 1.05rem;
  color: #64748b;
  margin-top: 14px;
  font-weight: 300;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.industry-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none;
}

.industry-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.industry-card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #0f766e;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.industry-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -0.015em;
}

.industry-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 300;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: transparent;
}

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

@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ========================================= */
/* SECTION 6: WHY CHOOSE US */
/* ========================================= */

.why-us-section {
  background-color: #ffffff;
  padding: 120px 0;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.why-us-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-us-title {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #000000;
  margin-top: 8px;
}

.why-us-subtext {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 16px auto 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

.why-us-staggered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.why-us-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-us-col-right {
  margin-top: 64px;
}

.why-card {
  background-color: rgba(15, 23, 42, 0.03);
  border-radius: 24px;
  padding: 48px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
  border: none;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  font-weight: 300;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
  background-color: rgba(15, 23, 42, 0.045);
}

@media (max-width: 768px) {
  .why-us-staggered-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .why-us-col {
    gap: 24px;
  }

  .why-us-col-right {
    margin-top: 0;
  }

  .why-card {
    padding: 32px;
  }
}

/* ========================================= */
/* SECTION 7: SERVICE COMMITMENT */
/* ========================================= */

.commitments-section {
  background-color: var(--color-bg-white);
  padding: 120px 0;
}

.commitments-header {
  text-align: center;
  margin-bottom: 70px;
}

.commitments-header h2 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.commitments-header p {
  font-size: 1.05rem;
  color: #64748b;
  margin-top: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.commitment-card {
  border: 1px solid rgba(226, 232, 240, 0.8);
  background-color: var(--color-bg-white);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition-smooth);
}

.commitment-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f766e;
  opacity: 0.6;
}

.commitment-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000000;
}

.commitment-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  font-weight: 300;
}

.commitment-card:hover {
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.05);
  transform: translateY(-4px);
  border-color: rgba(15, 23, 42, 0.1);
}

@media (max-width: 992px) {
  .commitments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .commitment-card {
    padding: 36px;
  }
}

/* ========================================= */
/* SECTION 8: PROCUREMENT PROCESS */
/* ========================================= */

.procurement-section {
  padding: 120px 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(244, 114, 182, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 90% 20%, rgba(96, 165, 250, 0.07) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 15% 80%, rgba(96, 165, 250, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 85% 85%, rgba(244, 114, 182, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, #ffffff 0%, #fcfdfe 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.procurement-header {
  text-align: left;
  margin-bottom: 70px;
  max-width: 800px;
}

.procurement-title {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-top: 8px;
  line-height: 1.15;
}

.procurement-subtext {
  font-size: 1.05rem;
  color: #64748b;
  margin-top: 16px;
  line-height: 1.6;
  font-weight: 300;
}

.procurement-timeline-wrapper {
  position: relative;
  margin-top: 60px;
}

.timeline-line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1.5px;
  background-color: rgba(226, 232, 240, 0.8);
  z-index: 1;
}

.procurement-timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 24px;
  z-index: 2;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.step-node-dark {
  background-color: #0f172a;
}

.step-node-teal {
  background-color: #0f766e;
}

.timeline-step h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.timeline-step p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 992px) {
  .procurement-timeline-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }
  
  .timeline-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .timeline-line {
    display: none;
  }

  .procurement-timeline-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .timeline-step {
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
  }
  
  .timeline-step > div:last-child {
    flex: 1;
  }
  
  .timeline-step h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 0.95rem;
  }

  .timeline-step p {
    font-size: 0.85rem;
  }
  
  .step-node {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    aspect-ratio: 1 / 1;
    font-size: 0.65rem;
    border-width: 2px;
    margin-bottom: 0;
  }
}

/* ========================================= */
/* SECTION 9: OUR CLIENTS */
/* ========================================= */

.clients-section {
  background-color: var(--color-bg-body);
  padding: 60px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.clients-header {
  text-align: center;
  margin-bottom: 32px;
}

.clients-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #94a3b8;
  text-transform: uppercase;
  display: block;
}

.clients-ticker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 16px;
}

.client-logo-item {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-dark);
  letter-spacing: 0.12em;
  opacity: 0.5;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  user-select: none;
}

.client-logo-item::after {
  content: '·';
  margin: 0 20px;
  opacity: 0.35;
  font-weight: 400;
  font-family: var(--font-primary);
}

.client-logo-item:last-child::after {
  display: none;
}

.client-logo-item:hover {
  opacity: 0.9;
  color: #0f766e;
}

@media (max-width: 768px) {
  .clients-ticker {
    flex-direction: column;
    align-items: center;
    gap: 0;
    row-gap: 14px;
  }

  .client-logo-item {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  /* Hide dot separator on mobile — vertical list looks cleaner without it */
  .client-logo-item::after {
    display: none;
  }
}

/* ========================================= */
/* SECTION 4: VISION & MISSION */
/* ========================================= */

.vision-mission {
  background-color: var(--color-bg-white);
  padding: 120px 0;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.vision-header {
  text-align: center;
  margin-bottom: 70px;
}

.vision-section-title {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #000000;
  margin-top: 8px;
}

.vision-section-subtext {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 16px auto 0 auto;
  line-height: 1.6;
}

.vision-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-split-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-split-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.vision-split-content {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-card-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #0f766e;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.vision-split-content h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 24px;
  line-height: 1.25;
}

.vision-detail-block {
  margin-top: 24px;
}

.vision-detail-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #94a3b8;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.vision-detail-block p {
  font-weight: 300;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
}

/* Right Side: SVG Panel */
.vision-split-visual {
  position: relative;
  overflow: hidden;
  background-color: #0d1321;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.vision-svg {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .vision-split-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  
  .vision-split-content {
    padding: 36px 28px;
  }
  
  .vision-split-visual {
    padding: 36px 28px;
    height: 220px;
  }
  
  .mockup-frame {
    max-width: 220px;
  }
}

/* ========================================= */
/* CONTACT & FOOTER */
/* ========================================= */

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-header h2 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.contact-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.contact-details {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #0f766e;
  text-transform: uppercase;
}

.contact-detail-value {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-detail-value:hover {
  color: #0f766e;
}

.contact-submit-btn {
  width: 100%;
  padding: 16px 32px;
  border-radius: 9999px;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  margin-top: 8px;
}

.contact-submit-btn:hover {
  background-color: #27272a;
  transform: translateY(-1px);
}

.contact-form-card {
  background-color: var(--color-bg-white);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(226, 232, 240, 1);
  background-color: #f8fafc;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent-bright);
  background-color: var(--color-bg-white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.contact-form-card button {
  width: 100%;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 30px 20px;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Footer */
footer {
  background-color: #0b0f19;
  color: rgba(255, 255, 255, 0.5);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.footer-logo span {
  color: #14b8a6;
}

.footer-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.35);
  max-width: 240px;
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 12px;
}

.footer-link {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item:hover {
  color: #14b8a6;
}

.footer-bottom {
  padding-top: 32px;
}

.footer-copy {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
}

/* ========================================= */
/* HERO MINIMALIST RESPONSIVE MEDIA QUERIES */
/* ========================================= */

@media (max-width: 992px) {
  .hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: auto;
    background: 
      radial-gradient(circle at 10% 20%, rgba(244, 114, 182, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
      radial-gradient(circle at 90% 20%, rgba(96, 165, 250, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
      radial-gradient(circle at 15% 80%, rgba(96, 165, 250, 0.04) 0%, rgba(255, 255, 255, 0) 60%),
      radial-gradient(circle at 85% 85%, rgba(244, 114, 182, 0.07) 0%, rgba(255, 255, 255, 0) 60%),
      linear-gradient(135deg, #ffffff 0%, #fcfdfe 100%);
  }
  
  .hero-layout-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .hero-right-column {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-left-column {
    gap: 20px;
  }
  .btn-pill {
    width: 100%;
    padding: 12px 24px;
    height: 48px;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
}

/* ========================================= */
/* COMPREHENSIVE MOBILE OVERRIDES (≤480px)   */
/* ========================================= */

@media (max-width: 480px) {

  /* --- Global Section Spacing --- */
  .section {
    padding: 48px 0;
  }

  /* --- Global Typography Scale-Down --- */
  .who-title,
  .services-title,
  .industries-title,
  .why-us-title,
  .procurement-title,
  .vision-section-title,
  .commitments-header h2,
  #contact-title {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
  }

  /* --- Hero --- */
  .hero-section {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-headline {
    font-size: 1.75rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 0.95rem;
  }

  /* --- Who We Are --- */
  .who-grid {
    gap: 32px;
  }

  .who-image-wrap {
    height: 260px;
  }

  /* --- Services --- */
  .services-header {
    margin-bottom: 40px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  /* --- Industries --- */
  .industries-header {
    margin-bottom: 40px;
  }

  .industry-card h3 {
    font-size: 1.1rem;
  }

  /* --- Why Us --- */
  .why-card {
    padding: 28px 24px;
  }

  /* --- Commitments --- */
  .commitment-card {
    padding: 28px 24px;
  }

  .commitment-card h3 {
    font-size: 1.1rem;
  }

  /* --- Procurement Timeline --- */
  .procurement-header {
    margin-bottom: 40px;
  }

  .timeline-step h3 {
    font-size: 1rem;
  }

  .timeline-step p {
    font-size: 0.875rem;
  }

  /* --- Vision & Mission --- */
  .vision-header {
    margin-bottom: 40px;
  }

  .vision-split-content {
    padding: 28px 24px;
  }

  .vision-split-content h3 {
    font-size: 1.2rem;
  }

  .vision-split-visual {
    padding: 32px 24px;
    min-height: 180px;
  }

  /* --- Clients --- */
  .clients-section {
    padding: 40px 0;
  }

  /* --- Contact --- */
  .contact-header h2 {
    font-size: 1.5rem;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  /* --- Facts Bar --- */
  .fact-stat-number {
    font-size: 2.2rem;
  }

  .fact-stat-title {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  /* --- Footer --- */
  footer {
    padding: 56px 0 32px;
  }

  .footer-top {
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-logo {
    font-size: 0.95rem;
  }

  .footer-tagline {
    font-size: 0.8rem;
  }
}

/* ─── Booklet Download CTA (Contact Section) ─────────────────────── */
.booklet-cta-wrap {
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: var(--border-radius-md);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06) 0%, rgba(20, 184, 166, 0.04) 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booklet-cta-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-accent-medium);
  text-transform: uppercase;
}

.booklet-cta-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.booklet-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 11px 22px;
  background: var(--color-accent-bright);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.booklet-download-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booklet-download-btn:hover {
  background: var(--color-accent-bright-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(15, 118, 110, 0.35);
  color: #fff;
}

.booklet-download-btn:hover::before {
  opacity: 1;
}

.booklet-download-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  animation: none;
  transition: transform 0.3s ease;
}

.booklet-download-btn:hover svg {
  transform: translateY(2px);
}
