:root {
  --bg: #020918;
  --panel: #071327;
  --panel-soft: #0a1931;
  --line: rgba(75, 115, 171, 0.35);
  --text: #deebff;
  --muted: #91a7c9;
  --cyan: #19b9e7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Times New Roman", Georgia, serif;
  background: var(--bg);
}

.page-bg {
  background:
    radial-gradient(circle at 50% -10%, rgba(33, 149, 206, 0.32), transparent 36%),
    linear-gradient(180deg, #020918 0%, #030d21 100%);
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.header {
  border-bottom: 1px solid var(--line);
  background: #030c1d;
}

.topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
  color: var(--cyan);
  line-height: 1;
  text-align: center;
}

.brand strong {
  display: block;
  font-size: 19px;
  letter-spacing: 0.4px;
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 700;
  color: #17d8ff;
}

.brand span {
  display: block;
  margin-top: 0;
  font-size: 16px;
  opacity: 1;
  font-family: "Times New Roman", Georgia, serif;
  color: #17d8ff;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: #d8e7fd;
  font-size: 22px;
  font-family: "Times New Roman", Georgia, serif;
}

.phone-pill {
  text-decoration: none;
  color: var(--cyan);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-family: "Times New Roman", Georgia, serif;
  white-space: nowrap;
  background: transparent;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-whatsapp {
  text-decoration: none;
  color: #17d8ff;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  padding: 52px 0 18px;
  text-align: center;
}

.logo-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -36px auto 22px;
  background: transparent;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: screen;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 72px);
  font-family: "Times New Roman", Georgia, serif;
  letter-spacing: 1px;
}

.hero-subtitle {
  margin: 12px auto 22px;
  color: #b9cde9;
  max-width: 700px;
  font-size: 21px;
}

.intro-list {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  list-style: none;
  background: rgba(9, 23, 45, 0.8);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
}

.intro-list li {
  font-size: 19px;
  line-height: 1.45;
  padding: 10px 0;
  border-top: 1px solid rgba(75, 115, 171, 0.28);
}

.intro-list li:first-child { border-top: 0; }
.intro-list li::before {
  content: none;
}

.services,
.clients,
.benefits,
.cta {
  padding: 18px 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 14px;
}

.services-info,
.services-list > div,
.benefits-grid article,
.cta-box,
.clients-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.services-info {
  padding: 24px;
}

.services-info h2 {
  margin: 0;
  font-size: 54px;
  line-height: 0.95;
}

.services-info p {
  color: #adc2df;
  margin: 16px 0;
  line-height: 1.5;
}

.services-note {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.services-note small { color: #9bb3d8; }

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 12px;
}

.services-list > div {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 600;
  font-size: 22px;
  position: relative;
}

.clients-box { padding: 18px; }

.clients-box h2,
.section-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 47px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.client {
  height: 72px;
  border-radius: 9px;
  border: 1px solid rgba(85, 117, 163, 0.45);
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 31px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.client:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.metro { background: #ffdc1d; color: #153f7a; }
.magnum { background: #c42240; color: #fff; font-style: italic; }
.admiral { background: #251c2a; color: #dab982; font-size: 23px; }
.scania { background: #11356d; color: #fff; }
.kpl { background: #efefef; color: #111; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.benefits-grid article { padding: 16px; }
.benefits-grid span { color: var(--cyan); font-weight: 700; font-size: 13px; }
.benefits-grid h3 { margin: 8px 0 8px; font-size: 27px; }
.benefits-grid p { margin: 0; color: #9bb2d4; font-size: 14px; line-height: 1.4; }
.benefits-grid p { font-size: 18px; }

.cta-box {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.cta-text h2 { margin: 0; font-size: 50px; }
.cta-text p { margin: 8px 0; color: #aec3df; }
.cta-text p { font-size: 20px; }

.cta-side {
  display: grid;
  gap: 12px;
  justify-items: end;
  text-align: right;
  min-width: 460px;
}

.cta-address {
  color: #8da5ca;
  font-size: 17px;
}

.map-link {
  color: #8da5ca;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-link:hover {
  color: #b9d6ff;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  width: auto;
}

.cta-actions span {
  color: #8da5ca;
  font-size: 17px;
}

.phone-btn,
.whatsapp-btn {
  text-decoration: none;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid var(--line);
}

.phone-btn {
  background: transparent;
  color: #dce9ff;
  white-space: nowrap;
}

.whatsapp-btn {
  color: #17d8ff;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  font-weight: 700;
}

.footer {
  padding: 18px 8px 24px;
  text-align: center;
  color: #97add0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }
  .top-contact {
    width: 100%;
    justify-content: center;
  }

  .services-grid,
  .benefits-grid,
  .client-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-side {
    min-width: auto;
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  .cta-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .nav { flex-wrap: wrap; justify-content: center; }
  .brand strong { font-size: 19px; }
  .brand span { font-size: 16px; }
  .services-grid,
  .benefits-grid,
  .services-list,
  .client-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions { display: flex; }
  .services-info h2 { font-size: 40px; }
  .clients-box h2,
  .section-title,
  .cta-text h2 { font-size: 34px; }
}
