:root {
  --blue: #184FEA;
  --blue-dark: #1037A8;
  --ink: #101828;
  --muted: #667085;
  --line: #E4E7EC;
  --soft: #F4F7FB;
  --card: #FFFFFF;
  --shadow: 0 20px 60px rgba(16, 24, 40, .10);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

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

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 231, 236, .8);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-mark {
  color: var(--blue);
}

.brand small {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #344054;
}

.nav a:hover,
.header-phone:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-phone {
  font-weight: 800;
  color: var(--ink);
}

/* Global sections */

.section-pad {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.065em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.narrow {
  max-width: 760px;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 78px);
  background:
    radial-gradient(circle at 20% 12%, rgba(24, 79, 234, .13), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(24, 79, 234, .28);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.ghost {
  background: #fff;
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span,
.pill-grid span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(24, 79, 234, .16);
  border-radius: 999px;
  background: #fff;
  color: #344054;
  font-weight: 750;
}

.hero-points span {
  padding: 9px 13px;
  font-size: 14px;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 9% -4% -6% 10%;
  z-index: 0;
  border-radius: 32px;
  background: var(--blue);
  opacity: .12;
}

.hero-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Booking */

.booking,
.uses,
.faq {
  background: var(--soft);
}

.booking {
  padding-top: 88px;
  padding-bottom: 92px;
}

.booking .section-heading {
  margin-bottom: 12px;
}

.booking h2 {
  margin-bottom: 18px;
}

.widget-card {
  width: fit-content;
  max-width: calc(100vw - 32px);
  margin: 34px auto 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(24, 79, 234, .12);
  border-radius: 30px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 80px rgba(20, 35, 70, .14);
  overflow: visible;
}

#widget-easyrent-1565 {
  min-height: 360px;
}

#widget-easyrent-1565 > * {
  max-width: 100%;
}

/* Fleet features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card,
.price-note,
.faq-list details,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 10px 35px rgba(16, 24, 40, .06);
}

.feature-card {
  padding: 24px;
}

.feature-card p,
.price-note li,
.faq-list p,
.contact p {
  color: var(--muted);
}

/* Gallery */

.gallery-block {
  max-width: 980px;
  margin: 52px auto 0;
}

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

.gallery-heading h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.gallery-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.gallery-shell {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 60px rgba(16, 24, 40, .12);
}

.gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: center;
  background: #fff;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 24, 40, .18);
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease;
}

.gallery-arrow span {
  display: block;
  line-height: 1;
  font-size: 34px;
  font-weight: 400;
  transform: translateY(-1px);
}

.gallery-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow-left {
  left: 18px;
}

.gallery-arrow-right {
  right: 18px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 79, 234, .22);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.gallery-dots button.active {
  width: 28px;
  background: var(--blue);
}

/* Uses */

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.pill-grid span {
  padding: 13px 18px;
}

/* Pricing */

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row.head {
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.price-row strong {
  color: var(--blue);
  font-size: 18px;
}

.price-note {
  padding: 26px;
}

.price-note ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
}

/* Contact */

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-card {
  padding: 24px;
}

.phone-big {
  display: block;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -.04em;
  color: var(--blue);
  text-align: center;
}

/* Footer */

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

/* Responsive */

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

  .hero,
  .pricing-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
  }

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

  .gallery-shell {
    max-width: 100%;
  }

  .gallery-slide img {
    height: 440px;
  }
}

@media (max-width: 760px) {
  .widget-card {
    width: 100%;
    padding: 18px;
    overflow-x: auto;
  }

  #widget-easyrent-1565 {
    min-width: 560px;
  }

  .gallery-block {
    margin-top: 36px;
  }

  .gallery-heading {
    margin-bottom: 18px;
  }

  .gallery-lead {
    font-size: 16px;
  }

  .gallery-slide img {
    height: 320px;
  }

  .gallery-arrow {
    width: 42px;
    height: 42px;
  }

  .gallery-arrow span {
    font-size: 28px;
  }

  .gallery-arrow-left {
    left: 10px;
  }

  .gallery-arrow-right {
    right: 10px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-phone {
    font-size: 14px;
  }

  .section-pad {
    padding: 52px 16px;
  }

  .booking {
    padding-top: 62px;
    padding-bottom: 68px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .price-row {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .gallery-slide img {
    height: 260px;
  }
}
