:root {
  --car-green: #1f8b4c;
  --car-green-dark: #145c36;
  --car-lime: #c8a45d;
  --car-gold: #c8a45d;
  --car-ink: #101820;
  --car-muted: #59616f;
  --car-soft: #f6f7f6;
  --car-line: #e2e5e1;
  --car-shadow: 0 16px 38px rgba(16, 24, 32, 0.12);
  --car-radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  background: #fff;
  color: var(--car-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

body.modal-open {
  overflow: hidden;
}

main {
  flex: 1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--car-line);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.15rem;
  flex: 0 0 auto;
}

.logo-image {
  width: clamp(136px, 15vw, 184px);
  height: auto;
}

.logo-copy {
  display: grid;
  gap: 1px;
  border-right: 1px solid rgba(16, 24, 32, 0.16);
  padding-right: 10px;
  line-height: 1.1;
}

.logo-copy strong {
  color: var(--car-ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.logo-copy small {
  color: var(--car-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 800;
  color: #374151;
}

.main-nav a:hover {
  color: var(--car-green-dark);
}

.main-nav a[aria-current="page"] {
  color: var(--car-green-dark);
}

.quote-button,
.outline-button,
.details-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0.72rem 1.2rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.quote-button,
.details-button {
  background: linear-gradient(135deg, #2c9b61, var(--car-green-dark));
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 139, 76, 0.22);
}

.quote-button:hover,
.details-button:hover,
.outline-button:hover {
  transform: translateY(-1px);
}

.outline-button {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.deal-bar {
  background: #101820;
  color: #fff;
  border-bottom: 1px solid rgba(200, 164, 93, 0.28);
  padding: 12px 16px;
  text-align: center;
  font-size: clamp(0.95rem, 1.7vw, 1.08rem);
  font-weight: 850;
  letter-spacing: 0;
}

.car-hero {
  --hero-image: url("../assets/images/car-01.webp");
  position: relative;
  height: clamp(600px, calc(100svh - 132px), 720px);
  min-height: 600px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #111;
}

.car-hero::after {
  content: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.2) contrast(1.08) saturate(1.03);
  transform: scale(1.01);
  transition: opacity 420ms ease, transform 6s ease;
  will-change: opacity, transform;
}

.car-hero.is-switching .hero-bg {
  opacity: 0.74;
  transform: scale(1.035);
}

.car-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.66) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  width: min(620px, calc(100% - 156px));
  max-width: 620px;
  margin-right: 72px;
  margin-left: auto;
  gap: 10px;
  padding: 0 0 36px;
  color: #fff;
  text-align: right;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 3.28rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  font-weight: 700;
  line-height: 1.8;
}

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

.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.62);
  color: #fff;
  cursor: pointer;
  font-size: 2.3rem;
  transform: translateY(-50%);
}

.slider-arrow:hover {
  background: rgba(17, 24, 39, 0.82);
}

.slider-prev {
  inset-inline-start: 32px;
}

.slider-next {
  inset-inline-end: 32px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50px;
  right: auto;
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  background-clip: content-box;
  box-sizing: content-box;
  padding: 7.5px;
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--car-lime);
  background-clip: content-box;
}

.section {
  padding: 74px 0;
}

.section-soft {
  background: var(--car-soft);
}

.guide-teaser {
  padding: 44px 0;
  background: #fff;
}

.guide-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.03), rgba(31, 139, 76, 0.04)),
    #fff;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.07);
}

.guide-teaser h2,
.guide-contact-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  line-height: 1.12;
}

.guide-teaser p,
.guide-contact-card p {
  max-width: 690px;
  margin: 10px 0 0;
  color: var(--car-muted);
}

.guide-hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0b1118;
  isolation: isolate;
}

.guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 14, 20, 0.05), rgba(9, 14, 20, 0.7)),
    linear-gradient(90deg, rgba(9, 14, 20, 0.22), rgba(9, 14, 20, 0.76));
}

