* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  :root {
    --dark-blue: #123d54;
    --muted-blue: #77799f;
    --purple: #575d91;
    --orange: #ff7900;
    --yellow: #ffc21c;
    --white: #ffffff;
    --soft-bg: #e8e8e6;
  }
  
  body {
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    background: var(--soft-bg);
    display: grid;
    place-items: center;
    color: var(--dark-blue);
    padding: 48px 24px;
  }
  
  .page {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .card {
    width: min(1120px, 100%);
    min-height: 760px;
    background: var(--white);
    border-radius: 22px;
    padding: 74px 84px 82px;
    position: relative;
    overflow: hidden;
    box-shadow:
      0 48px 70px rgba(26, 27, 55, 0.42),
      0 8px 20px rgba(26, 27, 55, 0.12);
  }
  
  /* Navbar */
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #050505;
    font-size: 27px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -1px;
  }
  
  .brand-mark {
    width: 26px;
    height: 26px;
    position: relative;
    display: inline-block;
  }
  
  .brand-mark i {
    width: 13px;
    height: 13px;
    background: linear-gradient(135deg, #ff9800, #ff6600);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    position: absolute;
  }
  
  .brand-mark i:nth-child(1) {
    top: 0;
    left: 3px;
  }
  
  .brand-mark i:nth-child(2) {
    top: 10px;
    left: 11px;
  }
  
  .brand-mark i:nth-child(3) {
    top: 16px;
    left: 0;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 72px;
    margin-left: auto;
    margin-right: 78px;
  }
  
  .nav-menu a {
    color: var(--muted-blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.25s ease;
  }
  
  .nav-menu a:hover {
    color: var(--orange);
  }
  
  .hamburger {
    width: 28px;
    height: 24px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 2px;
    width: 100%;
    background: var(--muted-blue);
    border-radius: 100px;
  }
  
  /* Hero */
  
  .hero {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    margin-top: 105px;
  }
  
  .hero-text {
    max-width: 470px;
    z-index: 2;
  }
  
  .hero-text h1 {
    font-size: clamp(42px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.8px;
    color: var(--dark-blue);
    margin-bottom: 18px;
  }
  
  .hero-text p {
    color: var(--dark-blue);
    font-size: 16px;
    line-height: 1.62;
    font-weight: 400;
    max-width: 410px;
    margin-bottom: 18px;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    height: 34px;
    padding: 0 22px;
    border-radius: 6px;
    color: #ffffff;
    background: linear-gradient(180deg, #ff9c00, #ff6700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(255, 117, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 117, 0, 0.28);
  }
  
  /* Social icons */
  
  .socials {
    position: absolute;
    left: 90px;
    bottom: 105px;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .socials a {
    width: 28px;
    height: 28px;
    color: var(--dark-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, color 0.25s ease;
  }
  
  .socials a:hover {
    color: var(--orange);
    transform: translateY(-3px);
  }
  
  .socials svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }
  
  /* Illustration */
  
  .illustration {
    width: 100%;
    min-height: 420px;
    position: relative;
  }
  
  .monitor {
    width: 465px;
    height: 320px;
    position: absolute;
    top: 25px;
    right: 35px;
  }
  
  .monitor-screen {
    width: 465px;
    height: 264px;
    background: #ffffff;
    border: 14px solid var(--purple);
    border-radius: 8px 8px 0 0;
    position: relative;
    overflow: hidden;
  }
  
  .monitor-screen::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: linear-gradient(180deg, #eff8ff, #cfe4f8);
    z-index: 4;
  }
  
  .monitor-bottom {
    width: 465px;
    height: 64px;
    background: linear-gradient(180deg, #e8f5ff, #c9ddf0);
    border-radius: 0 0 8px 8px;
    position: relative;
    box-shadow: 0 18px 0 rgba(72, 92, 150, 0.08);
  }
  
  .monitor-stand {
    width: 78px;
    height: 58px;
    background: linear-gradient(180deg, #ccd7ea, #aebdd9);
    clip-path: polygon(28% 0, 72% 0, 100% 100%, 0 100%);
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .keyboard {
    width: 240px;
    height: 32px;
    background: linear-gradient(180deg, #e8f0f8, #c9d9eb);
    border-radius: 0 0 50% 50%;
    position: absolute;
    bottom: -48px;
    right: 35px;
    opacity: 0.65;
  }
  
  .keyboard::before {
    content: "";
    width: 170px;
    height: 9px;
    background: repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.55) 0 14px,
      transparent 14px 22px
    );
    position: absolute;
    top: 8px;
    left: 35px;
    border-radius: 20px;
  }
  
  .hill {
    position: absolute;
    bottom: 40px;
    background: linear-gradient(135deg, #7bf06d, #16b8aa);
    z-index: 3;
  }
  
  .hill-1 {
    width: 160px;
    height: 48px;
    left: -10px;
    border-radius: 70% 60% 0 0;
  }
  
  .hill-2 {
    width: 180px;
    height: 36px;
    left: 110px;
    border-radius: 65% 60% 0 0;
    background: linear-gradient(135deg, #42cf9e, #14a99b);
  }
  
  .hill-3 {
    width: 200px;
    height: 42px;
    right: -12px;
    border-radius: 75% 60% 0 0;
  }
  
  /* Yellow warning triangle */
  
  .warning-sign {
    width: 118px;
    height: 104px;
    background: var(--yellow);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 48px;
    left: 54px;
    z-index: 8;
    filter: drop-shadow(0 8px 0 rgba(255, 115, 0, 0.95));
  }
  
  .warning-sign::before {
    content: "";
    width: 76px;
    height: 66px;
    background: #f7c536;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 24px;
    left: 21px;
  }
  
  .warning-sign::after {
    content: "";
    width: 62px;
    height: 54px;
    background: #ffffff;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 33px;
    left: 28px;
    opacity: 0.95;
  }
  
  .warning-sign span {
    position: absolute;
    top: 38px;
    left: 51px;
    z-index: 3;
    color: #20243d;
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
  }
  
  /* Board */
  
  .sign-board {
    width: 205px;
    height: 82px;
    background: var(--purple);
    color: #ffffff;
    border-radius: 3px;
    position: absolute;
    top: 83px;
    right: 42px;
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 0.95;
  }
  
  .sign-board::before,
  .sign-board::after {
    content: "";
    width: 7px;
    height: 7px;
    background: #dfe4f6;
    border-radius: 50%;
    position: absolute;
    top: 8px;
  }
  
  .sign-board::before {
    left: 8px;
  }
  
  .sign-board::after {
    right: 8px;
  }
  
  .sign-board strong {
    font-size: 49px;
    font-weight: 800;
    letter-spacing: -2px;
  }
  
  .sign-board span {
    font-size: 20px;
    font-weight: 700;
  }
  
  /* Worker */
  
  .worker {
    width: 94px;
    height: 190px;
    position: absolute;
    left: 188px;
    bottom: 61px;
    z-index: 20;
  }
  
  .head {
    width: 24px;
    height: 28px;
    background: #ffd0a7;
    border-radius: 50%;
    position: absolute;
    top: 38px;
    left: 35px;
  }
  
  .helmet {
    width: 34px;
    height: 17px;
    background: var(--orange);
    border-radius: 22px 22px 3px 3px;
    position: absolute;
    top: 31px;
    left: 30px;
    z-index: 2;
  }
  
  .helmet::after {
    content: "";
    width: 26px;
    height: 5px;
    background: var(--orange);
    position: absolute;
    right: -13px;
    bottom: 1px;
    border-radius: 20px;
  }
  
  .body {
    width: 36px;
    height: 72px;
    background: linear-gradient(180deg, #ff9400, #ff6500);
    border-radius: 16px 16px 3px 3px;
    position: absolute;
    top: 62px;
    left: 29px;
  }
  
  .arm {
    width: 9px;
    height: 65px;
    background: #ffb56d;
    position: absolute;
    top: 48px;
    border-radius: 10px;
    transform-origin: bottom center;
  }
  
  .arm-left {
    left: 20px;
    transform: rotate(-22deg);
  }
  
  .arm-right {
    right: 20px;
    transform: rotate(22deg);
  }
  
  .leg {
    width: 12px;
    height: 82px;
    background: #17263c;
    position: absolute;
    top: 128px;
    border-radius: 10px 10px 2px 2px;
  }
  
  .leg-left {
    left: 33px;
    transform: rotate(2deg);
  }
  
  .leg-right {
    right: 33px;
    transform: rotate(-2deg);
  }
  
  /* Crate */
  
  .crate {
    width: 108px;
    height: 55px;
    border: 6px solid #9daacf;
    position: absolute;
    bottom: 24px;
    left: 166px;
    z-index: 16;
    background: rgba(255,255,255,0.35);
  }
  
  .crate::before,
  .crate::after {
    content: "";
    width: 128px;
    height: 5px;
    background: #9daacf;
    position: absolute;
    top: 21px;
    left: -16px;
  }
  
  .crate::before {
    transform: rotate(28deg);
  }
  
  .crate::after {
    transform: rotate(-28deg);
  }
  
  .crate span {
    position: absolute;
    inset: 0;
    border-left: 4px solid #9daacf;
    border-right: 4px solid #9daacf;
    margin: 0 47px;
  }
  
  /* Traffic cones */
  
  .cone {
    width: 92px;
    height: 126px;
    position: absolute;
    bottom: 28px;
    z-index: 12;
  }
  
  .cone-left {
    left: 38px;
  }
  
  .cone-right {
    right: -10px;
  }
  
  .cone::before {
    content: "";
    width: 74px;
    height: 106px;
    background: var(--orange);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: absolute;
    left: 9px;
    bottom: 13px;
  }
  
  .cone::after {
    content: "";
    width: 92px;
    height: 14px;
    background: var(--orange);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .cone span {
    width: 57px;
    height: 12px;
    background: #ffffff;
    position: absolute;
    left: 17px;
    bottom: 40px;
    z-index: 3;
    box-shadow: 0 -34px 0 #ffffff;
  }
  
  /* Responsive */
  
  @media (max-width: 1060px) {
    .card {
      padding: 54px 48px 72px;
    }
  
    .nav-menu {
      gap: 36px;
      margin-right: 48px;
    }
  
    .hero {
      grid-template-columns: 1fr;
      gap: 35px;
      margin-top: 70px;
    }
  
    .hero-text {
      max-width: 100%;
    }
  
    .hero-text p {
      max-width: 560px;
    }
  
    .illustration {
      min-height: 430px;
    }
  
    .monitor {
      left: 50%;
      right: auto;
      transform: translateX(-50%);
    }
  
    .socials {
      position: static;
      margin-top: 30px;
    }
  }
  
  @media (max-width: 760px) {
    body {
      padding: 24px 14px;
    }
  
    .card {
      min-height: auto;
      padding: 34px 24px 46px;
      border-radius: 18px;
    }
  
    .brand {
      font-size: 23px;
    }
  
    .nav-menu {
      display: none;
    }
  
    .hero {
      margin-top: 58px;
    }
  
    .hero-text h1 {
      font-size: 42px;
    }
  
    .hero-text p {
      font-size: 15px;
    }
  
    .illustration {
      transform: scale(0.72);
      transform-origin: top center;
      min-height: 310px;
      margin-top: 10px;
    }
  
    .socials {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero-text h1 {
      font-size: 34px;
    }
  
    .illustration {
      transform: scale(0.58);
      min-height: 250px;
    }
  }