:root {
  --bg: #f5f8ef;
  --bg-elev: #ffffff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --panel-soft: rgba(236, 246, 226, 0.86);
  --text: #132018;
  --text-soft: #667368;
  --line: rgba(28, 94, 45, 0.12);
  --accent: #1f8f3a;
  --accent-strong: #39c25b;
  --accent-soft: rgba(31, 143, 58, 0.12);
  --shadow: 0 28px 80px rgba(32, 55, 38, 0.12);
  --glow: 0 18px 55px rgba(57, 194, 91, 0.2);
  --radius-lg: 34px;
  --radius-md: 26px;
  --radius-sm: 18px;
  --container: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Aptos", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0%, rgba(57, 194, 91, 0.22), transparent 28%),
    radial-gradient(circle at 86% 6%, rgba(135, 207, 104, 0.22), transparent 26%),
    linear-gradient(180deg, #fbfff6 0%, #f5f8ef 48%, #eef5e7 100%);
}

body.page-enter .page-shell {
  animation: pageIn 120ms ease-out both;
}

body.page-leave .page-shell {
  animation: pageOut 60ms linear both;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(120deg, rgba(31, 143, 58, 0.08), transparent 38%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.86), transparent 36%);
}

body::after {
  background-image: none;
}

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

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

.skip {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #061007;
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip:focus {
  transform: translateY(0);
}

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

.page-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 48px;
  transform-origin: 50% 18px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 22px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 32, 24, 0.08);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(31, 57, 38, 0.12);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 40px;
  border-radius: 0;
  border: 0;
  background: url("assets/zold-hollo-logo-cropped.png") left center / contain no-repeat;
  box-shadow: none;
  color: transparent;
  font-size: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--text-soft);
  max-width: 34ch;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--text-soft);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(31, 143, 58, 0.09);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(31, 143, 58, 0.1);
  transform: translateY(-1px);
}

.site-nav a.social-link {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(31, 143, 58, 0.16);
  background: rgba(31, 143, 58, 0.08);
  color: #18773a;
  line-height: 1;
}

.site-nav a.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-nav a.social-link:hover,
.site-nav a.social-link:focus-visible {
  background: #18773a;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 143, 58, 0.22);
}

main {
  display: block;
}

.hero,
.page-hero,
.section,
.site-footer {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 28px;
  padding: 24px 0 12px;
}

.hero-copy,
.hero-visual,
.page-hero,
.feature-card,
.roadmap-card,
.cta-banner,
.info-card,
.product-card,
.quick-quote-card,
.faq-section,
.quote-form,
.form-side,
.tracking-panel,
.tracking-result,
.timeline-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 44%),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy,
.hero-visual,
.page-hero {
  border-radius: var(--radius-lg);
}

.hero-copy {
  min-height: 560px;
  padding: 46px clamp(22px, 4vw, 52px);
  background:
    radial-gradient(circle at 18% 0%, rgba(57, 194, 91, 0.18), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f4faef 100%);
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -70px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 194, 91, 0.18), transparent 70%);
  filter: blur(4px);
}

.hero-copy > *,
.page-hero > * {
  position: relative;
  z-index: 1;
}

.hero-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-lockup .brand-mark {
  width: 88px;
  height: 50px;
  border-radius: 0;
  flex: 0 0 auto;
}

.hero-lockup-text {
  margin: 0;
  max-width: 34ch;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 560px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at 50% 18%, rgba(57, 194, 91, 0.24), transparent 36%),
    linear-gradient(145deg, #12301b 0%, #0d2014 54%, #071109 100%);
}

.hero-visual img,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(0.95) brightness(0.72);
}

.hero-slide {
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 2600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 32, 18, 0.04), rgba(12, 32, 18, 0.7)),
    radial-gradient(circle at 50% 50%, rgba(57, 194, 91, 0.24), transparent 30%);
}

.hero-visual-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(calc(100% - 28px), 420px);
  margin: 0 14px 14px auto;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 143, 58, 0.14);
  color: var(--text);
  box-shadow: var(--glow);
}

