.engineering-hook {
  position: relative;
  padding: 60px 0;
  background: #f4f6f7;
  overflow: hidden;
}
.engineering-hook::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(6,31,42,0.15),
    transparent
  );
  transform: skewX(-15deg);
}

.hook-content {
  position: relative;
  max-width: 820px;
}

.hook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 420px;
  position: relative;
}


.hook-content h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #061F2A;
}

.hook-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4f5f68;
  max-width: 500px;
  margin-bottom: 40px;
}

.hook-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
 background: linear-gradient(
    90deg,
    #061F2A 0%,
    #0A2F3F 50%,
    #061F2A 100%
  );
  color: #fff;
  border: 1px solid #fff;
  padding: 14px 28px;
  transition: all 0.3s ease;
  border-radius: 6px;
}


.hook-image {
  position: relative;
  height: 100%;
  min-height: 420px;
  background-image: url("/C.png");
  background-size: cover;
  background-position: center;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}


@media (max-width: 768px) {
  .engineering-hook {
    padding: 80px 0;
  }

  .hook-content {
    text-align: center;
  }

  .hook-content p {
    margin: 0 auto 35px auto;
  }
}


@media (max-width: 1024px) {
  .hook-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .hook-image {
    min-height: 360px;
    clip-path: none;
  }

  .engineering-hook::after {
    display: none;
  }

  .hook-content {
    max-width: 100%;
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .engineering-hook {
    padding: 70px 0;
  }

  .hook-grid {
    gap: 30px;
  }

  .hook-content {
    text-align: center;
    padding: 0 24px;
  }

  .hook-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .hook-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 auto 32px auto;
  }

  .hook-cta {
    justify-content: center;
    padding: 14px 24px;
  }

  .hook-image {
    min-height: 300px;
    background-position: center top;
  }
}

@media (max-width: 480px) {
  .hook-content h2 {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
  }

  .hook-content p {
    font-size: 0.9rem;
  }

  .hook-image {
    min-height: 260px;
  }
}
