/* ============================================
   SOLLIX
   Brand Design System
   ============================================ */

:root {
  --sollix-blue: #393185;
  --sollix-red: #E31E24;
  --sollix-white: #FFFFFF;
  --sollix-light: #F7F7F8;
  --sollix-dark: #171717;
  --sollix-gray: #6B7280;
  --font-heading: 'Oswald', 'Roboto Condensed', sans-serif;
  --font-body: 'Inter', 'Roboto', sans-serif;
  --header-height: 80px;
  --container-max: 1280px;
  --section-padding: 80px;
  --transition: 0.3s ease;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--sollix-dark);
  background: var(--sollix-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-padding) 0;
}

.text-red {
  color: var(--sollix-red);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-arrow {
  font-size: 1.1em;
  line-height: 1;
}

.btn-primary {
  background: var(--sollix-red);
  color: var(--sollix-white);
  border-color: var(--sollix-red);
}

.btn-primary:hover {
  background: #c9191f;
  border-color: #c9191f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 30, 36, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--sollix-white);
  border-color: var(--sollix-white);
}

.btn-outline-white:hover {
  background: var(--sollix-white);
  color: var(--sollix-blue);
  transform: translateY(-2px);
}

.btn-quote {
  background: var(--sollix-red);
  color: var(--sollix-white);
  border-color: var(--sollix-red);
  padding: 10px 22px;
  font-size: 0.8125rem;
  border-radius: 50px;
}

.btn-quote:hover {
  background: #c9191f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(227, 30, 36, 0.35);
}

.btn-white {
  background: var(--sollix-white);
  color: var(--sollix-red);
  border-color: var(--sollix-white);
  padding: 14px 32px;
  border-radius: 50px;
}

.btn-white:hover {
  background: var(--sollix-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.icon-phone {
  flex-shrink: 0;
}

/* ============================================
   Header / Navbar
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--sollix-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 20px;
}

.header-logo {
  justify-self: start;
  display: flex;
  align-items: center;
}

.header-logo img,
.header-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-quote-desktop {
  justify-self: end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sollix-blue);
  padding: 8px 12px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--sollix-red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--sollix-red);
}

.nav-item-has-dropdown {
  position: relative;
}

.nav-item-has-dropdown > .nav-link::after {
  display: none;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--sollix-white);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown:focus-within .nav-dropdown,
.nav-item-has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sollix-blue);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  background: rgba(139, 0, 62, 0.06);
  color: var(--sollix-red);
}

.nav-quote-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--sollix-blue);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  min-height: 540px;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.hero-content {
  background: var(--sollix-blue);
  position: relative;
  display: flex;
  align-items: center;
  padding: 48px 56px 48px max(24px, calc((100vw - var(--container-max)) / 2 + 24px));
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.hero-visual {
  position: relative;
  background: var(--sollix-white);
  padding: 16px 16px 16px 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-frame-outer {
  flex: 1;
  position: relative;
  overflow: hidden;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: calc(11% - 2px);
  width: 5px;
  background: var(--sollix-red);
  transform: skewX(-3.5deg);
  z-index: 3;
  pointer-events: none;
}

.hero-visual::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(11% - 12px);
  width: 44px;
  height: 44px;
  background: var(--sollix-white);
  border-bottom-right-radius: 16px;
  z-index: 4;
  pointer-events: none;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,255,255,0.02) 25%, transparent 25%);
  background-size: 40px 40px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(227,30,36,0.08) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--sollix-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: var(--sollix-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-buttons .btn {
  padding: 13px 26px;
  font-size: 0.8125rem;
}

/* ============================================
   Features Strip
   ============================================ */

.features-strip {
  background: var(--sollix-white);
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.feature-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  color: var(--sollix-red);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sollix-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 0.8125rem;
  color: var(--sollix-gray);
  line-height: 1.6;
}

/* ============================================
   Section Intro (shared)
   ============================================ */

.section-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sollix-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--sollix-blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 0.9375rem;
  color: var(--sollix-gray);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
  background: var(--sollix-light);
}

.services-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--sollix-white);
  padding: 18px 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--sollix-red);
  color: var(--sollix-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sollix-blue);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

