:root {
  --blue-900: #071a3f;
  --blue-800: #073781;
  --blue-700: #0056b8;
  --blue-500: #1281df;
  --green-500: #7ac943;
  --yellow-500: #ffd43b;
  --orange-500: #f28b22;
  --cola-600: #b62622;
  --ink: #101622;
  --muted: #5d6675;
  --paper: #fffaf1;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(7, 26, 63, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(135deg, rgba(242, 139, 34, 0.1) 0 12px, transparent 12px 32px);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 14px 10px 12px;
  color: var(--white);
  background: rgba(7, 26, 63, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.brand {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: -14px 0 -14px 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-900);
  background: var(--yellow-500);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--yellow-500);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--blue-900);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--blue-900);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(1.08) contrast(1.04);
}

.hero-machine {
  object-fit: contain;
  object-position: right 50% bottom;
  padding: 116px 8vw 30px 52vw;
  background:
    radial-gradient(circle at 72% 44%, rgba(18, 129, 223, 0.5), transparent 34%),
    linear-gradient(135deg, #030711 0%, var(--blue-900) 52%, #02050c 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 26, 63, 0.91) 0%, rgba(7, 26, 63, 0.72) 42%, rgba(7, 26, 63, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 26, 63, 0.76) 0%, rgba(7, 26, 63, 0.18) 48%, rgba(7, 26, 63, 0.42) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  width: 44vw;
  height: 120px;
  right: -6vw;
  top: 0;
  background:
    radial-gradient(circle at 16% 100%, transparent 0 18px, var(--orange-500) 19px 42px, transparent 43px),
    linear-gradient(180deg, var(--yellow-500), var(--orange-500));
  border-bottom-left-radius: 80px;
  opacity: 0.9;
}

.hero::after {
  width: 54vw;
  height: 130px;
  left: -10vw;
  bottom: -42px;
  background:
    radial-gradient(ellipse at 16% 50%, rgba(255, 255, 255, 0.5) 0 10px, transparent 11px),
    linear-gradient(90deg, #f7c658, #d58928 38%, #8e3f1d 39%, var(--cola-600) 68%, #3e1212);
  border-top-right-radius: 90px;
  transform: rotate(-2deg);
  opacity: 0.94;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 106px;
}

.hero-logo {
  width: 128px;
  height: 128px;
  margin-bottom: 22px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--yellow-500);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 {
  font-family: "Baloo 2", Inter, Arial, sans-serif;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  color: var(--yellow-500);
  font-size: clamp(4.1rem, 9vw, 8.5rem);
  font-weight: 800;
  text-shadow:
    0 6px 0 #071a3f,
    0 12px 28px rgba(0, 0, 0, 0.36);
}

.hero-copy {
  width: min(640px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.52;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  font-weight: 900;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.button-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.button.primary {
  color: var(--blue-900);
  background: var(--yellow-500);
}

.button.primary .button-icon {
  color: var(--white);
  background: var(--cola-600);
}

.button.secondary {
  color: var(--white);
  background: var(--blue-700);
  border: 2px solid rgba(255, 255, 255, 0.44);
}

.button.secondary .button-icon {
  color: var(--blue-900);
  background: var(--green-500);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  width: 34px;
  height: 52px;
  display: grid;
  place-items: start center;
  padding-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow-500);
  animation: scroll-dot 1.7s infinite;
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

section {
  position: relative;
}

.section-band {
  padding: 82px 0;
  background: var(--blue-800);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.product-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  font-weight: 800;
}

.intro p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.09rem;
  line-height: 1.75;
}

.service-section {
  padding: 96px 0 108px;
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.product-copy h2,
.contact-copy h2 {
  color: var(--blue-900);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-card {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border: 2px solid rgba(7, 55, 129, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(7, 55, 129, 0.08);
}

.card-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue-900);
  font-weight: 900;
  background: var(--yellow-500);
  border: 3px solid var(--blue-900);
  border-radius: var(--radius);
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--blue-800);
  font-size: 2rem;
}

.service-card p,
.product-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.product-section {
  padding: 104px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 86, 184, 0.96), rgba(7, 26, 63, 0.98)),
    var(--blue-800);
  color: var(--white);
}

.product-section::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -48px;
  width: 380px;
  height: 120px;
  background: linear-gradient(180deg, var(--yellow-500), var(--orange-500));
  border-bottom-left-radius: 120px;
  transform: rotate(4deg);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.product-copy h2,
.product-copy p {
  color: var(--white);
}

.product-copy p {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.pill-list li {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  color: var(--blue-900);
  font-weight: 900;
  background: var(--yellow-500);
  border-radius: var(--radius);
}

.pill-list li:nth-child(2) {
  color: var(--white);
  background: var(--cola-600);
}

.pill-list li:nth-child(3) {
  background: var(--green-500);
}

.pill-list li:nth-child(4) {
  background: var(--orange-500);
}

.machine-showcase {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.machine-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.value-band {
  padding: 28px 0;
  color: var(--blue-900);
  background:
    linear-gradient(90deg, var(--yellow-500), var(--orange-500));
}

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

.value-grid div {
  min-height: 90px;
  display: grid;
  align-content: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
}

.value-grid strong {
  font-family: "Baloo 2", Inter, Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.value-grid span {
  margin-top: 4px;
  font-weight: 700;
}

.contact-section {
  padding: 104px 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(255, 255, 255, 1)),
    var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.68fr);
  gap: 42px;
  align-items: start;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 22px;
}

.contact-panel {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 26px;
  font-style: normal;
  color: var(--white);
  background: var(--blue-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  margin-bottom: 4px;
  background: var(--white);
  border-radius: var(--radius);
}

.contact-panel div {
  display: grid;
  gap: 5px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-panel span {
  color: var(--green-500);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel strong,
.contact-panel a {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration-color: rgba(255, 212, 59, 0.7);
  text-underline-offset: 4px;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #050d22;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 800;
}

.footer-inner a {
  color: var(--yellow-500);
}

@media (max-width: 880px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(260px, 100%);
    display: none;
    padding: 8px;
    background: var(--blue-900);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 132px 0 92px;
  }

  .hero-logo {
    width: 108px;
    height: 108px;
  }

  .intro-grid,
  .product-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 62px;
    padding: 8px;
  }

  .brand {
    width: 64px;
    height: 64px;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-machine {
    object-position: center bottom;
    padding: 404px 11vw 46px;
    opacity: 0.66;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 26, 63, 0.92) 0%, rgba(7, 26, 63, 0.75) 54%, rgba(7, 26, 63, 0.42) 100%),
      linear-gradient(0deg, rgba(7, 26, 63, 0.86) 0%, rgba(7, 26, 63, 0.18) 58%, rgba(7, 26, 63, 0.52) 100%);
  }

  .hero::before {
    width: 72vw;
    height: 84px;
  }

  .hero::after {
    width: 86vw;
    height: 96px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section-band,
  .service-section,
  .product-section,
  .contact-section {
    padding: 68px 0;
  }

  .intro h2,
  .section-heading h2,
  .product-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.05rem, 11vw, 3.1rem);
  }

  .machine-showcase {
    aspect-ratio: 3 / 4;
    border-width: 5px;
  }

  .footer-inner {
    display: grid;
  }
}