.guide-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.1) saturate(1.05);
}

.guide-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 760px;
  margin-left: auto;
  gap: 18px;
  padding: 0 0 86px;
  color: #fff;
}

.guide-date {
  width: fit-content;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--car-gold);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.guide-hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 4.55rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.guide-hero p:not(.guide-date) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 650;
}

.guide-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dark-outline {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.guide-intro-grid,
.guide-split,
.tax-grid,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
  gap: 30px;
  align-items: start;
}

.guide-note,
.source-panel,
.warning-card,
.tax-card,
.mistakes-grid article,
.faq-list details {
  border: 1px solid var(--car-line);
  border-radius: var(--car-radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 24, 32, 0.055);
}

.guide-note,
.source-panel,
.warning-card,
.tax-card {
  padding: 30px;
}

.guide-note h2,
.source-panel h2,
.warning-card h2,
.tax-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.15;
}

.guide-note p,
.warning-card p,
.tax-card p {
  margin: 0;
  color: var(--car-muted);
}

.source-panel {
  background: #101820;
  color: #fff;
}

.source-panel ul,
.tax-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-panel a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(200, 164, 93, 0.75);
  text-underline-offset: 4px;
}

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

.process-card {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-top: 3px solid rgba(200, 164, 93, 0.72);
  border-radius: var(--car-radius);
  background: #fff;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(16, 24, 32, 0.055);
}

.process-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(16, 24, 32, 0.50); /* ≥3:1 contrast on white for large text (WCAG) */
  font-size: 2.35rem;
  line-height: 0.9;
  font-weight: 950;
}

.process-card h3,
.mistakes-grid h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.process-card p,
.mistakes-grid p,
.check-list p,
.faq-list p {
  margin: 0;
  color: var(--car-muted);
}

.align-start {
  text-align: right;
}

.align-start p {
  margin-inline: 0;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list article {
  border-right: 4px solid var(--car-gold);
  border-radius: 8px;
  background: var(--car-soft);
  padding: 18px 20px;
}

.check-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.06rem;
}

.warning-card {
  position: sticky;
  top: 96px;
  border-color: rgba(200, 164, 93, 0.34);
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.12), rgba(31, 139, 76, 0.06)),
    #fff;
}

.warning-card .quote-button {
  margin-top: 22px;
  width: 100%;
}

.docs-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--car-line);
  border-radius: var(--car-radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
}

.docs-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: right;
}

.docs-table th,
.docs-table td {
  border-bottom: 1px solid var(--car-line);
  padding: 18px;
  vertical-align: top;
}

.docs-table th {
  background: #101820;
  color: #fff;
  font-weight: 900;
}

.docs-table tr:last-child td {
  border-bottom: 0;
}

.docs-table td:first-child {
  color: var(--car-green-dark);
  font-weight: 950;
}

.tax-grid {
  grid-template-columns: minmax(0, 0.8fr) repeat(2, minmax(260px, 1fr));
}

.tax-card.accent {
  border-color: rgba(200, 164, 93, 0.28);
  background: #fbf8ef;
}

.tax-card li {
  position: relative;
  padding-right: 18px;
  color: var(--car-muted);
}

.tax-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--car-gold);
}

.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mistakes-grid article {
  padding: 22px;
}

.faq-layout {
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
}

.faq-list {
  display: grid;
  gap: 12px;
}

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

.faq-list summary {
  cursor: pointer;
  color: var(--car-ink);
  font-weight: 900;
}

.faq-list summary::marker {
  color: var(--car-green);
}

.faq-list p {
  padding-top: 12px;
}

.guide-contact-section {
  padding-top: 40px;
}

.guide-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.98), rgba(20, 92, 54, 0.92)),
    #101820;
  color: #fff;
  padding: 34px;
  box-shadow: 0 20px 46px rgba(16, 24, 32, 0.18);
}

.guide-contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.guide-contact-card .quote-button {
  flex: 0 0 auto;
}

