/* Shared modern home polish — Isracar + American
   Patterns adapted from 21st: floating header, cinematic hero, bento gallery */

/* —— Floating headers —— */
.front-nav-float {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 1rem 0;
  pointer-events: none;
}
.front-nav-float > * { pointer-events: auto; }
.front-nav-shell {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.75rem;
  padding: 0.4rem 0.55rem 0.4rem 0.85rem;
  border-radius: 999px;
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.theme-isracar .front-nav-shell {
  background: rgba(6, 13, 24, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
body.page-home.theme-isracar .isc-hero {
  margin-top: -4.6rem;
}
.theme-american .front-nav-shell {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 40, 104, 0.08);
  box-shadow: 0 10px 36px rgba(0, 40, 104, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.front-nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
@media (min-width: 1024px) {
  .front-nav-links { display: flex; }
}
.front-nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease;
}
.theme-isracar .front-nav-links a {
  color: rgba(226, 232, 240, 0.9);
}
.theme-isracar .front-nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.theme-american .front-nav-links a {
  color: #002868;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body, system-ui, sans-serif);
}
.theme-american .front-nav-shell {
  font-family: var(--font-body, system-ui, sans-serif);
}
.theme-american .front-nav-shell a,
.theme-american .front-nav-shell button {
  font-family: inherit;
}
.theme-american .front-nav-links a:hover {
  color: #c8102e;
  background: rgba(200, 16, 46, 0.06);
}

/* —— Lifestyle bento —— */
.home-life {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}
.home-life--dark {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 180, 216, 0.14), transparent 55%),
    #0a1628;
  color: #f8fafc;
}
.home-life--light {
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(200, 16, 46, 0.08), transparent 50%),
    #f8fafc;
  color: #0f172a;
}
.home-life__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.home-life__head {
  max-width: 36rem;
  margin-bottom: 1.75rem;
}
.home-life__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.65rem;
}
.home-life__sub {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.72;
}
.home-life__bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  grid-auto-rows: 180px;
}
@media (min-width: 768px) {
  .home-life__bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    gap: 0.85rem;
  }
}
.home-life__cell {
  position: relative;
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(18px);
  animation: homeLifeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.07s);
}
@keyframes homeLifeIn {
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .home-life__cell {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.home-life__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-life__cell:hover img {
  transform: scale(1.06);
}
.home-life__cell figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1rem 0.95rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.home-life__cell strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.home-life__cell span {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.35;
}
.home-life__cta-wrap {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-start;
}
.home-life__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.home-life--dark .home-life__cta {
  background: #00b4d8;
  color: #041018;
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.35), 0 12px 28px rgba(0, 180, 216, 0.35);
}
.home-life--light .home-life__cta {
  background: #c8102e;
  color: #fff;
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.28);
}
.home-life__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* —— Isracar booking-first hero —— */
.isc-hero {
  position: relative;
  overflow: hidden;
  background: #060d18;
  color: #fff;
}
.isc-hero__media {
  position: absolute;
  inset: 0;
}
.isc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.04);
  animation: iscKen 18s ease-in-out infinite alternate;
}
@keyframes iscKen {
  to { transform: scale(1.1) translate3d(-1.5%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .isc-hero__media img { animation: none; transform: none; }
}
.isc-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 20, 0.92) 0%, rgba(4, 10, 20, 0.58) 46%, rgba(4, 10, 20, 0.28) 100%),
    linear-gradient(180deg, rgba(4, 10, 20, 0.28) 0%, rgba(4, 10, 20, 0.12) 38%, rgba(4, 10, 20, 0.82) 100%);
}
.isc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5.25rem 1rem 1.35rem;
}
.isc-hero__mobile {
  display: block;
  color: #fff;
  margin: 0 0 1rem;
}
.isc-hero__mobile .home-app-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 1024px) {
  .isc-hero__mobile { display: none; }
  .isc-hero { min-height: min(78svh, 760px); }
  .isc-hero__inner { padding: 5.5rem 1.5rem 2rem; }
}
.isc-hero .home-app-hero__headline { color: #fff; }
.isc-hero .home-app-hero__lede { color: rgba(226, 232, 240, 0.88); max-width: 36ch; }
.isc-hero .home-app-hero__location { color: rgba(125, 211, 252, 0.95); }
.isc-hero__grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 1024px) {
  .isc-hero__grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2rem;
    align-items: center;
    min-height: 30rem;
  }
}
.isc-hero__pitch { display: none; }
@media (min-width: 1024px) {
  .isc-hero__pitch { display: block; }
}
.isc-hero__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dd3fc;
}
.isc-hero__brand {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 0.7rem;
  max-width: 14ch;
}
.isc-hero__line {
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 28ch;
}
.isc-hero__lede {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.82);
}
.isc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.isc-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.isc-hero__btn--primary {
  background: #00b4d8;
  color: #041018;
}
.isc-hero__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.isc-hero__btn:hover { transform: translateY(-2px); }
.isc-hero__widget {
  position: relative;
  z-index: 3;
  background: rgba(6, 13, 24, 0.4);
  color: #f8fafc;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
  color-scheme: dark;
}
.isc-hero__widget-head {
  padding: 1rem 1.15rem 0.85rem;
  background: transparent;
  border-bottom: 1px solid rgba(0, 180, 216, 0.38);
}
.isc-hero__widget-kicker {
  margin: 0;
  color: #7dd3fc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.isc-hero__widget-title {
  margin: 0.3rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f8fafc;
}
.isc-hero__widget-hint {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(226, 232, 240, 0.78);
}
.isc-hero__widget-body {
  padding: 0.9rem 1rem 1.15rem;
  background: transparent;
}
.isc-hero__widget .rentacar-widget {
  font-family: inherit;
}
.theme-isracar .isc-hero__widget .booking.is-home-embed .cta[disabled] {
  background: rgba(0, 180, 216, 0.14);
  color: #7dd3fc;
  border: 1px solid rgba(0, 180, 216, 0.45);
}
.theme-isracar .isc-hero__widget .booking.is-home-embed .cta:not([disabled]) {
  color: #041018;
}

