  :root {
      --bg-dark: #07090d;
      --bg-card: #0f141c;
      --bg-card-hover: #161e2b;
      --primary-yellow: #ffb800;
      --primary-yellow-hover: #e0a200;
      --accent-blue: #0066ff;
      --text-white: #ffffff;
      --text-gray: #94a3b8;
      --text-muted: #64748b;
      --border-color: rgba(255, 255, 255, 0.1);
      --font-heading: 'Montserrat', sans-serif;
      --font-body: 'Space Grotesk', sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

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

    h1, h2, h3, h4, .brand-text {
      font-family: var(--font-heading);
      text-transform: uppercase;
      letter-spacing: -0.5px;
    }

    /* --- CONTAINER & BUTTONS --- */
    .container {
      max-width: 1380px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 1.1rem 2rem;
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-primary {
      background-color: var(--primary-yellow);
      color: #000;
      border: 2px solid var(--primary-yellow);
      box-shadow: 0 4px 20px rgba(255, 184, 0, 0.25);
    }

    .btn-primary:hover {
      background-color: var(--primary-yellow-hover);
      border-color: var(--primary-yellow-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(255, 184, 0, 0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-white);
      border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .btn-outline:hover {
      border-color: var(--primary-yellow);
      color: var(--primary-yellow);
      transform: translateY(-2px);
    }

    /* --- NAVBAR --- */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(7, 9, 13, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 85px;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--text-white);
      text-decoration: none;
      letter-spacing: 2px;
    }

    .logo span {
      color: var(--primary-yellow);
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-gray);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: var(--primary-yellow);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-white);
      cursor: pointer;
    }

    /* --- HERO SECTION --- */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 100px;
      padding-bottom: 3rem;
      background-image: 
        linear-gradient(to right, 
          rgba(7, 9, 13, 0.98) 0%, 
          rgba(7, 9, 13, 0.92) 38%, 
          rgba(7, 9, 13, 0.65) 60%,
          rgba(7, 9, 13, 0.25) 100%),
        url('../background.png');
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
    }

    .hero-content {
  max-width: 680px;
  width: 100%;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

    .hero-subtitle {
      color: var(--primary-yellow);
      font-weight: 700;
      letter-spacing: 2px;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 0.6rem;
    }

    .hero-subtitle::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 45px;
      height: 2px;
      background-color: var(--primary-yellow);
    }

    .hero .container {
  width: 100%;
}