.legal-source-note {
  padding: 24px 0 48px;
}

.legal-source-note p {
  margin: 0;
  color: var(--car-muted);
  font-size: 0.95rem;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--car-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 950;
}

.section-heading p {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--car-muted);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--car-gold);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

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

.car-card {
  overflow: hidden;
  border-radius: var(--car-radius);
  background: #fff;
  box-shadow: var(--car-shadow);
}

.car-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.car-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.car-card:hover img {
  transform: scale(1.035);
}

.status-badge {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  border-radius: 999px;
  background: #1a7840; /* slightly darker than --car-green for WCAG 4.5:1 contrast with white */
  color: #fff;
  padding: 0.46rem 0.82rem;
  font-weight: 900;
}

.car-card-body {
  display: grid;
  gap: 10px;
  padding: 26px 24px;
}

.car-card-body h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 1.9rem);
  line-height: 1.15;
  font-family: Georgia, "Times New Roman", serif;
}

.car-year {
  margin: 0;
  color: #475569;
  font-size: 1.35rem;
  font-weight: 650;
}

.car-description {
  margin: 0;
  color: var(--car-muted);
}

.details-button {
  width: 100%;
  margin-top: 8px;
}

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

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: var(--car-radius);
  background: #111;
  cursor: pointer;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 5vw, 64px);
  background:
    radial-gradient(circle at 85% 10%, rgba(200, 164, 93, 0.16), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(31, 139, 76, 0.14), transparent 30%),
    linear-gradient(135deg, #0b1118 0%, #101820 58%, #07110c 100%);
  color: #fff;
}

.contact-section .section-heading {
  margin-bottom: 24px;
}

.contact-section .section-heading h2 {
  color: #fff;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
}

.contact-section .section-heading p {
  max-width: 760px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-shell {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  align-items: stretch;
}

.contact-card,
.contact-form,
.why-card,
.testimonial-card {
  border: 1px solid var(--car-line);
  border-radius: var(--car-radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.contact-card,
.contact-form {
  padding: clamp(20px, 2vw, 24px);
}

.contact-primary {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  border-color: rgba(200, 164, 93, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.contact-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0%, rgba(200, 164, 93, 0.12) 44%, transparent 72%);
  opacity: 0.7;
  pointer-events: none;
}

.contact-primary>* {
  position: relative;
  z-index: 1;
}

.contact-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(200, 164, 93, 0.46);
  border-radius: 50%;
  background: rgba(200, 164, 93, 0.12);
  color: var(--car-gold);
}

.contact-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-primary h3 {
  max-width: 420px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  line-height: 1.12;
}

.contact-primary p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.65;
}

.contact-whatsapp {
  width: fit-content;
  margin-top: 4px;
}

.contact-checklist {
  display: grid;
  gap: 8px;
  margin: 2px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
}

.contact-checklist strong {
  color: #fff;
  font-size: 1rem;
}

.contact-checklist ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-right: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--car-gold);
}

.why-card h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.contact-list {
  display: grid;
  gap: 9px;
  margin: 0;
}

.contact-list div {
  display: grid;
  gap: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: 9px;
}

.contact-list dt {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

.contact-list dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  align-content: start;
  border-color: rgba(16, 24, 32, 0.08);
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.form-title {
  display: grid;
  gap: 6px;
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.form-title h3 {
  margin: 0;
  color: var(--car-ink);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.12;
}

.form-title p {
  margin: 0;
  color: var(--car-muted);
  font-size: 0.96rem;
  font-weight: 650;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--car-ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8ddd6;
  border-radius: 6px;
  padding: 0.72rem 0.85rem;
  background: #fbfcfb;
  color: var(--car-ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  min-height: 82px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(200, 164, 93, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.14);
}

.contact-form button {
  width: 100%;
  grid-column: 1 / -1;
  margin-top: 2px;
}

.premium-contact-form label[for="message"],
.premium-contact-form .form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--car-muted);
  font-size: 0.92rem;
}

.form-share-box {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px 12px;
  align-items: center;
  margin-top: 6px;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d1b14 0%, #101820 55%, #0f1f16 100%);
  border: 1px solid rgba(200, 164, 93, 0.30);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.13);
}

