:root {
  --bg: #03080c;
  --bg-soft: #071118;
  --panel: rgba(10, 19, 25, 0.94);
  --panel-2: rgba(9, 16, 22, 0.86);
  --line: rgba(53, 224, 214, 0.2);
  --line-strong: rgba(53, 224, 214, 0.45);
  --text: #f4fbfc;
  --muted: #9cb0b5;
  --accent: #17d7cf;
  --accent-2: #08a8c1;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(20, 215, 205, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(8, 168, 193, 0.08), transparent 28%),
    linear-gradient(180deg, #02060a 0%, #03090d 45%, #02070a 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell { overflow: clip; }
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(2, 8, 12, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand-mark {
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
}
.brand-text {
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.site-nav a,
.footer-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  transition: color 0.25s ease;
}
.site-nav a:hover,
.footer-nav a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}
.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn:hover { color: #fff; }
.lang-btn.is-active {
  background: rgba(23,215,207,0.16);
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid {
  color: #021113;
  background: linear-gradient(135deg, var(--accent) 0%, #2de4d0 100%);
  box-shadow: 0 10px 28px rgba(23, 215, 207, 0.2);
}
.btn-solid:hover { box-shadow: 0 15px 30px rgba(23, 215, 207, 0.28); }
.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.01);
}
.btn-wide { width: 100%; }


.hero {
  padding: 34px 0 18px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: #02070a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(1.02) contrast(1.02) brightness(0.98);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(1,6,8,1) 0%,
      rgba(1,6,8,0.98) 14%,
      rgba(1,6,8,0.92) 24%,
      rgba(1,6,8,0.78) 34%,
      rgba(1,6,8,0.56) 44%,
      rgba(1,6,8,0.28) 56%,
      rgba(1,6,8,0.08) 70%,
      rgba(1,6,8,0) 84%
    ),
    linear-gradient(
      180deg,
      rgba(2,8,12,0.22) 0%,
      rgba(2,8,12,0.04) 46%,
      rgba(2,8,12,0.38) 100%
    );
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 520px;
  padding: 60px 0 42px 0;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  max-width: 9.6ch;
}
.hero-copy p {
  margin: 18px 0 0;
  max-width: 42ch;
  color: #d0dce0;
  font-size: 1.02rem;
  line-height: 1.72;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.accent-line {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.hero-actions .btn {
  min-height: 48px;
  padding-inline: 24px;
}
.trust-inline {
  margin-top: 18px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9f7f6;
  font-weight: 500;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.trust-badge::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 4px rgba(2,8,12,0.92);
  border: 1px solid rgba(23,215,207,0.55);
  background: var(--accent);
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.visual-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1,6,8,0.98) 0%, rgba(1,6,8,0.88) 10%, rgba(1,6,8,0.54) 26%, rgba(1,6,8,0.18) 42%, rgba(1,6,8,0.0) 58%),
    linear-gradient(180deg, rgba(2,8,12,0.16) 0%, rgba(2,8,12,0.02) 48%, rgba(2,8,12,0.34) 100%);
}
.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 73% 20%, rgba(23,215,207,0.12), transparent 20%);
}
.visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.02) brightness(0.98);
}
.visual-cards,
.mini-card {
  display: none !important;
}
.stats {
  padding: 12px 0 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(8, 16, 23, 0.9);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}
.stat-icon {
  min-width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--accent);
  border: 1px solid var(--line-strong);
  background: rgba(18, 215, 207, 0.06);
}
.stat-card h3 {
  margin: 0;
  color: var(--accent);
  font-size: 2rem;
  line-height: 1.05;
}
.stat-card p {
  margin: 6px 0 0;
  color: var(--text);
  opacity: 0.9;
}

.section {
  padding: 88px 0;
}
.section-tight { padding-top: 70px; }
.dark-band {
  background: linear-gradient(180deg, rgba(6, 13, 18, 0.85), rgba(4, 10, 15, 0.98));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.section-head {
  margin-bottom: 36px;
}
.section-head.centered {
  text-align: center;
  max-width: 900px;
}
.section-head.centered,
.section-head.centered.slim { margin-inline: auto; }
.section-head h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.section-head p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 74ch;
}

