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

:root {
  --navy: #1a4169;
  --navy-2: #143552;
  --blue: #1a4169;
  --blue-dark: #143552;
  --blue-light: #2f5f8e;
  --green: #67d53e;
  --green-dark: #139e41;
  --mint: #72dfb3;
  --ice: #eef6f7;
  --white: #ffffff;
  --text: #1a4169;
  --muted: #64758a;
  --line: #dce6eb;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(26, 65, 105, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

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

.section {
  position: relative;
  padding: 120px 0;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 82px;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(26, 65, 105, 0.08);
  box-shadow: 0 8px 28px rgba(26, 65, 105, 0.06);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 175px;
}

.brand img,
img.brand {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--navy);
  padding: 12px 20px;
  border-radius: 999px;
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  background:
    radial-gradient(circle at 15% 15%, rgba(26, 65, 105, 0.11), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(103, 213, 62, 0.15), transparent 28%),
    linear-gradient(135deg, #f8fafc 0%, #edf7f6 100%);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.glow-one {
  width: 340px;
  height: 340px;
  top: 8%;
  left: -120px;
  background: rgba(26, 65, 105, 0.22);
}

.glow-two {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: 4%;
  background: rgba(103, 213, 62, 0.22);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.products-intro h2,
.impact h2,
.careers h2,
.contact h2 {
  color: var(--navy);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.3rem, 6vw, 6.4rem);
  margin-bottom: 26px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, #1a4169 0%, #2f5f8e 100%);
  box-shadow: 0 16px 30px rgba(26, 65, 105, 0.22);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(26, 65, 105, 0.14);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(26, 65, 105, 0.11);
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

/* Interactive circular process */
.hero-visual {
  display: grid;
  place-items: center;
  min-width: 0;
}

.circular-process {
  --process-size: min(540px, 45vw);
  position: relative;
  width: var(--process-size);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 0.16s ease-out;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.98) 0 31%, rgba(248,253,252,.95) 31.5% 58%, rgba(238,247,246,.94) 58.5% 100%);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow:
    0 38px 90px rgba(30, 69, 91, 0.17),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.process-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, rgba(26,65,105,.16), transparent 33%),
    radial-gradient(circle at 74% 72%, rgba(103,213,62,.18), transparent 35%);
  filter: blur(20px);
  pointer-events: none;
}

.process-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.process-orbit-outer {
  inset: 8%;
  border: 1px solid rgba(26,65,105,.23);
  box-shadow: inset 0 0 34px rgba(26,65,105,.03);
}

.process-orbit-inner {
  inset: 27%;
  border: 1px dashed rgba(103,213,62,.28);
  animation: orbit-spin 24s linear infinite reverse;
}

