:root {
  --ink: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --paper: #fff;
  --soft: #f7f3ec;
  --primary: #14213d;
  --primary-2: #0b1226;
  --gold: #f2b705;
  --red: #c1121f;
  --green: #2a9d8f;
  --radius: 22px;
  --shadow: 0 22px 70px rgba(20, 33, 61, 0.14);
  --shadow-soft: 0 14px 38px rgba(20, 33, 61, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}
.topbar {
  background: var(--primary-2);
  color: #fff;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}
.topbar a {
  opacity: 0.95;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family:
    Playfair Display,
    serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--primary);
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #24487a);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #475467;
  font-weight: 650;
}
.menu a:hover {
  color: var(--red);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(193, 18, 31, 0.24);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(193, 18, 31, 0.3);
}
.btn-light {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-outline {
  border-color: rgba(20, 33, 61, 0.22);
  color: var(--primary);
  background: #fff;
}
.btn-dark {
  background: var(--primary);
  color: #fff;
}
.mobile-toggle {
  display: none;
  border: 0;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  width: 44px;
  height: 44px;
  font-size: 20px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 18, 38, 0.91),
      rgba(20, 33, 61, 0.72),
      rgba(20, 33, 61, 0.35)
    ),
    url("../assets/img/hero.png")
      center/cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--soft), transparent);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 48px;
  align-items: center;
  padding: 92px 0 112px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 750;
}
.hero h1,
.section-title h2,
h1.page-title,
h2,
h3 {
  font-family:
    Playfair Display,
    serif;
  line-height: 1.08;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  margin: 22px 0 18px;
  color: #fff;
}
.hero p {
  font-size: 19px;
  color: #edf2f7;
  max-width: 660px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #fff;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}
.hero-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.hero-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.flag-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.flag {
  min-height: 78px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 34px;
  background: linear-gradient(135deg, #fff, #f4f6fb);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(20, 33, 61, 0.08);
}
.section {
  padding: 86px 0;
}
.section.white {
  background: #fff;
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 36px;
}
.section-title h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
  color: var(--primary);
}
.section-title p {
  color: var(--muted);
  max-width: 620px;
  margin: 10px 0 0;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.card.pad {
  padding: 28px;
}
.car-img {
  height: 228px;
  width: 100%;
  object-fit: cover;
}
.car-body {
  padding: 24px;
}
.price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.price strong {
  font-size: 28px;
  color: var(--red);
  font-family:
    Playfair Display,
    serif;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #fff4d6;
  color: #805700;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 800;
}
.features {
  margin: 18px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  color: #475467;
}
.features li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.features i {
  color: var(--green);
  margin-top: 5px;
}
.iconbox {
  display: grid;
  gap: 12px;
}
.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(20, 33, 61, 0.08);
  color: var(--primary);
  font-size: 25px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.rounded-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 520px;
  width: 100%;
  object-fit: cover;
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding: 26px 26px 26px 84px;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 26px;
  top: 26px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}
.banner {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary), #254b7e);
  color: #fff;
  padding: 52px;
}
.banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/hero-2.png")
    center/cover;
  opacity: 0.16;
}
.banner > * {
  position: relative;
}
.banner h2 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 42px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(20, 33, 61, 0.06);
}
.faq summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 850;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq .answer {
  padding: 0 24px 24px;
  color: var(--muted);
}
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #e9eef6;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 430px;
  position: relative;
}
.map-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #52606d;
  background: linear-gradient(135deg, #eef3fa, #dfe8f5);
}
.map-fallback i {
  font-size: 52px;
  color: var(--primary);
  margin-bottom: 10px;
}
.contact-list {
  display: grid;
  gap: 18px;
}
.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.form {
  display: grid;
  gap: 15px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.form textarea {
  min-height: 132px;
  resize: vertical;
}
.footer {
  background: var(--primary-2);
  color: #d0d5dd;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.footer h4 {
  color: #fff;
  margin: 0 0 14px;
  font-family:
    Playfair Display,
    serif;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.footer a:hover {
  color: #fff;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 14px;
  color: #98a2b3;
}
.cookie {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 18px;
  display: none;
}
.cookie.show {
  display: block;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.page-hero {
  background: linear-gradient(135deg, var(--primary), #24487a);
  color: #fff;
  padding: 72px 0;
}
.page-title {
  font-size: clamp(38px, 5vw, 62px);
  margin: 0;
  color: #fff;
}
.breadcrumbs {
  color: #e8eef8;
  margin-top: 10px;
}
.people-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.person {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.person img {
  height: 330px;
  width: 100%;
  object-fit: cover;
}
.person div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
  color: #fff;
}
.legal {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.legal h2 {
  color: var(--primary);
  margin-top: 26px;
}
.legal p,
.legal li {
  color: #475467;
}
.legal ul {
  padding-left: 22px;
}
@media (max-width: 980px) {
  .hero-inner,
  .split,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .grid-4,
  .footer-grid,
  .people-row {
    grid-template-columns: 1fr 1fr;
  }
  .menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }
  .menu.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-inner {
    padding: 62px 0 92px;
  }
  .rounded-img {
    height: 380px;
  }
}
@media (max-width: 640px) {
  .topbar .container,
  .nav-actions .phone-link {
    display: none;
  }
  .grid-3,
  .grid-4,
  .footer-grid,
  .people-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 62px 0;
  }
  .section-title {
    display: block;
  }
  .cookie-inner {
    display: block;
  }
  .cookie-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .banner {
    padding: 32px;
  }
  .banner h2 {
    font-size: 32px;
  }
  .hero-card img {
    height: 220px;
  }
  .flag-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .mob-no {
    display: none;
  }
}