.hero-visual-overlay strong {
  font-size: 1.34rem;
  line-height: 1.15;
}

.hero-visual-overlay p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.page-hero {
  min-height: 190px;
  padding: 34px clamp(22px, 4vw, 44px);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 46%, rgba(255, 255, 255, 0.92) 100%),
    url("assets/zhbelieve.webp") center / cover;
  opacity: 0.2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Aptos Display", "Segoe UI", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  text-shadow: none;
}

h1 span {
  color: var(--accent);
  text-shadow: none;
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.lead {
  max-width: 62ch;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-strip span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 143, 58, 0.14);
  background: rgba(31, 143, 58, 0.08);
  color: #22462b;
  font-size: 0.84rem;
  font-weight: 800;
}

.trusted-section {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(31, 143, 58, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 249, 234, 0.84)),
    radial-gradient(circle at 88% 0%, rgba(57, 194, 91, 0.18), transparent 34%);
  box-shadow: 0 18px 55px rgba(31, 57, 38, 0.1);
}

.trusted-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.trusted-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  line-height: 0.98;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trusted-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 184px;
  padding: 18px;
  border: 1px solid rgba(31, 143, 58, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.trusted-card:is(a):hover,
.trusted-card:is(a):focus-visible {
  transform: translateY(-3px);
  border-color: rgba(31, 143, 58, 0.28);
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(31, 57, 38, 0.14);
}

.trusted-card strong {
  font-size: 0.98rem;
  line-height: 1.18;
}

.trusted-card small {
  color: var(--text-soft);
  line-height: 1.55;
}

.trusted-logo {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 48px;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.trusted-logo-img {
  width: 78px;
  height: 78px;
  padding: 7px;
  border: 1px solid rgba(31, 143, 58, 0.1);
  border-radius: 20px;
  background: #ffffff;
  object-fit: contain;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(31, 57, 38, 0.08);
}

.trusted-logo-edfsz {
  background: linear-gradient(135deg, #eff7ff, #ffffff);
  color: #1559b7;
  box-shadow: inset 0 -3px 0 #d82831;
}

.trusted-logo-happy {
  background: linear-gradient(135deg, #fff7cf, #ffffff);
  color: #7b5a00;
  box-shadow: inset 0 -3px 0 #f2c84b;
}

.trusted-logo-empty {
  background: rgba(31, 143, 58, 0.08);
  color: #18773a;
}

.trusted-card-muted {
  opacity: 0.78;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    background-color 220ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #12301b 0%, #1f8f3a 55%, #39c25b 100%);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(31, 143, 58, 0.12),
    0 18px 40px rgba(31, 143, 58, 0.24);
}

.button-secondary {
  background: #ffffff;
  border-color: rgba(19, 32, 24, 0.12);
  color: var(--text);
  box-shadow: 0 10px 26px rgba(31, 57, 38, 0.08);
}

.button-block {
  width: 100%;
}

.section {
  margin-top: 34px;
}

.section-split,
.cards-section,
.highlight-section {
  padding: 18px 0;
}

.section-title {
  margin-bottom: 24px;
}

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

.roadmap-grid {
  position: relative;
}

.roadmap-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 143, 58, 0), rgba(31, 143, 58, 0.34), rgba(31, 143, 58, 0));
}

.feature-card,
.roadmap-card,
.info-card,
.product-card {
  border-radius: var(--radius-md);
  padding: 28px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.roadmap-card {
  z-index: 1;
}

.roadmap-card strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.roadmap-card strong::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 8px rgba(31, 143, 58, 0.1);
}

.feature-card:hover,
.roadmap-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(31, 57, 38, 0.15);
}

.quick-quote-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.quick-quote-card p,
.faq-list p {
  color: var(--text-soft);
  line-height: 1.72;
}

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

.quick-form .button {
  grid-column: 1 / -1;
  width: 100%;
}

.file-drop {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px dashed rgba(31, 143, 58, 0.35);
  border-radius: 22px;
  background: rgba(31, 143, 58, 0.06);
}

.file-drop input {
  padding: 16px;
  border-style: dashed;
  cursor: pointer;
}