.hero {
  background-position: center right;
}

    .hero-title {
      font-size: clamp(2.5rem, 4.8vw, 4.2rem);
      font-weight: 900;
      line-height: 1.05;
      margin-bottom: 1.5rem;
      color: var(--text-white);
      letter-spacing: -1px;
    }

    .hero-title .highlight {
      color: var(--primary-yellow);
    }

    .hero-description {
      color: #cbd5e1;
      font-size: 1.05rem;
      line-height: 1.6;
      margin-bottom: 2.2rem;
      font-weight: 400;
      max-width: 520px;
    }

    .hero-cta {
      display: flex;
      gap: 1.2rem;
      margin-bottom: 3.5rem;
      flex-wrap: wrap;
    }

    /* --- HERO FEATURES BADGES --- */
    .hero-features {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      position: relative;
    }

    .feature-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: -1.25rem;
      top: 15%;
      height: 70%;
      width: 1px;
      background-color: rgba(255, 255, 255, 0.15);
    }

    .feature-icon {
      color: var(--primary-yellow);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-text {
      font-size: 0.78rem;
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: 0.8px;
      color: var(--text-white);
      font-family: var(--font-heading);
    }

    /* --- SECTIONS --- */
    section {
      padding: 6rem 0;
    }

    .section-header {
      margin-bottom: 3.5rem;
    }

    .section-subtitle {
      color: var(--primary-yellow);
      font-weight: 800;
      letter-spacing: 2px;
      font-size: 0.85rem;
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 800;
    }

    /* --- SOLUTIONS SECTION --- */
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.8rem;
    }

    .solution-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 2.5rem 2rem;
      border-radius: 6px;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .solution-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--primary-yellow);
      transform: translateY(-6px);
    }

    .solution-number {
      font-size: 2.2rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.15);
      margin-bottom: 1.2rem;
      font-family: var(--font-heading);
    }

    .solution-title {
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }

    .solution-desc {
      color: var(--text-gray);
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }

    .solution-link {
      color: var(--primary-yellow);
      text-decoration: none;
      font-weight: 800;
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      letter-spacing: 0.5px;
      transition: gap 0.3s ease;
    }

    .solution-card:hover .solution-link {
      gap: 0.8rem;
    }

    /* --- DIFFERENCE SECTION --- */
    .difference-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .diff-card {
      border-left: 3px solid var(--primary-yellow);
      background: var(--bg-card);
      padding: 2rem;
      border-radius: 0 6px 6px 0;
      border-top: 1px solid var(--border-color);
      border-right: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .diff-title {
      font-size: 1.1rem;
      margin-bottom: 0.8rem;
      color: var(--text-white);
    }

    .diff-desc {
      color: var(--text-gray);
      font-size: 0.9rem;
    }

    /* --- PROCESS SECTION --- */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.8rem;
    }

    .step-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 2rem;
      border-radius: 6px;
    }

    .step-number {
      font-size: 1.1rem;
      font-weight: 800;
      color: #000;
      background: var(--primary-yellow);
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      margin-bottom: 1.5rem;
      font-family: var(--font-heading);
    }

    /* --- CONTACT & FORM --- */
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    .contact-form {
      background: var(--bg-card);
      padding: 2.5rem;
      border-radius: 8px;
      border: 1px solid var(--border-color);
    }

    .form-group {
      margin-bottom: 1.4rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-gray);
      letter-spacing: 0.5px;
    }

    .form-control {
      width: 100%;
      padding: 0.9rem;
      background: var(--bg-dark);
      border: 1px solid var(--border-color);
      color: var(--text-white);
      border-radius: 4px;
      font-family: inherit;
      font-size: 0.95rem;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary-yellow);
    }

    .contact-info-list {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .info-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .info-icon {
      color: var(--primary-yellow);
      background: rgba(255, 184, 0, 0.1);
      padding: 0.8rem;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* --- FOOTER --- */
    footer {
      background: #040508;
      border-top: 1px solid var(--border-color);
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-desc {
      color: var(--text-gray);
      margin-top: 1rem;
      font-size: 0.9rem;
      max-width: 320px;
    }

    .footer-title {
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
      color: var(--primary-yellow);
      letter-spacing: 1px;
    }

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

    .footer-links a {
      color: var(--text-gray);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--text-white);
    }

    .footer-bottom {
      border-top: 1px solid var(--border-color);
      padding-top: 2rem;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    /* --- RESPONSIVE DESIGN --- */
    @media (max-width: 992px) {
      .contact-container {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
      }
      .nav-links.active {
        display: flex;
      }
      .menu-toggle {
        display: block;
      }
      .hero {
        background-image: 
          linear-gradient(to bottom, 
            rgba(7, 9, 13, 0.95) 0%, 
            rgba(7, 9, 13, 0.88) 60%, 
            rgba(7, 9, 13, 0.98) 100%),
          url('../background.png');
        padding-top: 120px;
      }
      .hero-cta {
        flex-direction: column;
      }
      .hero-cta .btn {
        width: 100%;
      }
      .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
      }
      .feature-item:not(:last-child)::after {
        display: none;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }


    /* =========================================
   SOLUTIONS SECTION
========================================= */

.solutions-section {
  position: relative;
  padding: 100px 0;
  background: #080b0f;
  overflow: hidden;
}

.solutions-section .section-header {
  max-width: 850px;
  margin-bottom: 45px;
}

.solutions-section .section-subtitle {
  color: #ffb800;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.solutions-section .section-title {
  margin: 0;

  color: #fff;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;

  line-height: .98;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.solutions-section .section-description {
  max-width: 650px;
  margin-top: 20px;

  color: #9da6b2;

  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}


/* =========================================
   GRID
   2 CARDS IN ONE ROW
========================================= */

.solutions-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}


/* =========================================
   CARD
   IMAGE RATIO = 1536 / 1024 = 3 / 2
========================================= */

.solution-card {
  position: relative;

  width: 100%;

  aspect-ratio: 3 / 2;

  min-height: 0;

  overflow: hidden;

  background: #11161c;

  border: 1px solid rgba(255,255,255,.10);

  border-radius: 6px;

  isolation: isolate;

  cursor: pointer;

  transition:
    transform .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;
}

.solution-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255,184,0,.55);

  box-shadow:
    0 25px 60px rgba(0,0,0,.35);
}


/* =========================================
   IMAGE
========================================= */

.solution-card > img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  /*
     IMPORTANT:
     Your source image is 1536x1024 = 3:2
     Card is also 3:2
  */

  object-fit: cover;

  object-position: center;

  z-index: -3;

  transform: scale(1);

  transition:
    transform .7s cubic-bezier(.2,.8,.2,1),
    filter .5s ease;
}

