:root {
  --ink: #071126;
  --muted: #667085;
  --line: #d9e2e8;
  --paper: #f6f9fb;
  --white: #ffffff;
  --field: #f8fbfd;
  --navy: #052f4c;
  --navy-dark: #021d31;
  --teal: #208b97;
  --teal-soft: #e5f6f8;
  --orange: #d88638;
  --shadow: 0 22px 60px rgba(7, 17, 38, 0.14);
  --soft-shadow: 0 12px 30px rgba(7, 17, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  min-height: 108px;
  padding: 18px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 230px;
  font-weight: 800;
}

.brand-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.brand-icon::before,
.brand-icon::after,
.brand-icon span {
  position: absolute;
  content: "";
  border-color: var(--teal);
}

.brand-icon::before {
  width: 32px;
  height: 51px;
  border-right: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  border-radius: 50%;
}

.brand-icon::after {
  width: 51px;
  height: 20px;
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  border-radius: 50%;
}

.brand-icon span {
  right: -6px;
  bottom: 7px;
  width: 34px;
  height: 15px;
  border-bottom: 4px solid var(--ink);
  border-left: 4px solid var(--ink);
  transform: rotate(-24deg);
}

.brand-text {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 0.92;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 56px);
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  color: var(--teal);
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary,
.header-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  box-shadow: 0 14px 28px rgba(5, 47, 76, 0.2);
}

.header-button {
  min-width: 180px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  min-height: 675px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 37%, rgba(255, 255, 255, 0.08) 61%),
    var(--white);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: clamp(56px, 8vw, 86px) clamp(24px, 5vw, 76px) 44px;
}

.hero-copy h1 {
  max-width: 700px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-subtitle {
  position: relative;
  margin-bottom: 54px;
  color: var(--teal);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 800;
}

.hero-subtitle::after {
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 58px;
  height: 4px;
  border-radius: 99px;
  background: var(--teal);
  content: "";
}

.capability-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  max-width: 680px;
  margin-bottom: 34px;
}

.capability-row article {
  min-width: 0;
  padding: 0 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.capability-row article:first-child {
  padding-left: 0;
}

.capability-row article:last-child {
  padding-right: 0;
  border-right: 0;
}

.capability-icon {
  display: grid;
  place-items: center;
  color: var(--teal);
  min-height: 55px;
}

.capability-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-row h2 {
  margin-bottom: 5px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.capability-row p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
}

.hero-visual {
  position: absolute;
  inset: 0 0 auto auto;
  width: 64%;
  height: 675px;
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.36) 29%, rgba(255, 255, 255, 0) 53%),
    linear-gradient(180deg, rgba(5, 47, 76, 0.02), rgba(5, 47, 76, 0.2));
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-map {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 9%;
  right: 8%;
  height: 230px;
  opacity: 0.72;
  background:
    radial-gradient(circle at 30% 42%, rgba(255, 255, 255, 0.95) 0 3px, transparent 5px),
    radial-gradient(circle at 54% 34%, rgba(255, 255, 255, 0.95) 0 3px, transparent 5px),
    radial-gradient(circle at 81% 46%, rgba(255, 255, 255, 0.95) 0 3px, transparent 5px);
  pointer-events: none;
}

.route-map::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 69%);
  content: "";
}

.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.95);
}

.dot-a {
  left: 22%;
  top: 45%;
}

.dot-b {
  left: 48%;
  top: 25%;
}

.dot-c {
  right: 12%;
  top: 42%;
}

.route {
  position: absolute;
  height: 90px;
  border-top: 2px dashed rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transform-origin: left center;
}

.route-a {
  left: 23%;
  top: 38%;
  width: 260px;
  transform: rotate(-13deg);
}

.route-b {
  left: 48%;
  top: 27%;
  width: 320px;
  transform: rotate(12deg);
}

.quote-card {
  position: absolute;
  z-index: 5;
  right: clamp(24px, 4vw, 70px);
  bottom: 48px;
  display: grid;
  gap: 14px;
  width: min(520px, 36vw);
  min-width: 430px;
  padding: 30px;
  border: 1px solid rgba(217, 226, 232, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.quote-card h2 {
  margin-bottom: 2px;
  font-size: 1.6rem;
  line-height: 1.2;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hidden-field,
label span {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8e1e7;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--field);
  font: inherit;
  font-size: 0.92rem;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 52%, calc(100% - 15px) 52%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(32, 139, 151, 0.14);
  background-color: var(--white);
}

.form-button {
  width: 100%;
  margin-top: 2px;
}

.secure-note,
.form-status {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
}

.secure-note {
  color: var(--muted);
}

.form-status {
  min-height: 20px;
  color: var(--teal);
  font-weight: 800;
}

.service-strip {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 0;
}

.image-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 13px;
  min-height: 178px;
  overflow: hidden;
  padding: 118px 22px 21px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.image-card::before {
  position: absolute;
  inset: 0 0 52px;
  background-image: url("assets/hero-sourcing.png");
  background-repeat: no-repeat;
  background-size: 950px auto;
  content: "";
}

.image-card::after {
  position: absolute;
  inset: 78px 0 52px;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 38, 0.52));
  content: "";
}

.image-card.packaging::before {
  background-position: 61% 80%;
}

.image-card.accessories::before {
  background-position: 74% 50%;
}

.image-card.molds::before {
  background-position: 45% 76%;
}

.image-card.qa::before {
  background-position: 37% 53%;
}

.card-icon,
.image-card strong,
.image-card > span:last-child {
  position: relative;
  z-index: 2;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-card strong {
  align-self: center;
  font-size: 1rem;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-section,
.industry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.step-list {
  display: grid;
  gap: 16px;
}

.step-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.step-list span {
  color: var(--teal);
  font-weight: 800;
}

.step-list h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.step-list p {
  margin-bottom: 0;
}

.industries {
  padding-top: 36px;
}

.about-section {
  padding-top: 16px;
}

.about-panel {
  max-width: 920px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.about-panel h2 {
  margin-bottom: 18px;
}

.about-panel p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(24px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-dark);
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 36px;
  }

  .hero-visual {
    position: relative;
    grid-row: 1;
    width: 100%;
    height: 360px;
  }

  .hero-copy {
    grid-row: 2;
    padding-top: 48px;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(680px, calc(100% - 48px));
    min-width: 0;
    margin: 0 auto;
  }

  .service-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
    padding: 16px 20px;
  }

  .header-button {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-icon {
    width: 46px;
    height: 46px;
  }

  .nav {
    gap: 20px;
    font-size: 0.9rem;
  }

  .hero-copy {
    padding-right: 24px;
    padding-left: 24px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .hero-subtitle {
    max-width: 330px;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(100%, 342px);
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .capability-row article {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .capability-row article:first-child {
    border-top: 0;
  }

  .form-grid,
  .service-strip,
  .split-section,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .quote-card {
    width: min(342px, calc(100% - 32px));
    margin-right: 0;
    margin-left: 16px;
    padding: 22px;
  }

  .service-strip,
  .section {
    width: min(342px, calc(100% - 32px));
    margin-right: 0;
    margin-left: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
