:root {
  --purple: #5c1b78;
  --purple-dark: #3e0e54;
  --purple-soft: #f4eef7;
  --ink: #101114;
  --muted: #5f6368;
  --line: #e8e8eb;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 232, 235, .85);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.85rem;
  letter-spacing: .04em;
}

.brand-text small {
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--purple);
}

.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: .93rem;
  font-weight: 600;
}

.desktop-nav a {
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--purple);
}

.lang-toggle {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--purple);
  color: white;
}

.hero {
  padding: 56px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 610px;
  align-items: stretch;
}

.hero-copy {
  padding: 70px 54px 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
}

.eyebrow.light {
  color: #dcbdf0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 28px;
}

.accent {
  color: var(--purple);
}

.hero-text {
  max-width: 560px;
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 14px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 10px 24px rgba(92, 27, 120, .22);
}

.btn-primary:hover {
  background: var(--purple-dark);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: white;
}

.hero-image {
  min-height: 610px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, 0) 25%),
    url("assets/warehouse-hero.jpg") center/cover no-repeat;
  border-radius: 26px 0 0 26px;
}

.experience-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.experience-grid {
  min-height: 150px;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 45px;
}

.experience-number {
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.experience-number strong {
  color: var(--purple);
  font-size: 3.4rem;
  letter-spacing: -.05em;
}

.experience-number span {
  max-width: 115px;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.experience-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.section {
  padding: 110px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 60px rgba(16, 17, 20, .06);
}

.service-card {
  min-height: 260px;
  padding: 32px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.service-card:nth-child(4n) {
  border-right: 0;
}

.service-card:nth-last-child(-n+4) {
  border-bottom: 0;
}

.service-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 16px 34px rgba(92, 27, 120, .12);
  z-index: 2;
}

.icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 1.8rem;
  font-weight: 700;
}

.service-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

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

.global-section {
  padding: 90px 0;
  color: white;
  background:
    radial-gradient(circle at 20% 50%, rgba(191, 125, 226, .22), transparent 30%),
    linear-gradient(135deg, #2d0a3c, #6b1d8c);
}

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

.global-grid p {
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.contact-section {
  padding: 75px 0;
  background: #fafafa;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 42px 46px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 45px rgba(16, 17, 20, .06);
}

.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.email-link {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--purple);
  white-space: nowrap;
}

footer {
  background: #17181b;
  color: rgba(255, 255, 255, .76);
  padding: 28px 0;
  font-size: .9rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

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

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

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

  .hero-copy {
    padding: 55px 0 38px;
  }

  .hero-image {
    min-height: 430px;
    border-radius: 24px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    padding: 36px 0;
    gap: 24px;
  }

  .experience-number {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }

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

  .service-card:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-last-child(-n+4) {
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .global-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 1.45rem;
  }

  .brand-text small {
    font-size: .65rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-image {
    min-height: 320px;
  }

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

  .service-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .service-card:last-child {
    border-bottom: 0 !important;
  }

  .section {
    padding: 78px 0;
  }

  .contact-card {
    padding: 30px 24px;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 4px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 74px;
  height: 74px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0b1020;
}

.brand-name small {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 7px;
  color: #6b1b8f;
}

/* ============================
   TRUSTED SHIPPING PARTNERS
============================ */

.carrier-section {
  padding: 90px 0;
  background: #fafafa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.carrier-content {
  max-width: 1000px;
  margin: 0 auto;
}

.carrier-content h2 {
  margin-bottom: 15px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.carrier-text {
  max-width: 760px;
  margin: 0 auto 50px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.carrier-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
  flex-wrap: wrap;
}

.carrier-logos img {
  display: block;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: .92;
  transition: transform .25s ease, opacity .25s ease;
}

.carrier-logos img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.carrier-logos img[alt="FedEx"] {
  height: 48px;
}

.carrier-logos img[alt="UPS"] {
  height: 62px;
}

.carrier-logos img[alt="DHL"] {
  height: 38px;
}

.carrier-logos img[alt="Purolator"] {
  height: 44px;
}

@media (max-width: 768px) {
  .carrier-section {
    padding: 70px 0;
  }

  .carrier-logos {
    gap: 35px;
  }

  .carrier-text {
    margin-bottom: 40px;
    padding: 0 15px;
    font-size: 1rem;
  }

  .carrier-logos img[alt="FedEx"] {
    height: 36px;
  }

  .carrier-logos img[alt="UPS"] {
    height: 46px;
  }

  .carrier-logos img[alt="DHL"] {
    height: 30px;
  }

  .carrier-logos img[alt="Purolator"] {
    height: 34px;
  }
}

#about,
#services,
#advantages,
#contact {
  scroll-margin-top: 180px;
}