.form-share-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(200, 164, 93, 0.14);
  border: 1px solid rgba(200, 164, 93, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--car-gold);
}

.form-share-icon svg {
  width: 17px;
  height: 17px;
}

.form-share-copy {
  display: grid;
  color: #fff;
}

.form-share-copy strong {
  font-size: 0.94rem;
  line-height: 1.3;
  font-weight: 800;
}

.contact-form .share-site-button {
  display: inline-flex;
  width: auto;
  min-height: 40px;
  grid-column: auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  border: 0;
  border-radius: 8px;
  padding: 0.62rem 0.92rem;
  background:
    linear-gradient(135deg, #101820, #153c28 62%, #1f8b4c);
  color: #fff;
  box-shadow: 0 14px 28px rgba(16, 24, 32, 0.18);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.share-site-button:hover,
.share-site-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(16, 24, 32, 0.24);
}

.share-site-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-status {
  display: none;
  grid-column: 1 / -1;
  margin-top: -2px;
  color: var(--car-gold);
  font-size: 0.84rem;
  font-weight: 700;
}

.share-status:not(:empty) {
  display: block;
}

.why-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card,
.testimonial-card {
  padding: 24px;
}

.why-section {
  scroll-margin-top: 96px;
  background:
    linear-gradient(180deg, #fff 0%, #f7faf7 100%);
}

.why-section .section-heading {
  max-width: 780px;
  margin-inline: auto;
}

.why-section .section-heading p:not(.section-kicker) {
  max-width: 720px;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 22px;
  align-items: stretch;
  padding-left: 76px;
  direction: ltr;
}

.why-layout>* {
  direction: rtl;
}

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

.why-section .why-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
  min-height: 214px;
  padding: 24px;
  border-color: rgba(16, 24, 32, 0.08);
  background:
    linear-gradient(135deg, rgba(31, 139, 76, 0.035), rgba(200, 164, 93, 0.035)),
    #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.why-section .why-card::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--car-gold), var(--car-green));
  opacity: 0.9;
}

.why-section .why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 164, 93, 0.28);
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.11);
}

.why-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(31, 139, 76, 0.08);
  color: var(--car-green-dark);
  font-weight: 900;
  margin-bottom: 2px;
}

.why-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-section .why-card h3 {
  margin: 0;
  color: var(--car-ink);
  font-size: 1.2rem;
}

.why-section .why-card p {
  margin: 0;
  color: var(--car-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.why-cta-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 14px;
  overflow: hidden;
  border-radius: var(--car-radius);
  background:
    radial-gradient(circle at 18% 14%, rgba(200, 164, 93, 0.28), transparent 28%),
    linear-gradient(145deg, #101820, #153c28 72%, #102018);
  color: #fff;
  padding: 28px;
  box-shadow: 0 22px 48px rgba(16, 24, 32, 0.2);
}

.why-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 46%);
  pointer-events: none;
}

.why-cta-card>* {
  position: relative;
  z-index: 1;
}

.why-cta-card span {
  width: fit-content;
  color: var(--car-gold);
  font-size: 0.9rem;
  font-weight: 900;
}

.why-cta-card h3 {
  max-width: 290px;
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.12;
}

.why-cta-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
  line-height: 1.65;
}

.why-cta-card .quote-button {
  width: 100%;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--car-gold), #e8c878);
  color: #101820;
}

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

.testimonial-card p {
  margin: 0 0 14px;
  color: var(--car-muted);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--car-green-dark);
  font-weight: 800;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(46px, 5vw, 62px);
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 93, 0.18), transparent 30%),
    linear-gradient(135deg, #0b1118 0%, #101820 52%, #142116 100%);
  color: #fff;
}