body.page-home.theme-isracar,
body.page-home.theme-american {
  background: transparent;
}
body.page-home.theme-isracar {
  background: #060d18;
}
body.theme-isracar:not(.page-home) {
  background: #071018;
  color: #e2e8f0;
}
body.page-home.theme-american {
  background: #efe8d8;
}
body.theme-american:not(.page-home) {
  background: #efe8d8;
  color: #001433;
}
.home-fleet-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-fleet-card:hover {
  transform: translateY(-4px);
}
.theme-isracar .home-fleet-card {
  background: #121f33;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.theme-american .home-fleet-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 34px rgba(0, 40, 104, 0.08);
}
.home-fleet-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #0b1220;
}
.home-fleet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.home-fleet-card:hover .home-fleet-card__media img {
  transform: scale(1.05);
}
.home-fleet-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

/* —— Isracar editorial strip —— */
.isc-life {
  background: #0a1628;
  color: #e2e8f0;
  padding: 4rem 0;
}
.isc-life__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.isc-life__head {
  max-width: 38rem;
  margin-bottom: 2rem;
}
.isc-life__head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}
.isc-life__head p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #94a3b8;
}
.isc-life__grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .isc-life__grid { grid-template-columns: 1.2fr 0.9fr 0.9fr; }
}
.isc-life__grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.35rem;
  min-height: 16rem;
}
.isc-life__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 16rem;
}
.isc-life__grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(6, 13, 24, 0.88));
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.isc-life__grid strong { color: #fff; font-size: 1rem; }
.isc-life__grid span { color: #cbd5e1; font-size: 0.85rem; }
.isc-life__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.isc-life__cta {
  display: inline-flex;
  min-height: 2.85rem;
  padding: 0 1.35rem;
  align-items: center;
  border-radius: 999px;
  background: #00b4d8;
  color: #041018;
  font-weight: 700;
  text-decoration: none;
}
.isc-life__cta--wa {
  background: #128C7E;
  color: #fff;
}

.isc-process header,
.am-process header {
  max-width: 36rem;
  margin-bottom: 1.75rem;
}
.isc-process header h2,
.am-process header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}
.isc-process ol,
.am-process ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .isc-process ol { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.isc-process li {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(125, 211, 252, 0.35);
}
.isc-process li span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #7dd3fc;
  font-weight: 700;
}
.isc-process h3,
.am-process h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.isc-process p,
.am-process p { margin: 0; font-size: 0.92rem; line-height: 1.5; }

.isc-quote,
.am-quote {
  margin: 0;
  max-width: 46rem;
  padding: 0;
  border: 0;
}
.isc-quote p {
  margin: 0 0 1rem;
  font-family: var(--font-display, system-ui, sans-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  color: #f8fafc;
}
.isc-quote footer { color: #7dd3fc; font-size: 0.85rem; }

/* Interior pages — trust layout for about / FAQ / contact / services / terms */
.ipage {
  padding: 2.25rem 0 4rem;
}
.ipage-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .ipage-wrap { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .ipage-wrap { padding: 0 2rem; } }

.ipage-hero {
  display: grid;
  gap: 0;
  margin: 0 0 2.5rem;
}
.ipage-place {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}
.ipage-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 16ch;
}
.ipage-lede {
  margin: 0 0 1.25rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}
.ipage-hero__actions,
.ipage-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.ipage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.2rem;
  border-radius: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: filter 0.2s ease, background 0.2s ease;
}
.ipage-btn--primary { background: var(--color-primary); color: #fff; }
.ipage-btn--primary:hover { filter: brightness(1.06); color: #fff; }
.ipage-btn--wa { background: #128C7E; color: #fff; }
.ipage-btn--wa:hover { filter: brightness(1.06); color: #fff; }
.ipage-hero__media {
  margin: 0 0 1.5rem;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 2.4 / 1;
  background: #e2e8f0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}
.ipage-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ipage-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0 0 2.25rem;
  padding: 0;
  list-style: none;
}
@media (min-width: 700px) {
  .ipage-facts { grid-template-columns: repeat(3, 1fr); }
}
.ipage-facts li {
  padding: 0.85rem 0;
  border-top: 1px solid #e2e8f0;
  background: transparent;
}
.ipage-facts span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.25rem;
}
.ipage-facts strong { font-size: 1.02rem; color: #0f172a; }

.ipage-grid {
  display: grid;
  gap: 0;
  margin-bottom: 1.5rem;
}
@media (min-width: 800px) { .ipage-grid { grid-template-columns: 1fr 1fr; column-gap: 3rem; } }
.ipage-card,
.ipage-clause {
  background: transparent;
  border: 0;
  border-top: 1px solid #e2e8f0;
  border-radius: 0;
  padding: 1.35rem 0 1.5rem;
}
.ipage-card h2,
.ipage-clause h2 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
}
.ipage-card p,
.ipage-card li,
.ipage-clause p,
.ipage-clause li {
  color: #475569;
  line-height: 1.65;
}
.ipage-card p { margin: 0 0 0.75rem; }
.ipage-card p:last-child { margin-bottom: 0; }
.ipage-card a { color: var(--color-primary); font-weight: 700; }
.ipage-card ul,
.ipage-clause ul { margin: 0; padding-left: 1.15rem; }
.ipage-card li + li,
.ipage-clause li + li { margin-top: 0.4rem; }
.ipage-card .material-symbols-outlined { color: var(--color-primary); margin: 0; }
.ipage-story {
  display: grid;
  gap: 2.25rem;
  margin: 0 0 2.25rem;
  max-width: 40rem;
}
.ipage-story h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
}
.ipage-story p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}
.ipage-story a { color: var(--color-primary); font-weight: 700; }
.ipage-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 2rem;
}
.ipage-shots img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.2rem;
}
.ipage-ledger {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
}
.ipage-ledger li {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.35rem 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid #e2e8f0;
}
.ipage-ledger li.is-lead {
  padding-top: 0.15rem;
  border-top: 0;
}
.ipage-ledger li.is-lead h2,
.ipage-ledger li.is-lead h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  letter-spacing: -0.03em;
}
@media (min-width: 800px) {
  .ipage-ledger li.is-lead:has(img) {
    grid-template-columns: 3rem minmax(0, 1fr) minmax(12rem, 18rem);
    align-items: center;
    padding-bottom: 2rem;
  }
}
.ipage-ledger em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--color-primary);
  padding-top: 0.45rem;
  font-variant-numeric: tabular-nums;
}
.ipage-ledger h2,
.ipage-ledger h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.ipage-ledger p {
  margin: 0;
  max-width: 38rem;
  color: #475569;
  line-height: 1.65;
}
.ipage-ledger img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.2rem;
  grid-column: 1 / -1;
}
@media (min-width: 800px) {
  .ipage-ledger li.is-lead:has(img) img { grid-column: auto; }
}
.ipage-ledger--on-dark li { border-color: rgba(255, 255, 255, 0.16); }
.ipage-ledger--on-dark h2,
.ipage-ledger--on-dark h3 { color: #f8fafc; }
.ipage-ledger--on-dark p { color: #cbd5e1; }
.ipage-ledger--on-dark em { color: var(--color-primary); }
.ipage-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.ipage-toc a {
  display: inline-flex;
  min-height: 2.4rem;
  align-items: center;
  padding: 0 0.15rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.ipage-toc a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.ipage-faq { display: grid; gap: 1.75rem; margin-bottom: 2rem; }
.ipage-faq__group h2 { margin: 0 0 0.75rem; font-size: 1.35rem; }
.ipage-faq__list { display: grid; gap: 0.55rem; }
.ipage-faq details {
  border: 0;
  border-top: 1px solid #e2e8f0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}
.ipage-faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  padding: 0.95rem 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.ipage-faq summary::-webkit-details-marker { display: none; }
.ipage-faq summary .material-symbols-outlined {
  transition: transform 0.2s ease;
  color: #64748b;
}
.ipage-faq details[open] summary .material-symbols-outlined { transform: rotate(180deg); }
.ipage-faq details p {
  margin: 0;
  padding: 0 0 1.1rem;
  color: #475569;
  line-height: 1.65;
}
.ipage-contact {
  display: grid;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 900px) {
  .ipage-contact { grid-template-columns: 1.2fr 0.8fr; }
  .ipage-contact .ipage-card--wa { grid-column: 1 / -1; }
}
.ipage-card--wa {
  background: #0f3d38;
  border: 0;
  color: #ecfdf5;
  padding: 1.5rem 1.35rem;
  margin-bottom: 0.5rem;
}
.ipage-card--wa .ipage-kicker,
.ipage-card--wa h2,
.ipage-card--wa p { color: #ecfdf5; }
.ipage-card--wa p { color: #a7f3d0; }
.ipage-line {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
}
.ipage-line .material-symbols-outlined { margin: 0; font-size: 1.15rem; }
.ipage-line a { color: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 0.15em; }
.ipage-note { font-size: 0.9rem; color: #64748b; }
.ipage-link { font-weight: 800; }
.ipage-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.ipage-table th,
.ipage-table td { text-align: left; padding: 0.55rem 0.4rem; border-top: 1px solid #e2e8f0; }
.ipage-table th { color: #64748b; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
.ipage-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem 0 0;
  border-radius: 0;
  border-top: 3px solid var(--color-primary);
  background: transparent;
  color: inherit;
}
@media (min-width: 760px) {
  .ipage-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}
.ipage-cta h2 { margin: 0 0 0.35rem; font-size: 1.45rem; color: inherit; }
.ipage-cta p { margin: 0; color: #475569; }

.theme-isracar .ipage { background: #071018; color: #e2e8f0; }
.theme-isracar .ipage-lede,
.theme-isracar .ipage-card p,
.theme-isracar .ipage-card li,
.theme-isracar .ipage-clause p,
.theme-isracar .ipage-clause li,
.theme-isracar .ipage-story p,
.theme-isracar .ipage-ledger p,
.theme-isracar .ipage-cta p,
.theme-isracar .ipage-faq details p { color: #cbd5e1; }
.theme-isracar .ipage-card,
.theme-isracar .ipage-clause,
.theme-isracar .ipage-facts li,
.theme-isracar .ipage-faq details,
.theme-isracar .ipage-ledger li {
  background: transparent;
  border-color: rgba(255,255,255,.12);
  color: #f8fafc;
}
.theme-isracar .ipage-facts strong,
.theme-isracar .ipage-card h2,
.theme-isracar .ipage-clause h2,
.theme-isracar .ipage-story h2,
.theme-isracar .ipage-ledger h2,
.theme-isracar .ipage-ledger h3,
.theme-isracar .ipage-cta h2,
.theme-isracar .ipage-faq__group h2,
.theme-isracar .ipage-hero h1 { color: #f8fafc; }
.theme-isracar .ipage-toc a { color: #e2e8f0; background: transparent; }
.theme-isracar .ipage-cta { background: transparent; border-top-color: var(--color-primary); }
.theme-isracar .ipage-hero__media { background: #122033; }
.theme-isracar .ipage-card--wa { background: #0a2a28; }

.theme-american nav[aria-label="Miga de pan"],
.theme-american nav[aria-label="Breadcrumb"] {
  background: #efe8d8;
  border-color: rgba(0, 20, 51, 0.12);
  backdrop-filter: none;
}
.theme-isracar nav[aria-label="Miga de pan"],
.theme-isracar nav[aria-label="Breadcrumb"] {
  background: #071018;
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}
.theme-american .ipage { background: #efe8d8; color: #001433; }
.theme-american .ipage-hero { padding-top: 0; }
.theme-american .ipage-hero__media {
  aspect-ratio: 2.6 / 1;
  margin-bottom: 1.75rem;
}
.theme-american .ipage-hero h1 {
  font-family: var(--font-body, system-ui, sans-serif);
  font-weight: 800;
  color: #001433;
  max-width: 14ch;
}
.theme-american .ipage-place {
  color: #c8102e;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.theme-american .ipage-lede { color: #334155; }
.theme-american .ipage-btn { border-radius: 0; }
.theme-american .ipage-cta { border-top-color: #c8102e; }
.theme-american .ipage-ledger li.is-lead { border-bottom: 4px solid #c8102e; margin-bottom: 0.35rem; }
.theme-american .ipage-ledger em { font-family: var(--font-body, system-ui, sans-serif); }

.theme-isracar .ipage { background: #071018; padding-top: 0; }
.theme-isracar .ipage-hero {
  display: grid;
  margin-bottom: 2.75rem;
}
.theme-isracar .ipage-hero__media,
.theme-isracar .ipage-hero__copy { grid-area: 1 / 1; }
.theme-isracar .ipage-hero__media {
  margin: 0;
  min-height: 22rem;
  aspect-ratio: 16 / 9;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.theme-isracar .ipage-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,16,24,.15) 20%, rgba(7,16,24,.88) 100%);
}
.theme-isracar .ipage-hero__media { position: relative; }
.theme-isracar .ipage-hero__copy {
  z-index: 1;
  align-self: end;
  padding: 2rem 0 1.75rem;
  max-width: 40rem;
}
.theme-isracar .ipage-place { color: #7dd3fc; }
.theme-isracar .ipage-hero h1 { color: #f8fafc; max-width: 14ch; }
.theme-isracar .ipage-lede { color: #cbd5e1; }
.theme-isracar .ipage-btn { border-radius: 999px; }

@media (prefers-reduced-motion: reduce) {
  .ipage-btn,
  .ipage-faq summary .material-symbols-outlined { transition: none; }
}