/* ============================================
   Stats Section
   ============================================ */

.stats-section {
  background: var(--sollix-blue);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.stats-texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  color: var(--sollix-white);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  opacity: 0.9;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: #F5A623;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sollix-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* ============================================
   Projects Section
   ============================================ */

.projects-section {
  background: var(--sollix-white);
}

.projects-layout {
  display: block;
}

.projects-intro {
  max-width: 440px;
  margin-bottom: 36px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.project-card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.08);
}

.project-card-label {
  background: var(--sollix-blue);
  padding: 14px 12px;
  text-align: center;
}

.project-card-label span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sollix-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* ============================================
   CTA Bar
   ============================================ */

.cta-bar {
  background: var(--sollix-red);
  padding: 36px 0;
}

.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-bar-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--sollix-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sollix-red);
  flex-shrink: 0;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--sollix-white);
}

.cta-text strong {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-text span {
  font-size: 0.9375rem;
  opacity: 0.95;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--sollix-blue);
  color: var(--sollix-white);
}

.footer-main {
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo img,
.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sollix-white);
  transition: background var(--transition), border-color var(--transition);
}

.footer-social a:hover {
  background: var(--sollix-red);
  border-color: var(--sollix-red);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--sollix-white);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a::before {
  content: '\203A';
  color: var(--sollix-red);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--sollix-white);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.9;
}

.footer-contact a:hover {
  color: var(--sollix-white);
}

.footer-copyright {
  background: var(--sollix-red);
  padding: 14px 24px;
  text-align: center;
}

.footer-copyright p {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sollix-white);
  text-transform: uppercase;
}

/* ============================================
   Inner Pages
   ============================================ */

.page-hero {
  background: var(--sollix-blue);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero-texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero .section-eyebrow {
  color: var(--sollix-red);
}

.page-hero .section-title {
  color: var(--sollix-white);
  margin-bottom: 12px;
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 600px;
}

.page-content {
  padding: var(--section-padding) 0;
}

.page-content-light {
  background: var(--sollix-light);
}

.content-block {
  max-width: 800px;
}

.content-block h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--sollix-blue);
  text-transform: uppercase;
  margin: 32px 0 16px;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p {
  color: var(--sollix-gray);
  margin-bottom: 16px;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.value-card {
  background: var(--sollix-white);
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-card-icon {
  color: var(--sollix-red);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--sollix-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--sollix-gray);
  line-height: 1.6;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Services Page */
.services-page-hero {
  position: relative;
  background: var(--sollix-blue);
  padding: 48px 0;
  overflow: hidden;
}

.services-page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-page-hero-accent {
  position: absolute;
  right: -60px;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 35%, rgba(227, 30, 36, 0.1) 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}

.services-page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.services-page-hero-content {
  max-width: 640px;
}

.services-page-hero-content .section-eyebrow {
  color: var(--sollix-red);
}

.services-page-hero-content .section-title {
  color: var(--sollix-white);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.services-page-hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.services-page-hero-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--sollix-white);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--sollix-red);
}

.services-page-hero-badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sollix-blue);
  line-height: 1;
}

.services-page-hero-badge-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sollix-gray);
  text-align: center;
  margin-top: 4px;
  max-width: 80px;
  line-height: 1.3;
}

.services-page-content {
  padding-top: var(--section-padding);
}

.services-equipment-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--sollix-blue);
  border-radius: 8px;
  color: var(--sollix-white);
}

.services-equipment-banner-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--sollix-white);
}

.services-equipment-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  text-transform: uppercase;
  color: var(--sollix-white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.services-equipment-banner p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}

.services-expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.services-expertise-card {
  background: var(--sollix-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 22px 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.services-expertise-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.services-expertise-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--sollix-red);
  border-radius: 50%;
  margin-bottom: 12px;
}