.solution-card:hover > img {
  transform: scale(1.04);
}


/* =========================================
   INDIVIDUAL IMAGE POSITION
========================================= */

/* Industrial Painting */
.solution-card:nth-child(1) > img {
  object-position: center center;
}

/* Epoxy Flooring */
.solution-card:nth-child(2) > img {
  object-position: center center;
}

/* PU Flooring */
.solution-card:nth-child(3) > img {
  object-position: center center;
}

/* Waterproofing */
.solution-card:nth-child(4) > img {
  object-position: center center;
}


/* =========================================
   OVERLAY
========================================= */

.solution-overlay {
  position: absolute;

  inset: 0;

  z-index: -2;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.03) 0%,
      rgba(0,0,0,.08) 30%,
      rgba(0,0,0,.48) 58%,
      rgba(0,0,0,.92) 100%
    );

  pointer-events: none;
}


/* Extra dark area from left */

.solution-card::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.28) 0%,
      rgba(0,0,0,.08) 55%,
      transparent 100%
    );

  pointer-events: none;
}


/* =========================================
   TOP YELLOW LINE
========================================= */

.solution-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: #ffb800;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform .4s ease;

  z-index: 5;
}

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


/* =========================================
   CONTENT
========================================= */

.solution-content {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 34px;

  z-index: 4;
}


/* =========================================
   NUMBER
========================================= */

.solution-number {
  display: block;

  margin-bottom: 12px;

  color: #ffb800;

  font-family: "Montserrat", sans-serif;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 2.5px;
}


/* =========================================
   TITLE
========================================= */

.solution-content h3 {
  margin: 0 0 12px;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(26px, 2.5vw, 38px);

  font-weight: 900;

  line-height: 1;

  letter-spacing: -1.5px;

  text-transform: uppercase;
}


/* =========================================
   DESCRIPTION
========================================= */

.solution-content p {
  max-width: 570px;

  margin: 0 0 20px;

  color: #d0d6dd;

  font-family: "Space Grotesk", sans-serif;

  font-size: 14px;

  line-height: 1.6;
}


/* =========================================
   LINK
========================================= */

.solution-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: #ffb800;

  font-family: "Montserrat", sans-serif;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.3px;

  text-decoration: none;

  text-transform: uppercase;

  transition:
    gap .3s ease,
    color .3s ease;
}

.solution-link span {
  font-size: 18px;

  line-height: 1;

  transition: transform .3s ease;
}

.solution-card:hover .solution-link {
  gap: 15px;

  color: #fff;
}

