:root {
  --navy: #003087;
  --blue: #2b6fc7;
  --pill: #e4f0fa;
  --white: #ffffff;
  --text: #3d4f66;
  --text-muted: #5a6d85;
  --font: "Montserrat", "Segoe UI", sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
}

/* Base (Mobile) */
.logo-icon {
  width: 60px;
  height: 60px;
}

.logo-text {
  font-family: "Lexend", sans-serif;
  font-size: 28px;
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-left: -5px;
  color: var(--navy);
}

.hero-title {
  font-size: clamp(38px, 10vw, 48px);
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
}

/* Mockup background & image Base (Mobile) */
.mockup-bg {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  background: url('bg.jpg') center/cover no-repeat;
  border-radius: 0;
  border-top-left-radius: 0%;
  border-top-right-radius: 0%;
  z-index: 1;
  transform: none;
}

.mockup-img {
  position: relative;
  z-index: 2;
  width: clamp(240px, 50vw, 320px);
  margin: 40px auto 0;
  transform: translateY(-20px);
  object-fit: contain;
}

/* Tablet / Desktop */
@media (min-width: 992px) {
  .logo-icon {
    width: 82px;
    height: 82px;
  }

  .logo-text {
    font-size: 38px;
    margin-left: -10px;
  }

  .hero-title {
    font-size: clamp(48px, 6vw, 72px);
  }

  .mockup-bg {
    bottom: 0;
    right: 0;
    left: auto;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border-top-left-radius: 100%;
  }

  .mockup-img {
    width: clamp(240px, 25vw, 400px);
    height: auto;
    margin: 0;
    transform: none;
  }
}