.services-expertise-card h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--sollix-blue);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.services-expertise-card p {
  font-size: 0.8125rem;
  color: var(--sollix-gray);
  margin: 0;
  line-height: 1.55;
}

.services-dcd-note {
  text-align: center;
  max-width: 680px;
  margin: 36px auto 0;
  padding: 16px 24px;
  background: rgba(57, 49, 133, 0.06);
  border-radius: 8px;
  border-left: 4px solid var(--sollix-red);
  font-size: 0.9375rem;
  color: var(--sollix-dark);
  line-height: 1.6;
}

.services-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.services-capability-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.services-capability-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--sollix-white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--sollix-red);
  transition: transform var(--transition);
}

.services-capability-item:hover {
  transform: translateX(4px);
}

.services-capability-item h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: var(--sollix-blue);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.services-capability-item p {
  font-size: 0.875rem;
  color: var(--sollix-gray);
  margin: 0;
  line-height: 1.55;
}

.services-check-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 30, 36, 0.08);
  border-radius: 50%;
  color: var(--sollix-red);
}

.services-check-icon-sm {
  width: 24px;
  height: 24px;
}

.services-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}

.services-tool-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--sollix-white);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  font-size: 0.875rem;
  color: var(--sollix-dark);
  line-height: 1.4;
  transition: background var(--transition);
}

.services-tool-item:hover {
  background: rgba(57, 49, 133, 0.04);
}

.services-tools-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(227, 30, 36, 0.06);
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--sollix-dark);
  line-height: 1.55;
  border-left: 3px solid var(--sollix-red);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-details {
  padding-top: 8px;
}

.contact-details-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sollix-blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--sollix-red);
  color: var(--sollix-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--sollix-blue);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.9375rem;
  color: var(--sollix-gray);
}

.contact-form {
  background: var(--sollix-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sollix-blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--sollix-dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sollix-blue);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.projects-page-grid .project-card-image {
  aspect-ratio: 16 / 10;
}

/* ============================================
   Animations
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Success popup modal */
.success-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(23, 23, 23, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.success-modal {
  background: var(--sollix-white);
  border-radius: 8px;
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.success-modal-overlay.is-visible .success-modal {
  transform: scale(1) translateY(0);
}

.success-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--sollix-gray);
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}

.success-modal-close:hover {
  color: var(--sollix-dark);
}

.success-modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(227, 30, 36, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sollix-red);
}

.success-modal-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--sollix-blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.success-modal-text {
  font-size: 0.9375rem;
  color: var(--sollix-gray);
  line-height: 1.6;
  margin-bottom: 28px;
}

.success-modal-btn {
  min-width: 140px;
}

