:root {
  --color-primary: #232021;
  --color-accent: #4fae8a;
  --color-accent-strong: #3d8f70;
  --color-bg: #f4f8f6;
  --color-surface: #ffffff;
  --color-surface-soft: rgba(255, 255, 255, 0.86);
  --color-text: #232021;
  --color-muted: #5f6965;
  --color-line: #d7e6df;
  --color-success: #2f7f62;
  --color-error: #991b1b;
  --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --space-2xs: clamp(0.5rem, 0.45rem + 0.2vw, 0.7rem);
  --space-xs: clamp(0.75rem, 0.65rem + 0.3vw, 1rem);
  --space-sm: clamp(1rem, 0.9rem + 0.5vw, 1.35rem);
  --space-md: clamp(1.4rem, 1.2rem + 0.8vw, 2rem);
  --space-lg: clamp(2rem, 1.6rem + 1.2vw, 3rem);
  --space-xl: clamp(3rem, 2.5rem + 2vw, 4.8rem);
  --space-2xl: clamp(4.25rem, 3.5rem + 3.2vw, 7rem);
  --font-body: 16px;
  --font-small: 14px;
  --font-h1: clamp(32px, 4vw, 48px);
  --font-h2: clamp(24px, 3vw, 32px);
  --font-h3: clamp(20px, 2.5vw, 24px);
  --text-max: 70ch;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  font-size: var(--font-body);
  line-height: 1.7;
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(79, 174, 138, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--color-bg) 44%, #ecf4f0 100%);
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

a,
button,
.service-card,
.detail-card-link,
.media-card,
.info-panel,
.industry-card {
  transition: all 0.2s ease;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(79, 174, 138, 0.35);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.narrow-copy {
  max-width: 62ch;
}

.compact-heading {
  margin-bottom: var(--space-md);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 225, 236, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.header-bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 36px;
  width: auto;
  box-shadow: none;
  border-radius: 0;
}

.site-nav,
.mobile-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.mobile-nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  transition: color 0.2s ease;
}

.site-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--color-accent);
}

.site-nav a.is-active::after,
.mobile-nav a.is-active::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(35, 32, 33, 0.06);
}

