:root {
  --navy: #1f2a5a;
  --navy-dark: #131c45;
  --cyan: #00aeef;
  --cyan-dark: #008fca;
  --ice: #eef7fb;
  --pale: #f7fafc;
  --ink: #09254b;
  --muted: #52677f;
  --white: #fff;
  --border: #d9e2ea;
  --shadow: 0 12px 32px rgba(5, 44, 93, .09);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1420px, calc(100% - 72px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; padding: 11px 16px; background: var(--navy); color: white; }
.skip-link:focus { left: 10px; top: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #e6edf2;
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 96px; display: flex; align-items: center; gap: 54px; }
.header-inner > a:first-child { margin-right: auto; }
.logo { width: 292px; max-height: 84px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; justify-content: center; gap: 52px; }
.nav a { position: relative; color: var(--ink); font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: .015em; white-space: nowrap; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -12px; height: 2px; background: var(--cyan); transition: right .2s ease; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.header-phone { display: inline-flex; align-items: center; gap: 10px; margin-left: auto; color: var(--cyan-dark); font-size: 1.02rem; font-weight: 850; white-space: nowrap; }
.mobile-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 8px; background: var(--ice); color: var(--navy); font-size: 1.35rem; }

.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 0 24px; border: 1px solid transparent; border-radius: 5px; font-size: .9rem; font-weight: 850; text-transform: uppercase; cursor: pointer; transition: .2s ease; }
.btn-primary { color: white; background: linear-gradient(90deg, var(--cyan-dark), var(--cyan)); box-shadow: 0 8px 20px rgba(7, 153, 229, .18); }
.btn-primary:hover { transform: translateY(-2px); background: var(--navy); }
.btn-secondary { color: var(--navy); background: white; border-color: var(--navy); }
.btn-secondary:hover { color: white; background: var(--navy); }
.btn-small { min-height: 42px; padding-inline: 18px; }
.nav .btn { color: white; }

.hero {
  min-height: 650px;
  padding: 62px 0 52px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 25%, rgba(255,255,255,.46) 46%, rgba(255,255,255,0) 62%),
    url("hero-35t-winter.webp") center center / cover no-repeat;
  border-bottom: 1px solid var(--border);
}
.hero-grid { display: block; }
.hero-grid > div:first-child { width: min(670px, 54vw); }
.hero .eyebrow { display: none; }
.hero h1 { max-width: 670px; margin-top: 0; }
.hero-title-line { display: block; white-space: nowrap; }
.hero-title-accent { color: var(--cyan); }
.hero-lead { max-width: 540px; margin: 22px 0 0; color: #183655; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 26px; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 590px; margin-top: 24px; }
.trust-item { padding: 10px 9px; border-right: 1px solid #bfcbd6; color: var(--navy); text-align: center; font-size: .72rem; font-weight: 850; text-transform: uppercase; line-height: 1.3; }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: block; min-height: 42px; margin-bottom: 8px; color: var(--navy); font-size: 2rem; line-height: 1; }
.hero-visual { display: none; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--cyan-dark); font-size: .77rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--cyan); }
h1, h2, h3 { margin: 0; color: var(--navy-dark); line-height: 1.1; }
h1 { font-size: clamp(3rem, 4.8vw, 4.7rem); letter-spacing: -.045em; }
h1 .accent, h2 .accent { color: var(--cyan); }