.solution-card:hover .solution-link span {
  transform: translateX(3px);
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

  .solutions-grid {
    gap: 28px;
  }

  .solution-content {
    padding: 40px;
  }

  .solution-content h3 {
    font-size: 40px;
  }

  .solution-content p {
    font-size: 15px;
  }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .solutions-section {
    padding: 75px 0;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
  }

  .solution-content {
    padding: 25px;
  }

  .solution-content h3 {
    font-size: 26px;
  }

  .solution-content p {
    font-size: 13px;

    line-height: 1.5;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .solutions-section {
    padding: 60px 0;
  }

  .solutions-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  /*
     Mobile card ratio stays 3:2
     so your 1536x1024 images fit naturally.
  */

  .solution-card {
    aspect-ratio: 3 / 2;
  }

  .solution-content {
    padding: 24px 22px;
  }

  .solution-content h3 {
    font-size: 26px;

    letter-spacing: -1px;
  }

  .solution-content p {
    font-size: 13px;

    max-width: 100%;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .solutions-section {
    padding: 50px 0;
  }

  .solutions-section .section-title {
    font-size: 36px;

    letter-spacing: -1.5px;
  }

  .solution-card {
    aspect-ratio: 3 / 2;
  }

  .solution-content {
    padding: 20px;
  }

  .solution-content h3 {
    font-size: 22px;
  }

  .solution-content p {
    font-size: 12px;

    line-height: 1.5;

    margin-bottom: 15px;
  }

  .solution-link {
    font-size: 10px;
  }

}



/* =========================================
   FOUNDATION / PROBLEM SECTION
========================================= */

.foundation-section {
  background: #07090d;
  padding: 110px 0;
}

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

.foundation-label {
  color: var(--primary-yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.foundation-title {
  font-size: clamp(42px, 5vw, 70px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -3px;
  margin-bottom: 25px;
}

.foundation-title span {
  color: var(--primary-yellow);
}

.foundation-text {
  color: var(--text-gray);
  font-size: 17px;
  line-height: 1.8;
  max-width: 600px;
}

.foundation-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.foundation-line {
  padding: 22px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foundation-line:first-child {
  border-top: 1px solid var(--border-color);
}

.foundation-line span:first-child {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
}

.foundation-line span:last-child {
  color: var(--primary-yellow);
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}


/* =========================================
   RISK SECTION
========================================= */

.risk-section {
  padding: 110px 0;
  background: #0b0f15;
}

.risk-header {
  max-width: 800px;
  margin-bottom: 50px;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}

.risk-card {
  background: #0b0f15;
  padding: 35px 28px;
  min-height: 190px;
  transition: .35s ease;
}

.risk-card:hover {
  background: #131a23;
}

.risk-icon {
  color: var(--primary-yellow);
  margin-bottom: 30px;
}

.risk-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.risk-card p {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.6;
}


/* =========================================
   INDUSTRIES
========================================= */

.industries-section {
  padding: 110px 0;
  background: #07090d;
}

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

.industry-card {
  position: relative;
  min-height: 180px;
  padding: 30px;
  border: 1px solid var(--border-color);
  background:
    linear-gradient(
      135deg,
      rgba(255,184,0,.08),
      transparent 50%
    ),
    #0e131a;
  overflow: hidden;
  transition: .35s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-yellow);
}

.industry-number {
  color: rgba(255,255,255,.2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.industry-card h3 {
  position: absolute;
  left: 30px;
  bottom: 28px;
  font-size: 22px;
}

.industry-card i {
  position: absolute;
  right: 25px;
  top: 25px;
  color: var(--primary-yellow);
}


/* =========================================
   STATS / CAPABILITIES
========================================= */

.capabilities-section {
  padding: 80px 0;
  background: var(--primary-yellow);
  color: #050505;
}

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

.capability {
  padding: 20px 35px;
  border-right: 1px solid rgba(0,0,0,.25);
}

.capability:last-child {
  border-right: none;
}

.capability strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(35px, 4vw, 55px);
  font-weight: 900;
  line-height: 1;
}

.capability span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* =========================================
   TRANSFORMATION
========================================= */

.transformation-section {
  padding: 120px 0;
  background: #080b10;
}

.transformation-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 45px;
}

.transformation-header p {
  max-width: 500px;
  color: var(--text-gray);
  line-height: 1.7;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.transformation-card {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.transformation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.transformation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.9),
    transparent 60%
  );
}

.transformation-content {
  position: absolute;
  bottom: 28px;
  left: 30px;
  z-index: 2;
}

.transformation-content span {
  color: var(--primary-yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.transformation-content h3 {
  font-size: 28px;
  margin-top: 7px;
}


/* =========================================
   PREPARATION SECTION
========================================= */

.preparation-section {
  padding: 110px 0;
  background: #0b0f15;
}

.preparation-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.preparation-title {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -3px;
}

.preparation-title span {
  color: var(--primary-yellow);
}

.preparation-list {
  display: flex;
  flex-direction: column;
}

.preparation-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border-color);
}

.preparation-item:first-child {
  border-top: 1px solid var(--border-color);
}

.preparation-item .num {
  color: var(--primary-yellow);
  font-weight: 900;
  font-family: var(--font-heading);
}

.preparation-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.preparation-item p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}


/* =========================================
   LEADERSHIP
========================================= */

.leadership-section {
  padding: 110px 0;
  background: #07090d;
}

.leadership-card {
  border: 1px solid var(--border-color);
  background: #0e131a;
  padding: 55px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 45px;
  align-items: center;
}

.leadership-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      #1b222d,
      #080b10
    );
  border: 2px solid var(--primary-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-yellow);
  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 900;
}

.leadership-info .label {
  color: var(--primary-yellow);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
}

.leadership-info h2 {
  font-size: 35px;
  margin: 8px 0;
}

.leadership-info p {
  color: var(--text-gray);
  max-width: 650px;
  line-height: 1.7;
}

.leadership-quote {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  max-width: 250px;
  line-height: 1.5;
}


/* =========================================
   SERVICE MARQUEE
========================================= */

.service-marquee {
  overflow: hidden;
  background: var(--primary-yellow);
  color: #050505;
  padding: 22px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
}

.marquee-track b {
  font-size: 20px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(
      circle at center,
      rgba(255,184,0,.13),
      transparent 45%
    ),
    #07090d;
}

.final-cta .section-title {
  max-width: 900px;
  margin: 0 auto 25px;
  font-size: clamp(45px, 7vw, 90px);
  line-height: .95;
  letter-spacing: -4px;
}

.final-cta .section-title span {
  color: var(--primary-yellow);
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 35px;
  color: var(--text-gray);
  font-size: 16px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .foundation-grid,
  .preparation-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

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

  .capability {
    border-bottom: 1px solid rgba(0,0,0,.2);
  }

  .transformation-header {
    display: block;
  }

  .transformation-header p {
    margin-top: 20px;
  }

  .leadership-card {
    grid-template-columns: 120px 1fr;
  }

  .leadership-avatar {
    width: 120px;
    height: 120px;
    font-size: 32px;
  }

  .leadership-quote {
    grid-column: 2;
  }
}


@media (max-width: 650px) {

  .foundation-section,
  .risk-section,
  .industries-section,
  .transformation-section,
  .preparation-section,
  .leadership-section {
    padding: 75px 0;
  }

  .risk-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

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

  .capability {
    padding: 20px;
  }

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

  .transformation-card {
    aspect-ratio: 3 / 2;
  }

  .leadership-card {
    grid-template-columns: 1fr;
    padding: 35px 25px;
    text-align: center;
  }

  .leadership-avatar {
    margin: auto;
  }

  .leadership-quote {
    grid-column: auto;
    max-width: none;
  }

  .final-cta {
    padding: 80px 20px;
  }

  .final-cta .section-title {
    letter-spacing: -2px;
  }
}


/* =========================================
   INDUSTRIES SECTION
========================================= */

.industries-section {
  position: relative;
  padding: 110px 0;
  background: #080b0f;
  overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.industries-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 55px;
}

.industries-heading .section-subtitle {
  color: #ffb800;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.industries-heading .section-title {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -3px;
}

.industries-intro {
  max-width: 480px;
  margin: 0 0 5px;
  color: #9da6b2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
   GRID
========================================= */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}


/* =========================================
   CARD
========================================= */

.industry-card {
  position: relative;
  height: 420px;
  overflow: hidden;

  background: #11161c;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 6px;

  isolation: isolate;

  cursor: pointer;

  transition:
    transform .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;
}

.industry-card:hover {
  transform: translateY(-7px);

  border-color: rgba(255,184,0,.55);

  box-shadow:
    0 25px 60px rgba(0,0,0,.45);
}


/* =========================================
   IMAGE
========================================= */

.industry-card > img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: -3;

  transform: scale(1);

  transition:
    transform .8s cubic-bezier(.2,.8,.2,1),
    filter .5s ease;
}