.alert {
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* WhatsApp */
.contact-info-icon-whatsapp {
  background: #25D366;
}

.contact-whatsapp-link {
  color: #128C7E;
  font-weight: 600;
}

.contact-whatsapp-link:hover {
  color: var(--sollix-red);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float-label {
  line-height: 1;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  .whatsapp-float-label {
    display: none;
  }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-layout {
    grid-template-columns: 280px 1fr;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 64px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .hero-content {
    padding: 48px 24px;
    min-height: 420px;
    clip-path: none;
  }

  .hero-visual {
    height: 360px;
    padding: 0;
  }

  .hero-frame-outer {
    clip-path: none;
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-layout,
  .projects-layout {
    display: block;
  }

  .services-intro,
  .projects-intro {
    max-width: 480px;
    margin-bottom: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-bottom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .header-logo img,
  .header-logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-quote-desktop {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sollix-white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    padding: 14px 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-link::after {
    display: none;
  }

  .nav-item-has-dropdown {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-item-has-dropdown > .nav-link {
    border-bottom: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 8px 16px;
    display: none;
  }

  .nav-item-has-dropdown.is-open .nav-dropdown {
    display: block;
  }

  .nav-dropdown-link {
    padding: 10px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .nav-quote-mobile {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .cta-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-bar-content {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-page-grid,
  .values-grid,
  .projects-page-grid,
  .services-expertise-grid {
    grid-template-columns: 1fr;
  }

  .services-page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .services-page-hero-badge {
    width: 96px;
    height: 96px;
  }

  .services-page-hero-badge-number {
    font-size: 1.5rem;
  }

  .services-equipment-banner {
    flex-direction: column;
    padding: 20px;
  }

  .services-bottom-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }
}

@media (max-width: 430px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .contact-form {
    padding: 24px 20px;
  }
}

/* SOLLIX content sections */
.hero-brand {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--sollix-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.features-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .features-grid-four {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .features-grid-four {
    grid-template-columns: 1fr;
  }
}

.clients-section {
  background: var(--sollix-light);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.client-card {
  background: var(--sollix-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 20px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sollix-blue);
  line-height: 1.4;
  box-shadow: var(--shadow-card);
}

.footer-social-handle {
  margin-top: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.content-list {
  color: var(--sollix-gray);
  line-height: 1.75;
  margin-bottom: 16px;
  padding-left: 1.25rem;
}

.content-list li {
  margin-bottom: 8px;
}

.content-list-two-col {
  columns: 2;
  column-gap: 32px;
}

@media (max-width: 768px) {
  .content-list-two-col {
    columns: 1;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.about-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-link-card {
  display: block;
  background: var(--sollix-light);
  border-radius: 4px;
  padding: 24px 20px;
  border-left: 3px solid var(--sollix-red);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-link-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: var(--sollix-blue);
  margin-bottom: 8px;
}

.about-link-card p {
  font-size: 0.875rem;
  color: var(--sollix-text-muted);
  margin: 0;
  padding-right: 24px;
}

.about-link-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 1.25rem;
  color: var(--sollix-red);
}

.team-card {
  background: var(--sollix-light);
  border-radius: 4px;
  padding: 20px 16px;
  border-left: 3px solid var(--sollix-red);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--sollix-red);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.team-card p {
  font-weight: 600;
  color: var(--sollix-blue);
  margin: 0;
}

.team-subheading {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--sollix-blue);
  text-transform: uppercase;
  margin: 32px 0 16px;
}

/* Team Page */
.team-strength-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 16px;
}

.team-strength-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--sollix-blue);
  color: var(--sollix-white);
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
}

.team-strength-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sollix-white);
}

.team-strength-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  opacity: 0.85;
}

.team-strength-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-strength-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.team-strength-role {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: var(--sollix-blue);
  letter-spacing: 0.04em;
}

.team-strength-count {
  font-weight: 600;
  color: var(--sollix-dark);
}

.team-strength-count small {
  font-weight: 400;
  color: var(--sollix-gray);
}

.team-strength-bar {
  height: 8px;
  background: rgba(57, 49, 133, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.team-strength-bar span {
  display: block;
  height: 100%;
  background: var(--sollix-red);
  border-radius: 4px;
  min-width: 4px;
}

.team-strength-item:nth-child(2) .team-strength-bar span { background: var(--sollix-blue); }
.team-strength-item:nth-child(3) .team-strength-bar span { background: #D4A017; }
.team-strength-item:nth-child(4) .team-strength-bar span { background: #E8751A; }

.team-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.team-capability-card {
  background: var(--sollix-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-capability-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.team-capability-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 30, 36, 0.08);
  border-radius: 50%;
  color: var(--sollix-red);
}

.team-capability-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: var(--sollix-blue);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.team-capability-card p {
  font-size: 0.875rem;
  color: var(--sollix-gray);
  margin: 0;
  line-height: 1.55;
}

.team-capabilities-note {
  text-align: center;
  max-width: 640px;
  margin: 36px auto 0;
  color: var(--sollix-gray);
  font-size: 0.9375rem;
}

.team-org-chart {
  max-width: 720px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-org-level {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.team-org-level-split {
  max-width: 520px;
}

.team-org-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 28px;
  border-radius: 8px;
  min-width: 200px;
}

.team-org-node-primary {
  background: var(--sollix-blue);
  color: var(--sollix-white);
}

.team-org-node-secondary {
  background: var(--sollix-red);
  color: var(--sollix-white);
}

.team-org-node-accent {
  background: var(--sollix-white);
  border: 2px solid var(--sollix-red);
  color: var(--sollix-dark);
  flex: 1;
}

.team-org-role {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-bottom: 4px;
}

.team-org-name {
  font-weight: 600;
  font-size: 1rem;
}

.team-org-connector {
  width: 2px;
  height: 28px;
  background: var(--sollix-red);
}

.team-org-connector-split {
  width: 50%;
  max-width: 260px;
  height: 28px;
  border-left: 2px solid var(--sollix-red);
  border-right: 2px solid var(--sollix-red);
  border-top: 2px solid var(--sollix-red);
  background: transparent;
}

.team-foremen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.team-foreman-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--sollix-light);
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid var(--sollix-red);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-foreman-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.team-foreman-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sollix-blue);
  color: var(--sollix-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}

.team-foreman-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--sollix-blue);
  margin-bottom: 2px;
}

.team-foreman-role {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sollix-red);
  font-weight: 600;
  margin-bottom: 4px;
}

.team-foreman-project {
  display: block;
  font-size: 0.8125rem;
  color: var(--sollix-gray);
}

.values-grid-five {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .values-grid-five {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-foremen-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-strength-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-grid-five,
  .team-grid,
  .clients-grid,
  .about-links-grid,
  .team-capabilities-grid,
  .team-foremen-grid {
    grid-template-columns: 1fr;
  }

  .team-org-level-split {
    flex-direction: column;
    align-items: center;
  }

  .team-org-node-accent {
    width: 100%;
    max-width: 280px;
  }
}

.projects-section-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--sollix-blue);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Projects Page */
.projects-page-hero {
  position: relative;
  background: var(--sollix-blue);
  padding: 48px 0 0;
  overflow: hidden;
}

.projects-page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.projects-page-hero-accent {
  position: absolute;
  right: -80px;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(227, 30, 36, 0.12) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.projects-page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 40px;
}

.projects-page-hero-content {
  max-width: 640px;
}

.projects-page-hero-content .section-eyebrow {
  color: var(--sollix-red);
}

.projects-page-hero-content .section-title {
  color: var(--sollix-white);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.projects-page-hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}

.projects-page-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: -36px;
}

.projects-page-stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: var(--sollix-white);
  border-radius: 8px;
  padding: 20px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--sollix-red);
  transition: transform var(--transition), box-shadow var(--transition);
}

.projects-page-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.projects-page-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.08);
  color: var(--sollix-red);
  margin-bottom: 4px;
}

.projects-page-stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sollix-blue);
  line-height: 1;
}