.lang-dropdown-toggle::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.lang-dropdown.is-open .lang-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.lang-dropdown-icon {
  font-size: 0.92rem;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 148px;
  display: none;
  padding: 0.35rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.lang-dropdown.is-open .lang-dropdown-menu {
  display: grid;
  gap: 0.15rem;
}

.lang-dropdown-menu button {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.55rem 0.7rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #1f2937;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
}

.lang-dropdown-menu button:hover,
.lang-dropdown-menu button.is-active {
  background: #f5f7fa;
  color: var(--color-accent);
}

.lang-switcher {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.lang-switcher button,
.menu-toggle {
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lang-switcher button.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.menu-toggle {
  display: none;
}

.header-cta,
.mobile-panel-cta {
  min-height: 44px;
  margin-top: 0;
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(215, 225, 236, 0.85);
  background: rgba(245, 247, 250, 0.98);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-nav {
  padding: var(--space-sm) 1rem 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
}

.mobile-panel-tools {
  padding: var(--space-sm) 1rem var(--space-sm);
  display: grid;
  gap: 0.85rem;
}

.lang-dropdown-mobile .lang-dropdown-toggle {
  width: 100%;
  justify-content: space-between;
}

.lang-dropdown-mobile .lang-dropdown-menu {
  position: static;
  margin-top: 0.5rem;
  min-width: 100%;
}

.hero-slider,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  min-height: 80vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-media,
.hero-image,
.page-hero-image {
  width: 100%;
  height: 100%;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image,
.page-hero-image,
.industry-card img,
.media-card img,
.media-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 15, 0.55) 0%,
    rgba(10, 20, 15, 0.65) 50%,
    rgba(10, 20, 15, 0.70) 100%
  );
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.hero-content {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--space-2xl) + 1.5rem) 0 var(--space-2xl);
  max-width: 720px;
  margin-inline: auto;
}

.page-hero {
  min-height: clamp(380px, 52vh, 520px);
  display: flex;
  align-items: center;
}

.page-hero-image {
  position: absolute;
  inset: 0;
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(var(--space-2xl) + 1rem) 0 var(--space-xl);
  max-width: 720px;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 var(--space-xs);
  font-size: 0.8rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8e3d4;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: #A7F3D0;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  max-width: none;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 28px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--space-xs);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

h1 {
  font-size: var(--font-h1);
  font-weight: 700;
  line-height: 1.2;
  max-width: 16ch;
  margin-inline: auto;
  text-shadow: 0 8px 22px rgba(35, 32, 33, 0.24);
}

h2 {
  font-size: var(--font-h2);
  font-weight: 600;
  max-width: 16ch;
}

h3 {
  font-size: var(--font-h3);
  font-weight: 600;
  color: #2c3430;
}

p {
  margin: 0;
  font-size: 17px;
  max-width: var(--text-max);
  line-height: 1.7;
  color: #3f4743;
}

small {
  font-size: var(--font-small);
  color: #6b7280;
}

.hero-content h1,
.hero-content h2,
.page-hero-content h1,
.page-hero-content h2,
.section-dark h2 {
  color: #fff;
}

.hero-content p:last-of-type,
.page-hero-content p:last-of-type {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.section-actions,
.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-actions {
  margin-top: 0;
  justify-content: center;
}

.hero-content > .button,
.page-hero-content > .button,
.media-feature-copy > .button {
  margin-top: var(--space-md);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 12px 26px rgba(79, 174, 138, 0.24);
}

.button-primary {
  background: #22c55e;
  color: #fff;
}

.button-primary:hover {
  background: #16a34a;
}

.button-secondary {
  background: transparent;
  border: 1px solid #22c55e;
  color: #22c55e;
}

.button-secondary:hover {
  background: #22c55e;
  color: #fff;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
}

.slider-prev {
  left: 1.25rem;
}

.slider-next {
  right: 1.25rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  padding: 0;
}

.slider-dot.is-active {
  background: #fff;
}

section:not(.hero-slider):not(.page-hero),
.section {
  padding: 80px 0;
  position: relative;
}

section:not(.hero-slider):not(.page-hero)::before,
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: #e5e7eb;
}

main > section:first-child::before,
main > .section:first-child::before,
.hero-slider::before,
.page-hero::before,
.section-dark::before {
  display: none;
}

.section-heading {
  margin-bottom: var(--space-lg);
}

.section-heading p {
  margin-top: var(--space-2xs);
}

.section-actions {
  margin-top: var(--space-lg);
}

.section-heading h2 {
  color: var(--color-primary);
}

.copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--space-lg);
  align-items: start;
}

.copy-grid > .section-actions {
  grid-column: 1 / -1;
}

.seo-copy {
  display: grid;
  gap: var(--space-sm);
}

.seo-copy a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.faq-item {
  padding: var(--space-md);
  border: 1px solid rgba(215, 230, 223, 0.92);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  margin-bottom: var(--space-2xs);
}

.faq-item p {
  font-size: 16px;
  color: var(--color-muted);
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(79, 174, 138, 0.05));
}

.section-dark {
  background: linear-gradient(135deg, var(--color-primary), #353132);
  color: rgba(255, 255, 255, 0.84);
}

.section-dark .eyebrow {
  color: #a7d9c6;
}

.services-grid,
.detail-grid,
.card-grid,
.logistics-grid,
.logistics-cards,
.footer-grid,
.why-list,
.contact-layout,
.about-layout {
  display: grid;
  gap: var(--space-md);
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-card,
.detail-card,
.media-card,
.info-panel,
.contact-panel,
.fact-panel,
.media-feature {
  border: 1px solid rgba(215, 225, 236, 0.88);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 32px;
  min-height: 100%;
  transition: all 0.25s ease;
}

.service-card h3 {
  margin-bottom: var(--space-2xs);
}

.service-card p {
  margin-top: 0;
}

.service-card:hover,
.detail-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 174, 138, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card-cta {
  background: linear-gradient(135deg, rgba(79, 174, 138, 0.06), rgba(79, 174, 138, 0.14));
  border-color: rgba(79, 174, 138, 0.3);
}

.service-card-cta h3 {
  color: var(--color-accent);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(79, 174, 138, 0.14);
  color: var(--color-accent);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.trust-signals-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(79, 174, 138, 0.04));
}

.trust-signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.trust-signal-card {
  padding: var(--space-md);
  border: 1px solid rgba(215, 225, 236, 0.88);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.trust-signal-card h3 {
  margin-bottom: var(--space-2xs);
}

.trust-signal-card p {
  font-size: 16px;
  color: var(--color-muted);
}

.trust-signal-icon {
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-sm);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 174, 138, 0.24) 0 32%, rgba(79, 174, 138, 0) 33% 100%),
    linear-gradient(135deg, rgba(79, 174, 138, 0.16), rgba(35, 32, 33, 0.08));
  border: 1px solid rgba(79, 174, 138, 0.18);
}

