:root {
  --bg: #ffffff;
  --ink: #1c2140;
  --muted: #5b5f6f;
  --accent: #ff7a18;
  --accent-dark: #f06500;
  --chip: #ff7a18;
  --card: #ffffff;
  --navy: #16224a;
  --shadow: 0 20px 45px rgba(14, 20, 40, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

h3 {
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 700;
}

h2 {
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 36px;
  line-height: 47px;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--navy);
}

p {
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--muted);
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  background: var(--bg);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 47px;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.menu {
  margin-left: auto;
  display: flex;
  gap: 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.menu a {
  transition: color 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--navy);
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}

.phone:hover,
.phone:focus-visible {
  background: var(--accent-dark);
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: opacity 0.2s ease;
}

.social img {
  width: 18px;
  height: 18px;
  display: block;
}

.social a:hover,
.social a:focus-visible {
  opacity: 0.7;
}

.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--accent);
  font-weight: 400;
  margin: 0 0 12px;
}

.hero-text h2 {
  margin: 0 0 14px;
}

.hero-text p {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 420px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
}

.cta-icon {
  background: var(--accent);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.cta-icon svg {
  width: 15px;
  height: 15px;
  color: #fff;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 60%;
  right: 0;
  bottom: 15%;
  background: var(--accent);
  border-radius: 8px;
  z-index: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.hero-foot {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.chip {
  background: var(--chip);
  color: #fff;
  font-family: "Archivo", "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 22px;
  line-height: 47px;
  height: 53px;
  padding: 0 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}

.offer {
  background: #fff;
  padding: 40px 0 70px;
}

.offer-inner {
  text-align: center;
}

.offer-inner h2 {
  margin: 0 0 14px;
}

.offer-inner p {
  margin: 0 auto;
  max-width: 700px;
  color: var(--muted);
}

.p-big {
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0;
}

.services {
  padding: 30px 0 70px;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 16px 34px rgba(18, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding-bottom: 56px;
  flex: 1;
}

.service-body h3 {
  margin: 0;
  color: var(--navy);
}

.service-body p {
  margin: 0;
  color: var(--muted);
}

.service-link {
  margin-top: 0;
  position: absolute;
  right: 20px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  color: inherit;
}

.service-link-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.service-link-icon svg {
  width: 18px;
  height: 24px;
}

.section-foot {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.trust {
  padding: 50px 0 36px;
  text-align: center;
  background: #fff;
}

.trust-inner h2 {
  margin: 0 0 12px;
}

.trust-inner p {
  margin: 0 auto 10px;
  max-width: 760px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.trust-names {
  font-weight: 700;
  color: var(--accent);
  margin: 10px 0 6px;
  font-size: 16px;
}

.trust-note {
  margin-top: 6px;
  font-size: 12px;
}

.contact {
  background: #1d2545;
  padding: 40px 0 90px;
}

.contact .section-head {
  margin-bottom: 18px;
}

.contact-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px 36px 36px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(16, 20, 40, 0.25);
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 18px;
}

.contact-header h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.contact-header p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.contact-brand {
  font-family: "Archivo", "Manrope", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 47px;
  letter-spacing: -0.03em;
  color: var(--navy);
  white-space: nowrap;
  padding-top: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #bcbcbc;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8b8f99;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.2);
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-submit {
  align-self: center;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 34px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--accent-dark);
}

.map {
  background: #1d2545;
}

.map iframe {
  width: 100%;
  height: 384px;
  border: 0;
  display: block;
}

.site-footer {
  background: #1d2545;
  color: #d8dbe8;
  padding: 28px 0 20px;
  text-align: left;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  justify-items: start;
  column-gap: 180px;
}

.footer-brand {
  font-family: "Archivo", "Manrope", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 47px;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 8px;
}

.footer-info address {
  font-style: normal;
  font-size: 12px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d8dbe8;
  justify-self: start;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-left: 24px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.2s ease;
}

.footer-social img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-icon--facebook .fb-bg {
  fill: #fff;
}

.footer-icon--facebook .fb-mark {
  fill: #1d2545;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  border-top: 1px solid #2e3657;
  margin-top: 22px;
  padding-top: 16px;
  font-size: 11px;
  color: #b7bdd5;
}

.footer-bottom a {
  color: inherit;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.fleet {
  padding: 40px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.fleet-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.fleet-item {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.fleet-item--reverse .fleet-media {
  order: 2;
}

.fleet-item--reverse .fleet-content {
  order: 1;
}

.fleet-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fleet-figure {
  position: relative;
  padding: 20px 24px;
}

.fleet-figure::before {
  content: "";
  position: absolute;
  width: 65%;
  height: 70%;
  right: 12px;
  top: 10%;
  background: var(--accent);
  border-radius: 8px;
  z-index: 0;
}

.fleet-item--reverse .fleet-figure::before {
  right: auto;
  left: 12px;
}

.fleet-figure img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 8px;
}

.fleet-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.fleet-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 2px;
  cursor: pointer;
}

.fleet-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fleet-content h3 {
  margin: 0;
  color: var(--navy);
}

.fleet-content p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.fleet-table {
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  overflow: hidden;
  font-size: 12px;
}

.fleet-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.4fr;
  padding: 10px 12px;
  border-bottom: 1px solid #d9d9d9;
  gap: 12px;
}

.fleet-row span {
  font-weight: 600;
  color: var(--navy);
}

.fleet-row span:nth-child(n + 2) {
  text-align: center;
}

.fleet-row:last-child {
  border-bottom: none;
}

.fleet-head {
  background: #e6e6e6;
}

.fleet-head span {
  font-weight: 700;
  color: #2b2f3b;
}

.fleet-cta {
  align-self: flex-start;
  padding: 10px 16px;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }

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

  .hero-visual {
    min-height: 300px;
  }

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

  .fleet-item {
    grid-template-columns: 1fr;
  }

  .fleet-item--reverse .fleet-media,
  .fleet-item--reverse .fleet-content {
    order: initial;
  }
}

@media (max-width: 640px) {
  .menu {
    flex-wrap: wrap;
    gap: 16px;
  }

  .actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .social {
    margin-left: auto;
  }

  .phone {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero {
    padding: 24px 0 50px;
  }

  .hero-visual::before {
    width: 90%;
    height: 55%;
    bottom: 10%;
  }

  .offer {
    padding: 32px 0 56px;
  }

  .services {
    padding: 24px 0 56px;
  }

  .trust {
    padding: 40px 0 30px;
  }

  .contact-card {
    padding: 24px;
  }

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

  .contact-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "info nav"
      "info social";
    text-align: left;
    align-items: start;
  }

  .footer-info {
    grid-area: info;
  }

  .footer-nav {
    grid-area: nav;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 10px;
  }

  .footer-social {
    grid-area: social;
    justify-content: flex-end;
    margin-top: 12px;
    margin-left: 0;
    justify-self: end;
  }

  .footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    gap: 8px 16px;
  }

  .footer-bottom span:first-child {
    flex-basis: 100%;
  }

  .footer-bottom span:last-child {
    order: 2;
    margin-right: auto;
  }

  .footer-bottom a {
    order: 3;
    margin-left: auto;
  }

  .fleet {
    padding: 32px 0 64px;
  }

  .fleet-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