.industry-card:hover > img {
  transform: scale(1.06);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.industry-overlay {
  position: absolute;
  inset: 0;

  z-index: -2;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.05) 0%,
      rgba(0,0,0,.10) 35%,
      rgba(0,0,0,.48) 62%,
      rgba(0,0,0,.94) 100%
    );

  pointer-events: none;
}


/* LEFT DARK GRADIENT */

.industry-card::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.25),
      transparent 70%
    );

  pointer-events: none;
}


/* =========================================
   YELLOW TOP LINE
========================================= */

.industry-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: #ffb800;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform .4s ease;

  z-index: 5;
}

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


/* =========================================
   CONTENT
========================================= */

.industry-content {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 32px;

  z-index: 4;
}


/* =========================================
   TITLE
========================================= */

.industry-content h3 {
  margin: 0 0 18px;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(28px, 3vw, 42px);

  font-weight: 900;

  line-height: 1;

  letter-spacing: -1.5px;

  text-transform: uppercase;

  text-shadow:
    0 3px 15px rgba(0,0,0,.5);
}


/* =========================================
   EXPLORE LINK
========================================= */

.industry-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #ffb800;

  font-family: "Montserrat", sans-serif;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  transition:
    color .3s ease,
    gap .3s ease;
}

.industry-link span {
  font-size: 19px;
  line-height: 1;

  transition:
    transform .3s ease;
}

