:root {
  --bg: #09050f;
  --bg-soft: #13091c;
  --card: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: #d7d0de;
  --pink: #ff2d9a;
  --pink-bright: #ff54b2;
  --silver: #d7d9df;
  --shadow: 0 18px 50px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,45,154,0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(147,84,255,0.18), transparent 30%),
    linear-gradient(180deg, #0a0610 0%, #13081a 48%, #09050f 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(9, 5, 15, 0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.brand-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-sub {
  display: block;
  color: var(--pink-bright);
  font-size: 0.85rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.nav a { color: var(--muted); }
.nav a:hover { color: var(--text); }
.nav-cta {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255,84,178,0.55);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255,45,154,0.18), 0 0 24px rgba(255,45,154,0.15) inset;
}
.menu-toggle, .hamburger { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,5,15,0.92) 0%, rgba(9,5,15,0.7) 45%, rgba(9,5,15,0.55) 100%),
    url('assets/mockup.png') center/cover no-repeat;
  opacity: 0.42;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(9,5,15,0.5) 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow, .section-tag {
  color: var(--pink-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
}
.hero h1, .section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  margin: 0.35rem 0 1rem;
}
.hero-text {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 650px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, #ff6bc1 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(255,45,154,0.35);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: white;
}
.full { width: 100%; }
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.hero-strip div, .service-card, .info-panel, .carrier-box, .payment-box, .contact-form, .route-panel {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.hero-strip div { padding: 1rem; }
.hero-strip span {
  display: block;
  color: var(--pink-bright);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-strip strong { display: block; margin-top: 0.35rem; }
.hero-card {
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.hero-card img {
  width: min(520px, 100%);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
}

.section { padding: 5rem 0; }
.section-dark { background: rgba(255,255,255,0.02); }
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.section h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}
.section p { color: var(--muted); line-height: 1.8; }
.feature-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.feature-points div {
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.info-panel, .payment-box { padding: 1.5rem; }
.info-panel h3, .payment-box h3 { margin-top: 0; }
.info-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-panel li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-panel li:last-child { border-bottom: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.service-card { padding: 1.5rem; }
.service-card h3 { margin-top: 0; font-size: 1.3rem; }
.route-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
}
.route-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.9;
}

.carrier-box { padding: 1.25rem; }
.carrier-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.carrier-row:last-child { border-bottom: 0; }
.carrier-row span { color: var(--pink-bright); }
.carrier-row strong { text-align: right; }

.contact-section {
  background: linear-gradient(180deg, rgba(255,45,154,0.08), rgba(255,255,255,0.01));
}
.contact-list a, .contact-list p {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}
.contact-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  color: white;
  padding: 0.95rem 1rem;
  font: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #bcb3c6; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 0;
  background: rgba(0,0,0,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.9fr;
  gap: 1rem;
}
.site-footer p { color: var(--muted); }

@media (max-width: 960px) {
  .hero-grid, .two-col, .card-grid, .route-panel, .footer-grid, .hero-strip {
    grid-template-columns: 1fr;
  }

  .menu-toggle { display: none; }
  .hamburger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .hamburger span {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: white;
  }
  .nav {
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    background: rgba(12,7,18,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .menu-toggle:checked ~ .nav { display: flex; }
  .nav-cta { text-align: center; }
}

@media (max-width: 600px) {
  .brand img { width: 52px; height: 52px; }
  .hero { padding-top: 4rem; }
  .feature-points { grid-template-columns: 1fr; }
  .carrier-row { flex-direction: column; }
  .carrier-row strong { text-align: left; }
}