.cards-grid,
.categories-grid,
.team-grid,
.logistics-grid {
  display: grid;
  gap: 18px;
}
.four-up { grid-template-columns: repeat(4, 1fr); }
.feature-card,
.category-card,
.process-card,
.team-card,
.logistics-card {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(8, 15, 21, 0.88);
  box-shadow: var(--shadow);
}
.feature-card {
  padding: 28px;
}
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--accent);
  background: rgba(18, 215, 207, 0.06);
  border: 1px solid var(--line);
}
.feature-card h3,
.category-card h3,
.process-card h3,
.team-card h3,
.logistics-copy h3,
.brands-wrap h2,
.cta-copy h2 {
  margin: 18px 0 0;
  font-size: 1.36rem;
  line-height: 1.22;
}
.feature-card p,
.process-card p,
.logistics-copy p,
.brands-wrap p,
.cta-copy p,
.cta-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.categories-grid {
  grid-template-columns: repeat(6, 1fr);
}
.category-card {
  min-height: 172px;
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.category-card span {
  font-size: 2.1rem;
  color: var(--accent);
}
.note-row {
  margin-top: 18px;
}
.note-row p {
  margin: 0;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  color: #d8f5f6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 40px;
  border-top: 1px dashed rgba(53, 224, 214, 0.34);
}
.process-card {
  position: relative;
  padding: 78px 24px 28px;
}
.process-number {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #31ecda);
  color: #031014;
  font-weight: 800;
}

.logistics-grid {
  grid-template-columns: repeat(4, 1fr);
}
.logistics-card {
  overflow: hidden;
}
.logistics-card img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logistics-copy { padding: 22px; }

.brands-band { padding: 72px 0; }
.brands-wrap {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: center;
}
.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.brand-chips span {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: #d9f7f6;
  background: rgba(18, 215, 207, 0.05);
  font-weight: 600;
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
}
.team-card {
  padding: 28px;
  text-align: center;
}
.avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 34%, #6a7b81 0 17px, transparent 18px),
    radial-gradient(circle at 50% 85%, #49575d 0 31px, transparent 32px),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}
.team-card a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.team-card a:hover { color: var(--accent); }

.final-cta { padding-top: 72px; }
.cta-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}
.cta-copy,
.cta-panel {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 16, 23, 0.95), rgba(5, 11, 16, 0.95));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
}
.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.contact-list div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.contact-list strong {
  display: block;
  color: white;
  margin-bottom: 8px;
}
.contact-list span,
.contact-list a { color: var(--muted); }
.cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at bottom right, rgba(23, 215, 207, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(8, 16, 23, 0.95), rgba(5, 11, 16, 0.95));
}

.site-footer {
  padding: 22px 0 34px;
}
.footer-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .brand-mark,
.footer-brand .brand-text {
  font-size: 1.75rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.site-footer p { color: var(--muted); margin: 0; }

@media (max-width: 1160px) {
  .hero-grid,
  .brands-wrap,
  .cta-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }
  .four-up,
  .stats-grid,
  .process-grid,
  .logistics-grid,
  .team-grid,
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before { display: none; }
  .brand-chips { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .nav-wrap {
    grid-template-columns: auto auto auto;
    gap: 14px;
  }
  .lang-switcher { order: 3; justify-self: start; }
  .header-cta { display: none; }
  .lang-btn { padding: 9px 10px; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(7, 14, 20, 0.98);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .hero { padding-top: 38px; }
  .hero-copy h1 { max-width: 100%; }
  .visual-frame img { min-height: 500px; }
  .lang-switcher { margin-top: 10px; }
  .visual-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand-mark,
  .brand-text { font-size: 1.55rem; }
  .hero-grid,
  .four-up,
  .stats-grid,
  .process-grid,
  .logistics-grid,
  .team-grid,
  .categories-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
  }
  .section,
  .brands-band { padding: 64px 0; }
  .hero-copy p,
  .section-head p,
  .feature-card p,
  .process-card p,
  .logistics-copy p,
  .cta-copy p,
  .cta-panel p {
    line-height: 1.65;
  }
  .site-footer { text-align: center; }
  .footer-nav { justify-content: center; }
  .stat-card,
  .feature-card,
  .process-card,
  .team-card,
  .cta-copy,
  .cta-panel,
  .category-card,
  .logistics-copy {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact-list { gap: 12px; }
}


@media (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-shell {
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    background:
      linear-gradient(180deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.58) 40%, rgba(0,0,0,0.18) 100%);
  }
  .hero-copy {
    padding: 42px 26px 10px;
  }
  .hero-visual {
    min-height: 430px;
  }
  .visual-frame {
    position: relative;
    min-height: 430px;
  }
}

@media (max-width: 860px) {
  .hero { padding-top: 26px; }
  .hero-shell { border-radius: 24px; }
  .hero-copy { padding: 34px 20px 10px; }
  .hero-copy h1 { max-width: 11ch; font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-copy p { font-size: 0.96rem; }
  .hero-visual, .visual-frame, .visual-frame img { min-height: 340px; }
}

@media (max-width: 640px) {
  .hero-grid { gap: 0; }
  .hero-copy { padding: 28px 18px 8px; }
  .hero-copy h1 { max-width: 100%; }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-visual, .visual-frame, .visual-frame img { min-height: 280px; }
  .stats { padding-top: 18px; }
}