.file-drop small,
.file-list {
  color: var(--text-soft);
}

.file-list:not(:empty) {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(31, 143, 58, 0.08);
}

.faq-section {
  padding: 32px;
  border-radius: var(--radius-lg);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(31, 143, 58, 0.14);
  border-radius: 20px;
  background: rgba(31, 143, 58, 0.05);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 800;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 18px;
}

.showcase-grid {
  display: grid;
  gap: 18px;
}

.portfolio-blocks {
  display: grid;
  gap: 26px;
}

.portfolio-block {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 24px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portfolio-block:nth-child(even) {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.portfolio-block:nth-child(even) .portfolio-block-media {
  order: 2;
}

.portfolio-block-media {
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--panel-soft);
}

.portfolio-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-block:hover .portfolio-block-media img {
  transform: scale(1.022);
}

.portfolio-block-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(18px, 3vw, 36px);
}

.portfolio-block-copy h2 {
  max-width: 16ch;
}

.portfolio-block-copy p {
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.78;
}

.portfolio-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.portfolio-facts div {
  padding: 12px;
  border-radius: 16px;
  background: rgba(31, 143, 58, 0.07);
  border: 1px solid rgba(31, 143, 58, 0.1);
}

.portfolio-facts dt {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-facts dd {
  margin: 6px 0 0;
  color: var(--text);
  font-weight: 800;
}

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

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 44%),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.showcase-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 180px;
}

.showcase-media {
  min-height: 340px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(31, 143, 58, 0.14);
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.showcase-copy p,
.showcase-points {
  color: var(--text-soft);
  line-height: 1.72;
}

.showcase-points {
  margin: 0;
  padding-left: 18px;
}

.showcase-stat {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(31, 143, 58, 0.16);
  background: rgba(31, 143, 58, 0.06);
  text-align: center;
}

.showcase-stat strong {
  color: var(--accent);
  font-family: "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.9;
}

.showcase-stat span {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-card::before,
.roadmap-card::before,
.info-card::before,
.product-card::before,
.quote-form::before,
.tracking-panel::before,
.tracking-result::before,
.form-side::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 143, 58, 0.38), transparent);
}

.feature-tag,
.product-badge,
.metric-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 143, 58, 0.18);
  background: rgba(31, 143, 58, 0.08);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.feature-card p,
.roadmap-card p,
.info-card p,
.product-card p,
.timeline-item p,
.tracking-summary p,
.empty-state p,
.side-card p {
  color: var(--text-soft);
  line-height: 1.72;
}

.highlight-section {
  padding: 24px 0;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.cta-banner::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 194, 91, 0.18), transparent 72%);
}

.compact-hero {
  padding-bottom: 36px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
}

.timeline-item span,
.metric-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.form-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
}