.scroll-carousel {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: 0.6rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
}

.scroll-carousel::-webkit-scrollbar {
  display: none;
}

.snap-card {
  scroll-snap-align: start;
}

.industry-card {
  position: relative;
  min-width: min(360px, 84vw);
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.65));
}

.industry-card span,
.industry-card p {
  position: absolute;
  left: var(--space-md);
  right: var(--space-md);
  z-index: 2;
}

.industry-card span {
  bottom: calc(var(--space-md) + 1.5em + 8px);
  color: #fff;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.35;
}

.industry-card p {
  bottom: var(--space-md);
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
}

.logistics-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

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

.media-card,
.media-feature {
  overflow: hidden;
}

.media-card img,
.media-feature img {
  aspect-ratio: 16 / 9;
}

.media-card-copy,
.media-feature-copy {
  padding: var(--space-md);
  display: grid;
  gap: var(--space-2xs);
}

.media-card-copy h3,
.media-feature-copy h3 {
  margin-bottom: 0;
}

.media-card-copy p,
.media-feature-copy p {
  margin: 0;
}

.logo-marquee {
  overflow: hidden;
  padding: 0.35rem;
  border: 1px solid rgba(215, 225, 236, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.logo-row {
  width: max-content;
  display: flex;
  gap: var(--space-sm);
  animation: marquee 26s linear infinite;
}

.logo-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(215, 225, 236, 0.92);
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: var(--space-lg);
  align-items: start;
}

.why-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-list div {
  position: relative;
  padding: 1.1rem 1rem 1.1rem 3.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.why-list div::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at center, var(--color-accent) 0 35%, rgba(79, 174, 138, 0.15) 36% 100%);
  box-shadow: 0 0 0 6px rgba(79, 174, 138, 0.08);
}

.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
}

.detail-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: var(--space-md);
  padding: var(--space-md);
}

.detail-card-link {
  transition: all 0.25s ease;
}

.benefit-list {
  margin: var(--space-sm) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.benefit-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.6;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(79, 174, 138, 0.12);
}

.detail-index {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-primary), #3a3537);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.media-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.card-grid.two-column-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.info-panel {
  padding: var(--space-md);
}

.info-panel h3 {
  margin-bottom: var(--space-2xs);
}

.about-layout,
.contact-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
}

.about-copy {
  padding: var(--space-md);
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(215, 225, 236, 0.9);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: var(--space-sm);
}

.fact-panel {
  padding: var(--space-md);
  display: grid;
  gap: var(--space-sm);
}

.fact-item {
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  background: rgba(79, 174, 138, 0.08);
}

.fact-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-panel {
  padding: var(--space-md);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 16px;
  color: var(--color-text);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8a99a8;
}

.form-field-full,
.contact-form button {
  grid-column: 1 / -1;
}

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

.form-status {
  display: none;
  margin-bottom: var(--space-sm);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(22, 101, 52, 0.11);
  color: var(--color-success);
}

.form-status.is-error {
  background: rgba(153, 27, 27, 0.08);
  color: var(--color-error);
}

.contact-info {
  display: grid;
  gap: var(--space-sm);
}

.contact-assurance-list {
  display: grid;
  gap: 0.8rem;
  margin-top: var(--space-md);
}