.testimonials-section .section-heading {
  margin-bottom: 22px;
}

.testimonials-section .section-heading h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
}

.testimonials-section .section-heading p:not(.section-kicker) {
  max-width: 720px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-carousel {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
}

.testimonial-stage {
  position: relative;
  min-height: 240px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.07);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.985);
  transition: opacity 320ms ease, transform 320ms ease;
  backdrop-filter: blur(16px);
}

.testimonial-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--car-gold);
  font-size: 1.08rem;
  line-height: 1;
}

.testimonial-slide blockquote {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  font-weight: 750;
  line-height: 1.6;
  text-align: center;
}

.testimonial-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(200, 164, 93, 0.48);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--car-gold), #f1d391);
  color: #101820;
  font-weight: 950;
}

.testimonial-person strong,
.testimonial-person small {
  display: block;
}

.testimonial-person strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
}

.testimonial-person small {
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
  font-weight: 750;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}

.testimonial-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  border-color: rgba(200, 164, 93, 0.72);
  background: rgba(200, 164, 93, 0.18);
  transform: translateY(-1px);
}

.testimonial-arrow svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  background-clip: content-box;
  box-sizing: content-box;
  padding: 8px;
  cursor: pointer;
  transition: width 160ms ease, background 160ms ease;
}

.testimonial-dots button.is-active,
.testimonial-dots button[aria-current="true"] {
  width: 24px;
  background: var(--car-gold);
  background-clip: content-box;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #090e14;
  color: #fff;
  padding: 58px 0 26px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 93, 0.72), transparent);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(180px, 1fr));
  gap: 34px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-logo {
  width: min(220px, 100%);
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.18));
}

.footer-brand p,
.footer-bottom p,
.footer-keywords {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--car-gold), #e4c779);
  color: #101820;
  padding: 0.78rem 1.08rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(200, 164, 93, 0.18);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  font-style: normal;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 950;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 750;
}

.footer-column a:hover {
  color: var(--car-gold);
}

.footer-contact a:first-of-type {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 950;
}

.footer-keywords {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  max-width: 860px;
  margin-top: 34px;
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 16px 22px;
  font-size: 0.94rem;
  line-height: 1.4;
  text-align: center;
  direction: rtl;
}

.footer-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.34rem 0.72rem;
  white-space: nowrap;
}

.footer-keywords span:hover {
  border-color: rgba(200, 164, 93, 0.28);
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  left: auto;
  bottom: 24px;
  z-index: 70;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 140, 126, 0.34);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.modal-root[hidden] {
  display: none;
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.74);
}

.modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  width: min(920px, 100%);
  max-height: min(720px, calc(100svh - 40px));
  overflow: auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.modal-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.modal-content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 32px;
}

.modal-content .status-badge {
  position: static;
  width: fit-content;
}

.modal-content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.modal-content p {
  margin: 0;
  color: var(--car-muted);
}

.modal-content dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.modal-content div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--car-line);
  padding-bottom: 10px;
}

.modal-content dt {
  color: var(--car-muted);
}

.modal-content dd {
  margin: 0;
  font-weight: 900;
}

.modal-close {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 1.6rem;
}