.material-core {
  position: relative;
  z-index: 4;
  width: clamp(220px, 42%, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff 0%, #fff 40%, #f4faf9 100%);
  box-shadow:
    0 26px 58px rgba(26,65,105,.18),
    0 8px 20px rgba(26,65,105,.08),
    inset 0 0 0 1px rgba(255,255,255,.9);
  transition: transform .35s ease, box-shadow .35s ease;
}

.material-core::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid rgba(103,213,62,.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 7px rgba(103,213,62,.035),
    0 0 30px rgba(103,213,62,.08);
}

.circular-process:hover .material-core {
  transform: scale(1.035);
  box-shadow:
    0 30px 68px rgba(26,65,105,.22),
    0 10px 25px rgba(26,65,105,.11),
    inset 0 0 0 1px rgba(255,255,255,.95);
}

.core-ring {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 80%;
  aspect-ratio: 1;
  transform: translateX(-50%);
}

.core-ring svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cycle-arrow {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .35s ease, filter .35s ease;
}

.circular-process:hover .cycle-arrow-top {
  transform: translateY(-2px) rotate(2deg);
}

.circular-process:hover .cycle-arrow-bottom {
  transform: translateY(2px) rotate(2deg);
}

.core-copy {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 82%;
  display: grid;
  gap: 2px;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.core-copy span {
  color: var(--muted);
  font-size: .56rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.core-copy strong {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.1;
}

.process-step {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  padding: 11px 15px 11px 11px;
  color: var(--ink, #1a4169);
  text-align: left;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 999px;
  box-shadow:
    0 14px 32px rgba(26,65,105,.13),
    inset 0 1px 0 rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.process-step:hover,
.process-step:focus-visible,
.process-step.is-active {
  border-color: rgba(26,65,105,.28);
  box-shadow:
    0 18px 38px rgba(26,65,105,.2),
    0 0 0 5px rgba(26,65,105,.07);
  outline: none;
}

.process-step-waste {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.process-step-waste:hover,
.process-step-waste:focus-visible,
.process-step-waste.is-active {
  transform: translateX(-50%) translateY(-5px) scale(1.04);
}

.process-step-reclaim {
  left: -2%;
  bottom: 22%;
}

.process-step-renew {
  right: -2%;
  bottom: 22%;
}

.process-step-reclaim:hover,
.process-step-reclaim:focus-visible,
.process-step-reclaim.is-active,
.process-step-renew:hover,
.process-step-renew:focus-visible,
.process-step-renew.is-active {
  transform: translateY(-5px) scale(1.04);
}

.step-icon {
  width: 40px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

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

.process-step-waste .step-icon {
  color: var(--blue);
  background: rgba(26,65,105,.1);
}

.process-step-reclaim .step-icon {
  color: #12b985;
  background: rgba(18,185,133,.11);
}

.process-step-renew .step-icon {
  color: #4dc72f;
  background: rgba(77,199,47,.11);
}

.step-content {
  display: grid;
  line-height: 1.15;
}

.step-content strong {
  color: var(--navy);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.step-content small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .68rem;
  white-space: nowrap;
}

.orbit-chip {
  position: absolute;
  width: 57px;
  height: 29px;
  z-index: 3;
  border-radius: 12px;
  box-shadow:
    0 10px 19px rgba(26,65,105,.16),
    inset 0 1px 0 rgba(255,255,255,.4);
  animation: chip-float 4.5s ease-in-out infinite;
  transition: filter .25s ease;
}

.circular-process:hover .orbit-chip {
  filter: saturate(1.15) brightness(1.03);
}

.orbit-chip-blue {
  top: 16%;
  left: 19%;
  background: linear-gradient(135deg, #1a4169 0%, #2f5f8e 100%);
  transform: rotate(18deg);
}

.orbit-chip-green {
  top: 24%;
  right: 11%;
  background: linear-gradient(135deg, #45c92e, #67d53e);
  transform: rotate(-18deg);
  animation-delay: -1.1s;
}

.orbit-chip-mint {
  bottom: 19%;
  left: 9%;
  background: linear-gradient(135deg, #4fd8a2, #7ae6bd);
  transform: rotate(-12deg);
  animation-delay: -2.2s;
}

.orbit-chip-sky {
  right: 20%;
  bottom: 12%;
  background: linear-gradient(135deg, #4e7398, #88a2ba);
  transform: rotate(35deg);
  animation-delay: -3.3s;
}

.process-status {
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 76%;
  padding: 8px 13px;
  color: #50677d;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(26,65,105,.08);
  backdrop-filter: blur(10px);
  font-size: clamp(.62rem, 1.1vw, .74rem);
  font-weight: 650;
  text-align: center;
  transform: translateX(-50%);
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(103,213,62,.12);
  animation: status-pulse 2s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  transform: translateX(-50%);
}

/* Content sections */
.about {
  background: var(--white);
}

.split-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}

.section-heading h2,
.products-intro h2,
.careers h2,
.contact h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
}

.about-content .lead {
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.feature-grid article {
  border-top: 2px solid var(--line);
  padding-top: 20px;
  min-width: 0;
}

.feature-grid article > span {
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 800;
}

.feature-grid h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.25;
}

.feature-grid p {
  color: var(--muted);
  font-size: .90rem;
  line-height: 1.65;
}
.services {
  background: var(--ice);
}

.centered {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 58px;
}

.centered .eyebrow {
  justify-content: center;
}

.centered h2 {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
}

.centered > p {
  color: var(--muted);
  margin-top: 20px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(26,65,105,.06);
  border: 1px solid rgba(26,65,105,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 18px;
  font-size: 1.55rem;
  margin-bottom: 28px;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: .92rem;
}

.service-card a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue);
  font-size: .84rem;
  font-weight: 800;
}

.products {
  background: var(--white);
}

.products-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.products-intro > p {
  color: var(--muted);
  padding-bottom: 10px;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-panel {
  min-height: 440px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.product-panel::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  right: -80px;
  bottom: -80px;
}

.panel-blue { background: linear-gradient(145deg, #1a4169 0%, #102c49 100%); }
.panel-green { background: linear-gradient(145deg, #67d53e, #139e41); }
.panel-dark { background: linear-gradient(145deg, #1a4169, #0d2238); }

.product-number {
  font-size: .8rem;
  font-weight: 800;
  opacity: .7;
}

.product-panel .tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 14px;
  opacity: .78;
}

.product-panel h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-panel p {
  max-width: 320px;
  font-size: .92rem;
  opacity: .82;
}

.impact {
  background: var(--navy);
  color: var(--white);
}

.impact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.impact h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 4vw, 4.8rem);
}

.eyebrow.light {
  color: #7ae4b7;
}

.impact-list {
  display: grid;
  gap: 8px;
}

.impact-list div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.impact-list span {
  color: #7ae4b7;
  font-weight: 800;
}

.impact-list p {
  font-size: 1.04rem;
  color: rgba(255,255,255,.82);
}

.careers {
  background: linear-gradient(135deg, #f7fafc, #edf8f4);
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 70px;
  align-items: center;
}

.careers-copy p {
  max-width: 650px;
  color: var(--muted);
  margin: 24px 0 32px;
}

.careers-card {
  padding: 46px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.careers-card > span {
  color: var(--green-dark);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.careers-card h3 {
  color: var(--navy);
  font-size: 1.8rem;
  margin: 18px 0 28px;
}

.careers-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.careers-card li::before {
  content: "✓";
  color: var(--green-dark);
  font-weight: 900;
  margin-right: 12px;
}

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  margin: 24px 0 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border-radius: 28px;
  background: var(--ice);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--navy);
  background: var(--white);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,65,105,.1);
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 48px 0;
  background: #0d2238;
  color: rgba(255,255,255,.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  width: 165px;
}

.footer-brand img {
  width: 100%;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: .84rem;
  font-weight: 700;
}

.site-footer p {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.11);
  font-size: .78rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes chip-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .48; }
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .circular-process {
    --process-size: min(500px, 46vw);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .site-nav {
    position: fixed;
    inset: 82px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero-grid,
  .split-layout,
  .products-intro,
  .impact-wrap,
  .careers-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-grid {
    gap: 56px;
  }

  .hero-visual {
    margin-top: 8px;
  }

  .circular-process {
    --process-size: min(560px, 86vw);
  }

  .split-layout,
  .products-intro,
  .impact-wrap,
  .careers-grid,
  .contact-grid {
    gap: 42px;
  }

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

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

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-panel {
    min-height: 330px;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .brand {
    width: 150px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .circular-process {
    --process-size: min(470px, 94vw);
  }

  .material-core {
    width: clamp(185px, 43%, 220px);
  }

  .core-ring {
    top: 12px;
    width: 78%;
  }

  .core-copy {
    bottom: 19px;
  }

  .process-step {
    min-width: auto;
    padding: 9px;
  }

  .step-content small {
    display: none;
  }

  .process-step-reclaim {
    left: 0;
  }

  .process-step-renew {
    right: 0;
  }

  .orbit-chip {
    width: 45px;
    height: 23px;
    border-radius: 9px;
  }

  .feature-grid,
  .services-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
  }

  .contact-form,
  .careers-card {
    padding: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .circular-process {
    --process-size: min(420px, 96vw);
  }

  .material-core {
    width: 180px;
  }

  .process-step {
    gap: 7px;
  }

  .step-icon {
    width: 34px;
  }

  .step-content strong {
    font-size: .64rem;
  }

  .process-status {
    bottom: 3%;
    max-width: 88%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
.polymer-company{
  color:#2f5f8e;
  font-weight:700;
  text-decoration:none;
  transition:color .25s ease;
}

.polymer-company:hover{
  color:#67d53e;
  text-decoration:underline;
}

.polymer-company:focus-visible{
  outline:2px solid #67d53e;
  outline-offset:3px;
  border-radius:2px;
}
/* =========================================================
   MATERIALS
========================================================= */

.materials {
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(26, 65, 105, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(103, 213, 62, 0.1),
      transparent 30%
    ),
    #f5f9fa;
}

.materials .section-heading > p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
}

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

.material-card {
  position: relative;
  min-height: 230px;
  padding: 26px;

  display: flex;
  flex-direction: column;

  overflow: hidden;
  border: 1px solid rgba(26, 65, 105, 0.08);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.92);

  box-shadow:
    0 12px 34px rgba(26, 65, 105, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.material-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;

  width: 115px;
  height: 115px;

  border: 1px solid rgba(26, 65, 105, 0.08);
  border-radius: 50%;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.material-card:hover {
  transform: translateY(-7px);

  border-color: rgba(26, 65, 105, 0.18);

  box-shadow:
    0 22px 48px rgba(26, 65, 105, 0.12);
}

.material-card:hover::after {
  transform: scale(1.18);
  border-color: rgba(103, 213, 62, 0.28);
}

.material-code {
  width: fit-content;
  padding: 6px 10px;

  color: #1a4169;
  background: rgba(26, 65, 105, 0.08);

  border-radius: 999px;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.material-card h3 {
  margin-top: 24px;

  color: #1a4169;

  font-size: 1.35rem;
  line-height: 1.15;
}

.material-card p {
  margin-top: 8px;

  color: var(--muted);

  font-size: 0.84rem;
  line-height: 1.5;
}

.material-product {
  margin-top: auto;
  padding-top: 24px;

  color: #3fae2a;

  font-size: 0.76rem;
  font-weight: 800;
}

.featured-material {
  background:
    linear-gradient(
      145deg,
      rgba(26, 65, 105, 0.98),
      rgba(20, 53, 82, 0.98)
    );
}

.featured-material .material-code {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

.featured-material h3 {
  color: #ffffff;
}

.featured-material p {
  color: rgba(255, 255, 255, 0.7);
}

.featured-material .material-product {
  color: #8be269;
}

.featured-material::after {
  border-color: rgba(255, 255, 255, 0.13);
}

.materials-footer {
  margin-top: 42px;
  padding: 34px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  border: 1px solid rgba(26, 65, 105, 0.08);
  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 16px 40px rgba(26, 65, 105, 0.07);
}

.materials-footer {
  max-width: 980px;
  margin: 42px auto 0;
  padding: 30px 34px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;

  border: 1px solid rgba(26, 65, 105, 0.08);
  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 16px 40px rgba(26, 65, 105, 0.08);
}

.materials-footer-copy {
  max-width: 700px;
}

.materials-footer h3 {
  margin: 0 0 8px;

  color: #1a4169;

  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
}

.materials-footer p {
  margin: 0;

  color: var(--muted);

  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
}

.materials-submit {
  min-width: 220px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .materials-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 26px;
  }

  .materials-submit {
    width: 100%;
    min-width: 0;
  }
}

.materials-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1100px) {
  .materials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .materials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .materials-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .material-card {
    min-height: 210px;
  }

  .materials-actions {
    width: 100%;
    display: grid;
  }
}
.materials-disclaimer {
  max-width: 900px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
  text-align: center;
}