.contact-assurance-list div {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 2.9rem;
  border-radius: 12px;
  background: rgba(79, 174, 138, 0.08);
  color: var(--color-text);
  font-size: 0.96rem;
  line-height: 1.6;
}

.contact-assurance-list div::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at center, var(--color-accent) 0 38%, rgba(79, 174, 138, 0.15) 39% 100%);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
  border-color: rgba(153, 27, 27, 0.45);
  background: rgba(153, 27, 27, 0.02);
}

.form-field.is-invalid span {
  color: var(--color-error);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: var(--space-lg);
  align-items: center;
  padding: clamp(1.6rem, 1.3rem + 1vw, 2.6rem);
  border: 1px solid rgba(79, 174, 138, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(35, 32, 33, 0.98), rgba(54, 50, 52, 0.94)),
    linear-gradient(180deg, rgba(79, 174, 138, 0.08), rgba(255, 255, 255, 0));
  box-shadow: 0 18px 40px rgba(35, 32, 33, 0.14);
}

.cta-panel h2,
.cta-panel p:not(.eyebrow) {
  color: #fff;
}

.cta-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
}

.cta-panel .button {
  margin-top: 0;
}

.site-footer {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h3,
.site-footer h4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-grid a {
  display: block;
  margin-top: 0.35rem;
}

.lang-switcher-footer {
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lang-switcher-footer button {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

.lang-switcher-footer button:hover,
.lang-switcher-footer button:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.lang-switcher-footer button.is-active {
  background: #fff;
  border-color: #fff;
  color: var(--color-primary);
}

.site-footer a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-bottom a {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 0.95rem;
  }

  .trust-signal-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .copy-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .logistics-grid,
  .media-feature {
    grid-template-columns: 1fr;
  }

  .logistics-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .services-grid,
  .detail-grid,
  .trust-signal-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.two-column-grid,
  .why-grid,
  .why-list,
  .footer-grid,
  .about-layout,
  .contact-layout,
  .contact-form,
  .logistics-cards {
    grid-template-columns: 1fr;
  }

  .header-bar {
    min-height: 76px;
  }

  .mobile-panel {
    display: none;
  }

  .mobile-panel.is-open {
    display: block;
  }
}

@media (max-width: 720px) {
  section:not(.hero-slider):not(.page-hero),
  .section {
    padding: 50px 0;
  }

  .container {
    padding: 0 18px;
  }

  .hero-slider {
    min-height: 620px;
  }

  .hero-actions,
  .section-actions,
  .cta-panel-actions {
    gap: 0.7rem;
  }

  .hero-content {
    min-height: 620px;
    padding: calc(var(--space-2xl) + 1rem) 0 var(--space-xl);
  }

  .hero-title {
    font-size: clamp(32px, 7vw, 42px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .page-hero {
    min-height: 360px;
  }

  .slider-arrow {
    top: auto;
    bottom: 4.25rem;
    transform: none;
    width: 46px;
    height: 46px;
  }

  .slider-prev {
    left: 0.9rem;
  }

  .slider-next {
    right: 0.9rem;
  }

  .slider-dots {
    bottom: 1rem;
  }

  .industry-card {
    min-width: 86vw;
  }

  .industry-card span {
    bottom: calc(var(--space-sm) + 1.4em + 6px);
    left: var(--space-sm);
    right: var(--space-sm);
    font-size: clamp(16px, 4.5vw, 20px);
  }

  .industry-card p {
    font-size: 0.85rem;
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  h1,
  h2 {
    max-width: none;
  }

  p {
    font-size: 16px;
  }

  .button,
  .lang-switcher button,
  .menu-toggle {
    min-height: 46px;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions,
  .section-actions,
  .cta-panel-actions {
    align-items: stretch;
  }

  .service-card,
  .detail-card,
  .info-panel,
  .contact-panel,
  .about-copy,
  .fact-panel,
  .trust-signal-card,
  .faq-item,
  .media-card-copy,
  .media-feature-copy {
    padding: var(--space-sm);
  }

  .cta-panel {
    padding: var(--space-sm);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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