.quote-form,
.tracking-panel,
.tracking-result {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.quote-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

label span {
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(19, 32, 24, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  box-shadow: 0 10px 24px rgba(31, 57, 38, 0.05);
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

input::placeholder,
textarea::placeholder {
  color: #6e8071;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(31, 143, 58, 0.42);
  box-shadow:
    0 0 0 4px rgba(31, 143, 58, 0.1),
    0 14px 28px rgba(31, 57, 38, 0.08);
}

textarea {
  resize: vertical;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.form-side {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.side-card,
.success-card,
.tracking-summary,
.tracking-meta,
.status-step,
.empty-state {
  border-radius: 24px;
  border: 1px solid rgba(31, 143, 58, 0.16);
  background: var(--panel-strong);
}

.side-card,
.success-card {
  padding: 22px;
}

.side-card-accent {
  background:
    linear-gradient(180deg, rgba(237, 249, 232, 0.96), rgba(255, 255, 255, 0.98));
}

.step-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.7;
}

.success-card {
  background:
    linear-gradient(180deg, rgba(225, 248, 223, 0.96), rgba(255, 255, 255, 0.98));
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(11, 22, 14, 0.45);
  backdrop-filter: blur(10px);
}

.quote-modal-card {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(31, 143, 58, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 0%, rgba(57, 194, 91, 0.16), transparent 34%),
    #ffffff;
  box-shadow: 0 36px 100px rgba(11, 22, 14, 0.28);
}

.quote-modal-card h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.quote-modal-card p:not(.eyebrow) {
  color: var(--text-soft);
  line-height: 1.72;
}

.quote-modal-card .button {
  margin-top: 18px;
}

.quote-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 143, 58, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 800;
  cursor: pointer;
}

.tracking-layout {
  align-items: start;
}

.tracking-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tracking-form label {
  flex: 1 1 280px;
}

.sample-codes {
  margin: 18px 0 0;
  color: var(--text-soft);
}

.code-pill {
  margin-left: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 143, 58, 0.16);
  border-radius: 999px;
  background: rgba(31, 143, 58, 0.08);
  color: var(--text);
  cursor: pointer;
}

.tracking-result {
  min-height: 420px;
}

.empty-state,
.tracking-summary,
.tracking-meta {
  padding: 22px;
}

.tracking-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.tracking-meta article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(31, 143, 58, 0.06);
}

.tracking-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-timeline {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.status-step {
  padding: 18px;
}

.status-step.is-complete {
  border-color: rgba(31, 143, 58, 0.28);
  background: rgba(61, 126, 71, 0.2);
}

.status-step.is-current {
  border-color: rgba(31, 143, 58, 0.52);
  background: rgba(31, 143, 58, 0.1);
  box-shadow: var(--glow);
}

.status-step header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.status-step strong {
  font-size: 1.05rem;
}

.status-step small {
  color: var(--text-soft);
}

.hidden {
  display: none !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 4px 8px;
  border-top: 1px solid rgba(31, 143, 58, 0.1);
  color: var(--text-soft);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 150ms;
}

.reveal-delay-3 {
  transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes pageIn {
  from {
    opacity: 0.82;
    transform: translateY(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageOut {
  to {
    opacity: 0.92;
    transform: translateY(-2px);
  }
}

@media (max-width: 1040px) {
  .hero,
  .form-layout,
  .quick-quote-card,
  .portfolio-block,
  .portfolio-block:nth-child(even),
  .feature-grid,
  .roadmap-grid,
  .cards-grid,
  .contact-grid,
  .product-grid,
  .showcase-card,
  .tracking-meta {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual {
    min-height: auto;
  }

  .hero-visual {
    min-height: 380px;
  }

  .showcase-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .portfolio-block:nth-child(even) .portfolio-block-media {
    order: 0;
  }

  .roadmap-grid::before {
    top: 0;
    bottom: 0;
    left: 25px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(31, 143, 58, 0), rgba(31, 143, 58, 0.28), rgba(31, 143, 58, 0));
  }

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

@media (max-width: 920px) {
  .site-header,
  .cta-banner,
  .site-footer,
  .tracking-form {
    display: grid;
  }

  .site-header {
    border-radius: 30px;
  }

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

  h1,
  h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 14px;
  }

  .site-header {
    position: relative;
    top: 0;
    padding: 16px;
  }

  .hero-copy,
  .page-hero,
  .quote-form,
  .tracking-panel,
  .tracking-result,
  .form-side,
  .trusted-section,
  .cta-banner {
    padding: 22px;
  }

  .hero {
    gap: 16px;
    padding-top: 8px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
    line-height: 0.98;
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .brand-mark {
    width: 64px;
    height: 38px;
  }

  .hero-lockup {
    align-items: flex-start;
  }

  .hero-lockup .brand-mark {
    width: 64px;
    height: 38px;
  }

  .hero-visual {
    min-height: 240px;
  }

  .portfolio-block {
    padding: 12px;
  }

  .portfolio-block-media {
    min-height: 220px;
  }

  .hero-visual-overlay {
    width: calc(100% - 24px);
    margin: 0 12px 12px;
  }

  .form-row,
  .quick-form,
  .trusted-grid,
  .portfolio-facts,
  .tracking-meta {
    grid-template-columns: 1fr;
  }

  .trusted-heading {
    display: grid;
    gap: 10px;
  }
}