@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
    font-size: 0.92rem;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .quote-button.header-button {
    display: none;
  }

  .car-grid,
  .contact-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .guide-teaser-inner,
  .guide-contact-card {
    align-items: stretch;
    flex-direction: column;
  }

  .guide-intro-grid,
  .guide-split,
  .tax-grid,
  .faq-layout,
  .process-grid,
  .mistakes-grid,
  .why-layout {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .why-cta-card {
    min-height: 260px;
  }

  .contact-primary,
  .contact-form {
    padding: 22px;
  }

  .warning-card {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── המבורגר + תפריט מובייל ── */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(31, 139, 76, 0.45);
  border-radius: 8px;
  background: rgba(31, 139, 76, 0.05);
  color: var(--car-ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  margin-inline-start: auto;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.menu-toggle:hover {
  background: rgba(31, 139, 76, 0.1);
  border-color: var(--car-green);
  box-shadow: 0 0 14px rgba(31, 139, 76, 0.15);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--car-green);
  outline-offset: 2px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease, width 0.22s ease;
  transform-origin: center;
}

/* קו שלישי קצר יותר — פרט עיצובי */
.menu-toggle span:nth-child(3) {
  width: 14px;
  align-self: flex-end;
  margin-inline-end: 7px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
  margin-inline-end: 0;
  align-self: auto;
}

@keyframes carNavSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: nowrap; /* logo + hamburger always stay on one row */
    min-height: 68px;
  }

  .logo-image {
    width: 100px; /* shrink SVG logo so both logo and hamburger fit */
  }

  .menu-toggle {
    display: inline-flex;
  }

  .quote-button.header-button {
    display: none;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 82px;
    inset-inline: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 2px solid var(--car-green);
    padding: 8px 20px 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    z-index: 200;
  }

  .main-nav.is-open {
    display: flex;
    animation: carNavSlideDown 0.22s ease;
  }

  .main-nav a {
    padding: 0.88rem 0.5rem;
    border-bottom: 1px solid var(--car-line);
    font-size: 1rem;
    font-weight: 700;
    color: var(--car-ink);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    color: var(--car-green-dark);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .deal-bar {
    font-size: 0.95rem;
  }

  .car-hero {
    height: 72svh;
    min-height: 560px;
  }

  .hero-content {
    justify-items: center;
    width: min(100% - 24px, 520px);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    padding-bottom: 78px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .slider-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.8rem;
  }

  .slider-prev {
    inset-inline-start: 12px;
  }

  .slider-next {
    inset-inline-end: 12px;
  }

  .hero-dots {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .section {
    padding: 54px 0;
  }

  .contact-section {
    padding-block: 42px;
  }

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

  .testimonials-section {
    padding-block: 42px;
  }

  .testimonials-section .section-heading {
    margin-bottom: 18px;
  }

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

  .form-share-box {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    padding: 14px;
  }

  .form-share-box .share-site-button {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .form-share-box .share-status {
    grid-column: 1 / -1;
  }

  .contact-primary,
  .contact-form {
    padding: 18px;
  }

  .guide-teaser {
    padding: 28px 0;
  }

  .guide-teaser-inner,
  .guide-contact-card,
  .guide-note,
  .source-panel,
  .warning-card,
  .tax-card {
    padding: 22px;
  }

  .guide-hero {
    min-height: 590px;
  }

  .guide-hero-content {
    padding-bottom: 58px;
  }

  .guide-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .guide-hero-actions,
  .guide-hero-actions a,
  .guide-contact-card .quote-button,
  .guide-teaser .quote-button,
  .contact-whatsapp {
    width: 100%;
  }

  .process-card {
    min-height: auto;
  }

  .testimonial-stage {
    min-height: 300px;
  }

  .testimonial-slide {
    padding: 20px 16px;
    gap: 14px;
  }

  .testimonial-slide blockquote {
    font-size: 1rem;
    line-height: 1.58;
  }

  .testimonial-controls {
    gap: 10px;
    margin-top: 14px;
  }

  .testimonial-arrow {
    width: 38px;
    height: 38px;
  }

  .gallery-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-section .why-grid {
    grid-template-columns: 1fr;
  }

  .why-section .why-card {
    min-height: auto;
    padding: 20px;
  }

  .why-cta-card {
    min-height: auto;
    padding: 22px;
  }

  .footer-brand,
  .footer-column,
  .footer-bottom {
    text-align: right;
  }

  .footer-keywords {
    width: min(100% - 24px, var(--container));
    max-width: 520px;
    gap: 7px;
    padding-inline: 12px;
  }

  .footer-keywords span {
    min-height: 28px;
    padding: 0.3rem 0.62rem;
    font-size: 0.84rem;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-panel img {
    min-height: 260px;
  }
}
