:root {
  --bg: #f3f6fb;
  --text: #0b1a33;
  --muted: #4a5a78;
  --primary: #0e5fcb;
  --primary-strong: #09479a;
  --accent: #00a991;
  --surface: #ffffff;
  --dark: #061229;
  --line: #d6deea;
  --shadow: 0 20px 50px rgba(8, 26, 58, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 15% 20%, #e6f0ff 0, transparent 38%),
    radial-gradient(circle at 92% 8%, #d6fff9 0, transparent 33%), var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

.container {
  width: min(1160px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(248, 251, 255, 0.92);
  border-bottom: 1px solid rgba(11, 26, 51, 0.08);
}

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

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo {
  display: block;
  width: clamp(170px, 18vw, 240px);
  max-width: 52vw;
  height: auto;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.top-nav a {
  font-weight: 600;
  color: #1b2c4e;
}

.cta-link {
  border: 1px solid var(--line);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  transition: 0.2s ease;
}

.cta-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 18, 41, 0.9) 0%,
    rgba(6, 18, 41, 0.74) 45%,
    rgba(6, 18, 41, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #eef5ff;
  padding: 5.4rem 0;
  max-width: 820px;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0.75rem 0 1.1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  margin: 0.7rem 0 0;
}

.hero-copy {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 680px;
  color: #d8e6ff;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.availability-form {
  margin-top: 1rem;
  max-width: 560px;
}

.availability-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #c9daf8;
}

.availability-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.availability-row input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(238, 245, 255, 0.45);
  background: rgba(238, 245, 255, 0.1);
  color: #f4f8ff;
}

.availability-row input::placeholder {
  color: #ccdaef;
}

.btn {
  border: 0;
  border-radius: 11px;
  padding: 0.86rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0a6aea);
  color: #fff;
  box-shadow: 0 12px 26px rgba(13, 96, 204, 0.3);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(238, 245, 255, 0.45);
  color: #f6f9ff;
}

.kpis {
  margin-top: 2.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.kpi {
  background: rgba(238, 245, 255, 0.12);
  border: 1px solid rgba(238, 245, 255, 0.2);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  min-width: 160px;
}

.kpi-value {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.kpi-label {
  font-size: 0.95rem;
  color: #d2def3;
}

.section {
  padding: 5.3rem 0;
}

.section-head {
  margin-bottom: 1.8rem;
  max-width: 720px;
}

.section-head p:last-child {
  color: var(--muted);
  margin-top: 0.85rem;
}

.grid {
  display: grid;
  gap: 1.15rem;
}

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

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #dde5f2;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3,
.card p {
  padding-inline: 1.1rem;
}

.card h3 {
  margin: 1rem 0 0.2rem;
}

.card p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.section-alt {
  background: linear-gradient(180deg, #f9fbff 0%, #f0f5fe 100%);
  border-top: 1px solid #dce5f5;
  border-bottom: 1px solid #dce5f5;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.coverage-card {
  border: 1px solid #d6e2f3;
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}

.coverage-card h3 {
  margin: 0 0 0.45rem;
}

.coverage-card p {
  margin: 0;
  color: var(--muted);
}

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

.spec-card {
  background: #fff;
  border: 1px solid #d8e3f4;
  border-radius: var(--radius);
  padding: 1.2rem;
}

.spec-card h3 {
  margin-top: 0;
}

.spec-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.network-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
}

.network-visual {
  border-radius: var(--radius);
  min-height: 320px;
  border: 1px solid #d6e2f6;
  background-image: linear-gradient(
      160deg,
      rgba(14, 95, 203, 0.16),
      rgba(0, 169, 145, 0.15)
    ),
    url("assets/network-logistics.jpg");
  background-size: cover;
  background-position: center;
}

.network-list {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #dce6f5;
  padding: 1.2rem;
  color: var(--muted);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.section-dark {
  background: linear-gradient(150deg, #071a39 0%, #0a234d 100%);
  color: #eaf2ff;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.about-wrap .eyebrow {
  color: #80e5d6;
}

.about-wrap p {
  color: #c6d8f5;
}

.about-points {
  display: grid;
  gap: 0.8rem;
}

.about-points div {
  border: 1px solid rgba(198, 216, 245, 0.3);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(234, 242, 255, 0.04);
}

.about-points h3 {
  margin: 0 0 0.2rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid #d7e3f4;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form .cf-turnstile {
  margin-top: 0.2rem;
  min-height: 66px;
}

.captcha-wrap {
  border: 1px dashed #c8d5ea;
  border-radius: 12px;
  padding: 0.75rem;
  background: #f8fbff;
}

.captcha-label {
  margin: 0 0 0.45rem;
  font-weight: 700;
  font-size: 0.86rem;
  color: #304767;
}

.captcha-help {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: #5a6e8e;
}

.captcha-runtime {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.captcha-runtime.ok {
  color: #0a7a47;
}

.captcha-runtime.error {
  color: #b01a2c;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.ok {
  color: #087545;
}

.form-status.error {
  color: #b01a2c;
}

input,
textarea {
  border: 1px solid #cdd9eb;
  border-radius: 10px;
  padding: 0.72rem;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 95, 203, 0.12);
}

.availability-row input {
  border: 1px solid rgba(238, 245, 255, 0.45);
  background: rgba(238, 245, 255, 0.1);
  color: #f4f8ff;
}

.availability-row input:focus {
  border-color: rgba(170, 206, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(121, 177, 255, 0.2);
}

.site-footer {
  border-top: 1px solid #d5dfef;
  background: #f8fbff;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0 1.4rem;
  color: #334766;
}

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

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

@media (max-width: 960px) {
  .cards-3,
  .coverage-grid,
  .specs-grid,
  .network-wrap,
  .about-wrap,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .nav-wrap {
    min-height: 74px;
  }

  .brand-logo {
    width: clamp(150px, 42vw, 195px);
  }

  .menu-btn {
    display: block;
  }

  .top-nav {
    position: absolute;
    top: 74px;
    right: 1.5rem;
    left: 1.5rem;
    background: #f8fbff;
    border: 1px solid #d8e3f4;
    border-radius: 14px;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .top-nav.open {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .availability-row {
    flex-direction: column;
    align-items: stretch;
  }

  .container {
    width: min(1160px, calc(100% - 1.5rem));
  }
}