.section { padding: 66px 0; }
.section-soft { background: var(--pale); }
.section-dark { color: white; background: linear-gradient(115deg, var(--navy-dark), var(--navy)); }
.section-head { max-width: 720px; margin-bottom: 30px; }
.section-head h2 { margin-top: 10px; font-size: clamp(2rem, 3.4vw, 3.1rem); letter-spacing: -.03em; }
.section-head p { color: var(--muted); font-size: 1rem; }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark .section-head p { color: #d6e4ef; }

.fresh-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 36px; }
.fresh-visual { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.moodboard-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; overflow: hidden; padding: 8px; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.moodboard-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; }
.moodboard-gallery img:nth-child(5) { object-position: center 28%; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature {
  --feature-color: var(--cyan);
  --feature-soft: #eaf8fe;
  position: relative;
  display: flex;
  min-height: 265px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px 27px 26px;
  border: 1px solid var(--border);
  border-top: 6px solid var(--feature-color);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff 0%, #fff 68%, var(--feature-soft) 145%);
  box-shadow: 0 14px 30px rgba(31,42,90,.08);
}
.feature-produce { --feature-color: var(--cyan-dark); --feature-soft: #eaf8fe; }
.feature-dairy { --feature-color: #168cf0; --feature-soft: #eaf5ff; }
.feature-fish { --feature-color: #0864c5; --feature-soft: #eaf3ff; }
.feature-frozen { --feature-color: #00b7de; --feature-soft: #e7faff; }
.feature-main { position: relative; z-index: 2; display: grid; grid-template-columns: 72px 1fr; align-items: start; gap: 20px; }
.feature-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 7px solid white;
  border-radius: 50%;
  color: var(--feature-color);
  background: var(--feature-soft);
  box-shadow: 0 5px 12px rgba(31,42,90,.14), 0 0 0 1px color-mix(in srgb, var(--feature-color) 22%, white);
}
.feature-icon svg { width: 43px; height: 43px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin: 7px 0 12px; font-size: 1.32rem; letter-spacing: -.025em; }
.feature p { margin: 0; color: #344963; font-size: .94rem; line-height: 1.65; }
.feature-benefit { position: relative; z-index: 2; display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 24px; color: var(--feature-color); font-size: .91rem; font-weight: 750; }
.feature-benefit svg { width: 25px; height: 25px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-watermark { position: absolute; right: -21px; bottom: -28px; width: 150px; height: 150px; fill: none; stroke: var(--feature-color); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; opacity: .08; }

.mission-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #fff 0%, #f6fbff 58%, #edf8ff 100%); }
.vehicle-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: stretch;
  gap: 38px;
  padding: 34px;
  border: 1px solid #dce9f2;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 22px 60px rgba(31,42,90,.1);
}
.vehicle-band::before { content: ""; position: absolute; left: -130px; bottom: -180px; width: 620px; height: 300px; border-radius: 50%; background: var(--navy); transform: rotate(12deg); z-index: 0; }
.vehicle-band::after { content: ""; position: absolute; left: 42%; top: 7%; width: 310px; height: 600px; border: 1px solid rgba(0,174,239,.14); border-radius: 50%; transform: rotate(28deg); z-index: 0; }
.vehicle-copy { position: relative; z-index: 2; display: flex; flex-direction: column; padding: 38px 14px 0 28px; }
.vehicle-copy h2 { max-width: 640px; margin-top: 22px; font-size: clamp(3.4rem, 5vw, 5.6rem); line-height: .96; letter-spacing: -.055em; }
.mission-title-accent { color: var(--cyan); }
.mission-subtitle { margin: 12px 0 25px; color: var(--navy-dark); font-size: clamp(1.55rem, 2.4vw, 2.3rem); letter-spacing: -.02em; }
.mission-text { max-width: 680px; color: #334a66; font-size: 1rem; }
.mission-text p { margin: 0 0 19px; }
.mission-text strong { color: var(--navy-dark); }
.mission-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: auto; padding-top: 22px; }
.mission-benefit { position: relative; z-index: 2; min-height: 190px; padding: 22px 15px 18px; border: 1px solid #d8e4ed; border-radius: 12px; background: rgba(255,255,255,.96); box-shadow: 0 12px 25px rgba(31,42,90,.1); text-align: center; }
.mission-benefit::after { content: ""; display: block; width: 34px; height: 2px; margin: 15px auto 0; background: var(--cyan); }
.mission-benefit-icon { display: grid; width: 64px; height: 64px; place-items: center; margin: -4px auto 15px; border-radius: 50%; color: var(--cyan-dark); background: #f4fbff; box-shadow: 0 6px 16px rgba(31,42,90,.1), inset 0 0 0 1px #deedf7; }
.mission-benefit-icon svg { width: 39px; height: 39px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mission-benefit strong { display: block; color: var(--navy-dark); font-size: 1.02rem; }
.mission-benefit span { display: block; margin-top: 5px; color: var(--muted); font-size: .78rem; }
.vehicle-visual { position: relative; z-index: 2; min-height: 720px; overflow: hidden; border-radius: 38px 38px 105px 38px; background: var(--ice); }
.vehicle-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cold-chain-badge { position: absolute; right: 22px; bottom: 28px; display: flex; align-items: center; gap: 13px; min-width: 270px; padding: 11px 20px 11px 11px; border-radius: 13px; color: white; background: rgba(19,28,69,.96); box-shadow: 0 12px 28px rgba(3,15,44,.3); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.cold-chain-badge-icon { display: grid; width: 50px; height: 50px; flex: 0 0 auto; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--cyan-dark), var(--cyan)); font-size: 1.55rem; }
.cold-chain-badge strong { display: block; margin-top: 2px; color: var(--cyan); }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 28px 34px; border-radius: 7px; color: white; background: linear-gradient(100deg, var(--navy-dark), var(--navy)); }
.cta-band h2 { color: white; font-size: clamp(1.65rem, 3vw, 2.4rem); }
.cta-band p { margin: 7px 0 0; color: #d6e6f2; }

.page-hero { min-height: 360px; display: flex; align-items: center; padding: 34px 0; color: var(--ink); background: linear-gradient(115deg, #fff 0%, #f8fcff 55%, #eaf7ff 100%); border-bottom: 1px solid var(--border); }
.page-hero-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 48px; }
.page-hero-copy { padding-left: 34px; }
.page-hero h1 { margin-top: 12px; color: var(--navy-dark); font-size: clamp(2.7rem, 4.6vw, 4.3rem); }
.page-hero p { max-width: 620px; color: var(--muted); font-size: 1.04rem; }
.page-hero-media { position: relative; height: 292px; overflow: hidden; border-radius: 14px 42px 14px 42px; background: var(--ice); box-shadow: 0 17px 38px rgba(31,42,90,.14); }
.page-hero-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(31,42,90,.08), transparent 45%); pointer-events: none; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-services .page-hero-media img { object-position: center; }
.page-hero-contact .page-hero-media img { object-position: center 28%; }
.page-hero-media-label { position: absolute; right: 18px; bottom: 18px; z-index: 2; padding: 10px 15px; border-radius: 7px; color: white; background: rgba(19,28,69,.94); box-shadow: 0 8px 18px rgba(19,28,69,.22); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .045em; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; gap: 22px; }
.service-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: 15px; background: white; box-shadow: 0 16px 38px rgba(5,44,93,.09); transition: transform .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(5,44,93,.14); }
.service-card-visual { position: relative; height: 210px; flex: 0 0 auto; }
.service-card-media { width: 100%; height: 100%; object-fit: cover; }
.service-card:nth-child(4) .service-card-media { object-position: center 30%; }
.service-card-icon { position: absolute; right: 50%; bottom: -44px; display: grid; width: 88px; height: 88px; place-items: center; border: 8px solid white; border-radius: 50%; color: #0b8ff0; background: #f8fcff; box-shadow: 0 9px 20px rgba(19,28,69,.16); transform: translateX(50%); }
.service-card-icon svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card-body { display: flex; height: 100%; flex-direction: column; padding: 55px 27px 28px; }
.service-card h2 { min-height: 62px; margin: 0 0 13px; padding-bottom: 15px; position: relative; font-size: clamp(1.35rem, 1.7vw, 1.65rem); letter-spacing: -.025em; }
.service-card h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--cyan); }
.service-card p { margin: 0; color: #334963; font-size: .9rem; line-height: 1.6; }
.service-card ul { display: grid; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; color: #334963; font-size: .86rem; line-height: 1.5; }
.service-card li { position: relative; padding-left: 22px; }
.service-card li::before { content: "✓"; position: absolute; left: 0; color: #078df0; font-weight: 900; }
.process-section { position: relative; overflow: hidden; color: white; background: linear-gradient(90deg, rgba(6,18,51,.99) 0%, rgba(6,18,51,.96) 42%, rgba(6,18,51,.72) 72%, rgba(6,18,51,.88) 100%), url("hero-35t-winter.webp") right 28% / 64% auto no-repeat, #061233; }
.process-section::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 35%, rgba(2,11,34,.5) 100%); }
.process-container { position: relative; z-index: 2; }
.process-intro { max-width: 720px; }
.process-intro .eyebrow { color: var(--cyan); }
.process-intro h2 { margin-top: 18px; color: white; font-size: clamp(3.2rem, 5vw, 5.4rem); letter-spacing: -.055em; line-height: .92; }
.process-intro h2 span { color: var(--cyan); }
.process-intro p { margin: 25px 0 0; color: #d9e7f3; font-size: 1.08rem; }
.process-promise { position: absolute; top: 68px; right: 25%; display: flex; width: 225px; min-height: 160px; align-items: center; gap: 15px; padding: 24px; border: 1px dashed rgba(0,174,239,.7); border-radius: 50%; color: white; background: rgba(7,26,65,.72); font-size: .88rem; line-height: 1.55; }
.process-promise svg { width: 47px; height: 47px; flex: 0 0 auto; fill: none; stroke: var(--cyan); stroke-width: 2; }
.process-promise strong { color: var(--cyan); }
.process { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 84px; }
.process::before { content: ""; position: absolute; left: 8%; right: 8%; top: -38px; height: 45px; border-top: 1px dashed rgba(0,174,239,.75); border-radius: 50%; }
.process-step { position: relative; display: flex; min-height: 430px; flex-direction: column; padding: 24px 28px 30px; border: 1px solid rgba(154,197,230,.3); border-radius: 20px; background: linear-gradient(145deg, rgba(20,47,88,.88), rgba(8,27,63,.94)); box-shadow: 0 18px 42px rgba(0,0,0,.22); }
.process-step::after { content: ""; position: absolute; left: 15%; right: 15%; bottom: -1px; height: 11px; background: linear-gradient(90deg, #078ee7, var(--cyan), #078ee7); clip-path: polygon(5% 0,95% 0,100% 100%,0 100%); }
.process-dot { position: absolute; top: -49px; left: 50%; width: 18px; height: 18px; border: 4px solid #0c75d2; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(0,174,239,.12); transform: translateX(-50%); }
.process-step-head { display: flex; min-height: 92px; align-items: center; gap: 24px; }
.process-step-head strong { display: grid; width: 64px; height: 64px; flex: 0 0 auto; place-items: center; margin: 0; border: 4px solid #0b8fe8; border-radius: 50%; color: white; background: linear-gradient(135deg, #0787e4, var(--cyan)); box-shadow: 0 0 0 4px rgba(0,174,239,.15); font-size: 1.35rem; }
.process-step-head svg { width: 65px; height: 65px; fill: none; stroke: #079ef1; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.process-step h3 { position: relative; margin: 12px 0 15px; padding-bottom: 14px; color: white; font-size: 1.65rem; }
.process-step h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--cyan); }
.process-step p { margin: 0; color: #dce8f1; font-size: .9rem; line-height: 1.65; }
.process-step ul { display: grid; gap: 8px; margin: auto 0 0; padding: 24px 0 0; list-style: none; color: #dce8f1; font-size: .86rem; }
.process-step li { position: relative; padding-left: 25px; }
.process-step li::before { content: "✓"; position: absolute; left: 0; display: grid; width: 16px; height: 16px; place-items: center; border: 1px solid var(--cyan); border-radius: 50%; color: var(--cyan); font-size: .66rem; font-weight: 900; }

.page-hero-contact p { max-width: 550px; }
.contact-section { padding-top: 42px; background: white; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 38px; }
.contact-card, .form-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.contact-card { border: 0; box-shadow: none; }
.contact-list { display: grid; gap: 19px; margin-top: 25px; }
.contact-line { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 13px; }
.contact-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--ice); color: var(--cyan-dark); font-size: 1.2rem; }
.contact-line strong { display: block; color: var(--navy); }
.contact-line span, .contact-line a { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--navy-dark); font-size: .84rem; font-weight: 750; }
input, select, textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cedae4; border-radius: 5px; color: var(--ink); background: #fff; }
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--cyan); outline: 3px solid rgba(7,153,229,.13); }
.form-note { margin: 12px 0; color: var(--muted); font-size: .8rem; }
.form-card .btn { width: 100%; }
.form-status { display: none; margin-top: 14px; padding: 13px 15px; border-radius: 5px; color: #176b3a; background: #e8f8ef; font-weight: 700; }

.site-footer { padding: 38px 0 17px; color: #dce8f2; background: var(--navy-dark); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .75fr; gap: 38px; }
.footer-logo { width: 245px; padding: 7px; border-radius: 6px; background: white; }
.footer-title { margin-bottom: 12px; color: white; font-weight: 850; }
.footer-links { display: grid; gap: 7px; font-size: .9rem; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.13); color: #aebfd0; font-size: .82rem; }

@media (max-width: 1380px) {
  .header-phone { display: none; }
  .nav { gap: 38px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid > div:first-child { width: min(650px, 55vw); }
}

@media (min-width: 1181px) and (max-width: 1380px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 920px) {
  .container { width: min(100% - 40px, 1420px); }
  .header-inner { min-height: 82px; }
  .logo { width: 245px; }
  .mobile-toggle { display: grid; place-items: center; }
  .nav { position: absolute; left: 20px; right: 20px; top: 81px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid var(--border); border-radius: 8px; background: white; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 8px; }
  .nav a::after { display: none; }
  .hero { min-height: 610px; background-position: 60% center; }
  .hero-grid > div:first-child { width: 62%; }
  .fresh-grid, .vehicle-band, .contact-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 45px 0; }
  .page-hero-copy { padding-left: 0; }
  .page-hero-media { height: 310px; }
  .vehicle-band { padding: 25px; }
  .vehicle-copy { padding: 28px 10px 0; }
  .vehicle-visual { min-height: 590px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-section { background-position: 78% 18%; background-size: auto 54%; }
  .process-promise { top: 110px; right: 4%; }
  .process { row-gap: 72px; margin-top: 90px; }
  .process::before { display: none; }
  .process-step:nth-child(3) .process-dot, .process-step:nth-child(4) .process-dot { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1420px); }
  .logo { width: 210px; }
  .hero { min-height: 0; padding: 48px 0 300px; background-position: 68% bottom; background-size: auto 100%; }
  .hero-grid > div:first-child { width: 100%; }
  .hero h1 { max-width: 100%; font-size: 3rem; }
  .hero-title-line { white-space: normal; }
  .hero-lead { font-size: 1rem; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .feature-list, .service-grid, .process, .form-grid, .stat-row, .footer-grid { grid-template-columns: 1fr; }
  .feature { min-height: 245px; }
  .field.full { grid-column: auto; }
  .section { padding: 50px 0; }
  .page-hero { min-height: 230px; }
  .page-hero-media { height: 245px; border-radius: 10px 28px 10px 28px; }
  .page-hero-media-label { right: 10px; bottom: 10px; }
  .process-section { background-position: 68% top; background-size: auto 360px; }
  .process-intro { padding-top: 210px; }
  .process-intro h2 { font-size: 3.15rem; }
  .process-promise { display: none; }
  .process { gap: 22px; margin-top: 48px; }
  .process-step { min-height: 390px; }
  .process-dot { display: none; }
  .vehicle-copy, .contact-card, .form-card { padding: 24px; }
  .vehicle-band { padding: 15px; }
  .vehicle-copy h2 { font-size: 3.2rem; }
  .mission-benefits { grid-template-columns: 1fr; }
  .vehicle-visual { min-height: 430px; border-radius: 24px 24px 65px 24px; }
  .cold-chain-badge { right: 12px; bottom: 14px; min-width: 0; padding-right: 14px; }
  .cta-band, .footer-bottom { flex-direction: column; align-items: flex-start; }
}
