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

:root {
  --navy:      #1e2a47;
  --white:     #ffffff;
  --sky:       #d6eaf8;
  --sky-mid:   #b8d9f0;
  --orange:    #f5a623;
  --orange2:   #e8821a;
  --cone:      #e05a1a;
  --gear:      #f5a623;
  --crane:     #a8c4dc;
  --barrier-y: #f5c400;
  --barrier-b: #1a1a2e;
  --text-dark: #1e2a47;
  --text-body: #4a5568;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 960px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ── Blue blob background ── */
.blob {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 58%;
  background: linear-gradient(160deg, #cfe8f5 0%, #b8d9f0 100%);
  border-radius: 80% 80% 0 0 / 40% 40% 0 0;
  z-index: 0;
}

/* ── Layout ── */
.layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  padding: 36px 48px 28px;
  gap: 32px;
}

/* ── Left column ── */
.left {
  /* flex: 0 0 340px; */
  flex: 0 0 clamp(200px, 40%, 340px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}

.company-name {
  font-weight: 900;
  /* font-size: 13px; */
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 1.2px;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.headline {
  /* font-size: 42px; */
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.description {
  /* font-size: 13.5px; */
  font-size: clamp(12px, 1.4vw, 13.5px);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 32px;
  /* max-width: 280px; */
  max-width: 100%;
}

.btn-contact {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
  width: fit-content;
}
.btn-contact:hover { background: var(--orange2); transform: translateY(-2px); }

/* ── Plus decorations ── */
.plus {
  position: absolute;
  color: #a8c4dc;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  user-select: none;
  opacity: 0.8;
}
.plus-1 { top: 44px; right: 52px; font-size: 28px; }
.plus-2 { top: 56%; left: 48%; font-size: 20px; }
.plus-3 { bottom: 90px; left: 38%; font-size: 20px; }

/* ── Right illustration ── */
.right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
}

/* ── Laptop ── */
.laptop {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
}
.laptop-screen-wrap {
  background: #1e2a47;
  border-radius: 12px 12px 0 0;
  padding: 10px 10px 0;
  position: relative;
}
.laptop-screen {
  background: #e8f4fd;
  border-radius: 6px 6px 0 0;
  height: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  overflow: hidden;
}
.screen-block {
  background: rgba(168,196,220,0.5);
  border-radius: 4px;
}
.barrier-overlay {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 52px;
  overflow: hidden;
}
.barrier-stripe {
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--barrier-y) 0px,
    var(--barrier-y) 18px,
    var(--barrier-b) 18px,
    var(--barrier-b) 36px
  );
}
.laptop-base {
  background: #d0d8e0;
  height: 14px;
  border-radius: 0 0 4px 4px;
}
.laptop-keyboard {
  background: #b8c4cc;
  border-radius: 0 0 12px 12px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.laptop-trackpad {
  width: 50px;
  height: 14px;
  background: #a0aab2;
  border-radius: 3px;
}

/* ── Traffic cone ── */
.cone {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  z-index: 10;
}
.cone-body {
  width: 0; height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-bottom: 58px solid var(--cone);
  position: relative;
}
.cone-stripe {
  position: absolute;
  bottom: 14px; left: -16px;
  width: 32px; height: 9px;
  background: white;
  border-radius: 2px;
}
.cone-base {
  width: 54px; height: 10px;
  background: var(--cone);
  border-radius: 3px;
  margin-left: -27px;
}

/* ── Crane ── */
.crane-wrap {
  position: absolute;
  top: 10px; right: -20px;
  width: 160px;
  opacity: 0.85;
}

/* ── Gears ── */
.gear-wrap { position: absolute; }
.gear-wrap svg { display: block; }
.gear-top-right  { top: 30px;   right: -10px; width: 52px; }
.gear-bottom-left{ bottom: 110px; left: 15px;  width: 44px; }

/* ── Workers ── */
.worker { position: absolute; }
.worker-top   { top: -30px; left: 40px;  width: 68px; }
.worker-right { bottom: 30px; right: -50px; width: 78px; }

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 14px 0 20px;
  background: var(--white);
}
.footer-text {
  font-size: 12.5px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.footer-text a { color: #999; text-decoration: none; }
.footer-text a:hover { color: #555; }
.footer-icon {
  width: 18px; height: 18px;
  background: #f77f00;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 900;
}

/* ── Animations ── */
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes spin-rev  { to { transform: rotate(-360deg); } }
.gear-spin-cw  { animation: spin-slow 8s linear infinite; transform-origin: center; }
.gear-spin-ccw { animation: spin-rev  8s linear infinite; transform-origin: center; }

@keyframes float-up { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.worker-top { animation: float-up 3s ease-in-out infinite; }

@keyframes swing { 0%,100%{transform:rotate(-4deg)} 50%{transform:rotate(4deg)} }
.crane-wrap { animation: swing 4s ease-in-out infinite; transform-origin: bottom center; }


/* ═══════════════════════════════════════
   RESPONSIVE — Tablet (max 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  body { padding: 12px; align-items: flex-start; padding-top: 24px; }

  .layout {
    flex-direction: column;
    padding: 28px 28px 0;
    gap: 0;
  }

  .left {
    flex: none;
    width: 100%;
    padding-top: 0;
    align-items: center;
    text-align: center;
  }

  .company-name { margin-bottom: 24px; }

  .headline { font-size: 32px; margin-bottom: 16px; }

  .description { max-width: 100%; margin-bottom: 24px; }

  .btn-contact { align-self: center; }

  .right {
    width: 100%;
    min-height: 320px;
    margin-top: 16px;
  }

  .laptop { width: 280px; bottom: 20px; }

  .laptop-screen { height: 155px; }

  .worker-top { width: 52px; left: 20px; top: -22px; }
  .worker-right { width: 60px; right: -20px; bottom: 16px; }

  .crane-wrap { width: 110px; right: 0; top: 0; }

  .gear-top-right  { width: 38px; right: 0; }
  .gear-bottom-left{ width: 32px; left: 5px; bottom: 80px; }

  .cone { bottom: 44px; }

  .plus-1 { right: 20px; top: 20px; }
  .plus-2 { display: none; }
  .plus-3 { display: none; }
}


/* ═══════════════════════════════════════
   RESPONSIVE — Mobile (max 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  body { padding: 8px; padding-top: 16px; }

  .card { border-radius: 16px; }

  .layout { padding: 24px 20px 0; }

  .headline { font-size: 26px; }

  .description { font-size: 13px; }

  .right { min-height: 260px; }

  .laptop { width: 220px; bottom: 16px; }

  .laptop-screen { height: 122px; gap: 6px; padding: 8px; }

  .barrier-overlay { height: 38px; }

  .laptop-keyboard { height: 22px; }
  .laptop-trackpad { width: 36px; height: 10px; }

  .worker-top   { width: 42px; left: 10px; top: -18px; }
  .worker-right { width: 48px; right: -10px; bottom: 12px; }

  .crane-wrap { width: 88px; right: 0; top: 0; }

  .gear-top-right   { width: 30px; }
  .gear-bottom-left { width: 26px; bottom: 70px; left: 2px; }

  .cone { bottom: 36px; }
  .cone-body {
    border-left-width: 18px;
    border-right-width: 18px;
    border-bottom-width: 44px;
  }
  .cone-base { width: 42px; margin-left: -21px; }
  .cone-stripe { left: -12px; width: 24px; height: 7px; bottom: 10px; }

  .btn-contact { font-size: 11px; padding: 11px 22px; }

  .footer { padding: 12px 0 16px; }
  .footer-text { font-size: 11px; }
}
  