.industry-card:hover .industry-link {
  color: #fff;
  gap: 16px;
}

.industry-card:hover .industry-link span {
  transform: translate(3px, -3px);
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

  .industry-card {
    height: 460px;
  }

  .industry-content {
    padding: 38px;
  }

  .industry-content h3 {
    font-size: 44px;
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .industries-section {
    padding: 80px 0;
  }

  .industries-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .industries-intro {
    max-width: 650px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .industry-card {
    height: 360px;
  }

  .industry-content {
    padding: 25px;
  }

  .industry-content h3 {
    font-size: 29px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .industries-section {
    padding: 65px 0;
  }

  .industries-heading {
    margin-bottom: 35px;
  }

  .industries-heading .section-title {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-card {
    height: 360px;
  }

  .industry-content {
    padding: 24px;
  }

  .industry-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .industries-heading .section-title {
    font-size: 34px;
  }

  .industry-card {
    height: 320px;
  }

  .industry-content {
    padding: 20px;
  }

  .industry-content h3 {
    font-size: 26px;
  }

}


/* =========================================
   INDUSTRY TITLE
========================================= */

.industry-content h3 {
  margin: 0 0 28px; /* TITLE → BUTTON GAP */

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(28px, 3vw, 42px);

  font-weight: 900;
  line-height: 1.05;

  letter-spacing: -1.5px;

  text-transform: uppercase;

  text-shadow: 0 3px 15px rgba(0,0,0,.5);
}


/* =========================================
   EXPLORE BUTTON
========================================= */

.industry-link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 12px 18px;

  color: #ffb800;

  border: 1px solid rgba(255,184,0,.65);

  background: rgba(0,0,0,.35);

  font-family: "Montserrat", sans-serif;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  text-decoration: none;

  transition:
    color .3s ease,
    background .3s ease,
    border-color .3s ease,
    gap .3s ease;
}

.industry-link span {
  font-size: 18px;
  line-height: 1;

  transition: transform .3s ease;
}

.industry-card:hover .industry-link {
  color: #000;

  background: #ffb800;

  border-color: #ffb800;

  gap: 14px;
}

.industry-card:hover .industry-link span {
  transform: translate(3px, -3px);
}


.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  border-radius: 50%;

  z-index: 9999;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float img {
    width: 31px;
    height: 31px;
  }
}

.navbar .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar .logo img {
  width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .navbar .logo img {
    width: 125px;
  }
}


/* =========================================================
   COATEXX NAVBAR
========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255,255,255,.08);
}


.nav-container {
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 145px;
  height: auto;
  display: block;
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;

  list-style: none;
  margin: 0;
  padding: 0;
}


.nav-links > li {
  position: relative;
}


.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 7px;

  color: #d4d4d4;

  text-decoration: none;

  font-family: "Montserrat", sans-serif;
  font-size: .72rem;
  font-weight: 700;

  letter-spacing: .08em;
  text-transform: uppercase;

  transition: color .25s ease;
}


.nav-links > li > a:hover {
  color: #f5c400;
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.dropdown-toggle svg {
  width: 14px;
  height: 14px;

  transition: transform .3s ease;
}


.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown-menu {
  position: absolute;

  top: calc(100% + 22px);
  left: 50%;

  width: 390px;

  padding: 10px;

  transform: translateX(-50%) translateY(12px);

  background: rgba(15,15,15,.98);

  border: 1px solid rgba(255,255,255,.1);

  box-shadow:
    0 25px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(245,196,0,.03);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
}


/* Small yellow line */

.dropdown-menu::before {
  content: "";

  position: absolute;

  top: -1px;
  left: 25px;
  right: 25px;

  height: 2px;

  background: #f5c400;
}


/* =========================================================
   SHOW DROPDOWN
========================================================= */

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {

  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%)
    translateY(0);

  pointer-events: auto;
}


/* =========================================================
   DROPDOWN ITEM
========================================================= */

.dropdown-item {
  position: relative;

  display: grid;

  grid-template-columns: 46px 1fr 18px;

  align-items: center;

  gap: 14px;

  padding: 15px;

  text-decoration: none;

  border-bottom: 1px solid rgba(255,255,255,.06);

  transition:
    background .25s ease,
    transform .25s ease;
}


.dropdown-item:last-child {
  border-bottom: 0;
}


.dropdown-item:hover {
  background: rgba(245,196,0,.08);
}


.dropdown-item:hover .dropdown-arrow {
  color: #f5c400;
  transform: translate(3px,-3px);
}


/* =========================================================
   DROPDOWN ICON
========================================================= */

.dropdown-icon {

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f5c400;

  border: 1px solid rgba(245,196,0,.25);

  background: rgba(245,196,0,.04);

  transition:
    background .25s ease,
    border-color .25s ease;
}


.dropdown-item:hover .dropdown-icon {

  background: #f5c400;

  color: #080808;

  border-color: #f5c400;
}


.dropdown-icon svg {
  width: 20px;
  height: 20px;
}


/* =========================================================
   DROPDOWN TEXT
========================================================= */

.dropdown-item strong {
  display: block;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: .78rem;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .04em;

  margin-bottom: 5px;
}


.dropdown-item small {
  display: block;

  color: #777;

  font-family: "Space Grotesk", sans-serif;

  font-size: .72rem;

  line-height: 1.4;
}


.dropdown-item:hover small {
  color: #999;
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.dropdown-arrow {

  width: 16px;
  height: 16px;

  color: #555;

  transition:
    color .25s ease,
    transform .25s ease;
}


/* =========================================================
   NAV ACTION
========================================================= */

.nav-action {
  display: flex;
  align-items: center;
  gap: 16px;
}


.nav-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;

  padding: 13px 19px !important;

  font-size: .68rem !important;

  white-space: nowrap;
}


.nav-btn svg {
  width: 15px;
  height: 15px;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  align-items: center;
  justify-content: center;

  color: #fff;

  background: transparent;

  border: 1px solid rgba(255,255,255,.12);

  cursor: pointer;
}


.menu-toggle:hover {
  color: #f5c400;
  border-color: rgba(245,196,0,.4);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .nav-links {
    gap: 20px;
  }

  .nav-links > li > a {
    font-size: .65rem;
  }

  .nav-btn {
    padding: 12px 15px !important;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .nav-container {
    min-height: 72px;
  }


  .logo img {
    width: 125px;
  }


  .nav-btn {
    display: none !important;
  }


  .menu-toggle {
    display: flex;
  }


  /* Mobile navigation */

  .nav-links {

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 10px 18px 20px;

    background: rgba(10,10,10,.98);

    border-top: 1px solid rgba(255,255,255,.08);

    box-shadow: 0 25px 50px rgba(0,0,0,.5);
  }


  .nav-links.active {
    display: flex;
  }


  .nav-links > li {
    width: 100%;
  }


  .nav-links > li > a {

    width: 100%;

    padding: 17px 5px;

    font-size: .72rem;

    border-bottom: 1px solid rgba(255,255,255,.06);
  }


  /* =====================================================
     MOBILE DROPDOWN
  ===================================================== */

  .dropdown-toggle {
    justify-content: space-between;
  }


  .dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
  }


  .dropdown-menu {

    position: static;

    width: 100%;

    padding: 5px 0;

    transform: none !important;

    background: #111;

    border: 0;

    border-left: 1px solid rgba(245,196,0,.25);

    box-shadow: none;

    opacity: 0;

    visibility: hidden;

    max-height: 0;

    overflow: hidden;

    pointer-events: none;

    transition:
      max-height .35s ease,
      opacity .25s ease,
      visibility .25s ease;
  }


  .dropdown-menu::before {
    display: none;
  }


  .dropdown.active .dropdown-menu {

    opacity: 1;

    visibility: visible;

    max-height: 500px;

    pointer-events: auto;

    transform: none;
  }


  .dropdown-item {

    grid-template-columns: 40px 1fr 16px;

    padding: 12px;

  }


  .dropdown-icon {

    width: 38px;
    height: 38px;
  }


  .dropdown-item strong {
    font-size: .68rem;
  }


  .dropdown-item small {
    font-size: .65rem;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .logo img {
    width: 115px;
  }

  .nav-container {
    padding-left: 18px;
    padding-right: 18px;
  }

}