.projects-page-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sollix-gray);
  font-weight: 500;
}

.projects-page-content {
  padding-top: calc(var(--section-padding) + 20px);
}

.projects-stats-strip {
  background: var(--sollix-blue);
  padding: 28px 0;
}

.projects-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.projects-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sollix-white);
  line-height: 1;
}

.projects-stat-label {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}

.projects-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  background: var(--sollix-white);
}

.projects-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.projects-table thead {
  background: var(--sollix-red);
  color: var(--sollix-white);
}

.projects-table th {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}

.projects-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--sollix-dark);
  vertical-align: top;
  line-height: 1.5;
}

.projects-table tbody tr:last-child td {
  border-bottom: none;
}

.projects-table tbody tr:hover {
  background: rgba(57, 49, 133, 0.03);
}

.projects-table-col-sr {
  width: 48px;
  text-align: center;
}

.projects-table-col-date {
  white-space: nowrap;
}

.projects-table-col-name strong {
  display: block;
  color: var(--sollix-blue);
  font-weight: 600;
  line-height: 1.4;
}

.projects-table-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(57, 49, 133, 0.08);
  color: var(--sollix-blue);
  font-weight: 600;
  font-size: 0.8125rem;
}

.projects-table-note {
  display: block;
  font-size: 0.8125rem;
  color: var(--sollix-gray);
  margin-top: 4px;
}

.projects-date-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--sollix-light);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sollix-blue);
  white-space: nowrap;
}

.projects-date-badge-live {
  background: rgba(227, 30, 36, 0.08);
  color: var(--sollix-red);
}

.projects-mobile-list {
  display: none;
}

.projects-mobile-card {
  background: var(--sollix-white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--sollix-blue);
}

.projects-mobile-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.projects-mobile-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--sollix-blue);
  margin-bottom: 12px;
  line-height: 1.35;
}

.projects-mobile-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.projects-mobile-meta div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  font-size: 0.875rem;
}

.projects-mobile-meta dt {
  font-weight: 600;
  color: var(--sollix-blue);
  margin: 0;
}

.projects-mobile-meta dd {
  color: var(--sollix-gray);
  margin: 0;
}

.projects-current-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.projects-current-card {
  background: var(--sollix-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 24px;
  border-top: 4px solid var(--sollix-red);
  transition: transform var(--transition), box-shadow var(--transition);
}

.projects-current-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.projects-current-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 8px;
}

.projects-status-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--sollix-red);
  color: var(--sollix-white);
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.projects-current-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--sollix-blue);
  margin-bottom: 16px;
  line-height: 1.35;
}

.projects-current-meta {
  display: grid;
  gap: 12px;
  margin: 0;
}

.projects-current-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.projects-current-meta dt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sollix-gray);
  margin: 0;
}

.projects-current-meta dt svg {
  color: var(--sollix-red);
  flex-shrink: 0;
}

.projects-current-meta dd {
  font-size: 0.875rem;
  color: var(--sollix-dark);
  margin: 0;
  padding-left: 22px;
  line-height: 1.45;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-detail-card {
  background: var(--sollix-white);
  border-radius: 4px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--sollix-blue);
}

.project-detail-card-current {
  border-left-color: var(--sollix-red);
}

.project-detail-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--sollix-blue);
  margin-bottom: 12px;
  line-height: 1.35;
}

.project-detail-note {
  font-size: 0.875rem;
  color: var(--sollix-gray);
  margin: -4px 0 12px;
}

.project-meta {
  display: grid;
  gap: 8px;
  margin: 0;
}

.project-meta div {
  display: grid;
  grid-template-columns: minmax(120px, 140px) 1fr;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.project-meta dt {
  font-weight: 600;
  color: var(--sollix-blue);
  margin: 0;
}

.project-meta dd {
  color: var(--sollix-gray);
  margin: 0;
  word-break: break-word;
}

@media (max-width: 992px) {
  .projects-current-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-page-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .projects-page-stat-card {
    padding: 16px 18px;
  }

  .projects-page-stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .projects-page-hero {
    padding: 36px 0 0;
  }

  .projects-page-stats {
    grid-template-columns: 1fr;
    margin-bottom: -24px;
    gap: 12px;
  }

  .projects-page-stat-card {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 16px 18px;
  }

  .projects-page-stat-icon {
    margin-bottom: 0;
  }

  .projects-page-stat-number {
    font-size: 1.375rem;
  }

  .projects-page-stat-label {
    width: 100%;
    padding-left: 52px;
    margin-top: -4px;
  }

  .projects-page-content {
    padding-top: calc(var(--section-padding) + 8px);
  }

  .projects-table-wrap {
    display: none;
  }

  .projects-mobile-list {
    display: grid;
    gap: 16px;
    margin-top: 8px;
  }

  .projects-current-grid {
    grid-template-columns: 1fr;
  }

  .projects-stat-number {
    font-size: 1.75rem;
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .project-meta div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .projects-mobile-meta div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
