/* =========================================================
   OMV landing – layout rhythm + mobile UX
   (Overrides fragile Tailwind classes missing from the bundle)
   ========================================================= */

/* Brand blue */
:root {
  --navy: #003366;
  --navy-light: #004080;
  --navy-deep: #002244;
}



html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
}

/* ----- Section rhythm (beat bundle Tailwind py-* which loads later) ----- */
[data-testid="advantages-section"],
[data-testid="how-it-works-section"],
[data-testid="showcase-section"],
[data-testid="testimonials-section"],
[data-testid="configurator-section"],
[data-testid="faq-section"],
[data-testid="contact-section"] {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

@media (min-width: 768px) {
  [data-testid="advantages-section"],
  [data-testid="how-it-works-section"],
  [data-testid="showcase-section"],
  [data-testid="testimonials-section"],
  [data-testid="configurator-section"],
  [data-testid="faq-section"],
  [data-testid="contact-section"] {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
}

@media (min-width: 1024px) {
  [data-testid="advantages-section"],
  [data-testid="how-it-works-section"],
  [data-testid="showcase-section"],
  [data-testid="testimonials-section"],
  [data-testid="configurator-section"],
  [data-testid="faq-section"],
  [data-testid="contact-section"] {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
}

/* Adjacent same-bg sections: don't stack full paddings into a huge empty band */
[data-testid="configurator-section"] {
  padding-bottom: 2.25rem !important;
}

[data-testid="faq-section"] {
  padding-top: 2.25rem !important;
}

[data-testid="advantages-section"] {
  padding-bottom: 2.25rem !important;
}

[data-testid="how-it-works-section"] {
  padding-top: 2.25rem !important;
}

@media (min-width: 768px) {
  [data-testid="configurator-section"],
  [data-testid="advantages-section"] {
    padding-bottom: 2.75rem !important;
  }

  [data-testid="faq-section"],
  [data-testid="how-it-works-section"] {
    padding-top: 2.75rem !important;
  }
}

/* ----- Logo ----- */
[data-testid="brand-logo"] {
  height: 2.25rem !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}

@media (min-width: 1024px) {
  [data-testid="brand-logo"] {
    height: 2.5rem !important;
  }
}

/* ----- Header (hides on scroll) + Jump-to bar ----- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.site-header.is-scrolled-away:not(.is-menu-open) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

@media (min-width: 1024px) {
  .site-header-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.site-header-logo {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.site-header-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.site-header-link {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.site-header-link:hover {
  color: #c5e500;
}

.site-header-lang {
  display: none;
}

.site-header-cta {
  display: none;
  border: 0;
  border-radius: 0.5rem;
  background: #c5e500;
  color: #003366;
  font-size: 0.875rem;
  font-weight: 800;
  padding: 0.65rem 1.15rem;
  cursor: pointer;
}

.site-header-cta:hover {
  background: #d4f000;
}

.site-header-burger {
  display: inline-flex;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0.25rem;
}

@media (min-width: 1024px) {
  .site-header-nav,
  .site-header-lang,
  .site-header-cta {
    display: flex;
  }

  .site-header-burger {
    display: none;
  }
}

.site-header-mobile {
  border-top: 1px solid #e2e8f0;
  background: #fff;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-header-mobile-link {
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: #003366;
  font-weight: 700;
  text-align: left;
  padding: 0.75rem 0.75rem;
  min-height: 2.75rem;
  cursor: pointer;
}

.site-header-mobile-link:hover {
  background: #f1f5f9;
}

.site-header-mobile-lang {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.site-header-mobile-cta {
  margin-top: 0.5rem;
  border: 0;
  border-radius: 0.5rem;
  background: #c5e500;
  color: #003366;
  font-weight: 800;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
}

/* Jump-to pill (OMV style) */
.jump-bar {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  z-index: 70;
  transform: translateX(-50%);
  width: min(calc(100vw - 1.5rem), 58rem);
  pointer-events: none;
  animation: jump-bar-in 0.28s ease;
}

@keyframes jump-bar-in {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.jump-bar-inner {
  pointer-events: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.25rem;
  background: #003366;
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.45rem;
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.28);
}

.jump-bar-link {
  flex: 1 1 0;
  min-width: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  padding: 0.55rem 0.35rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  border-radius: 999px;
}

.jump-bar-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.jump-bar-link.is-active {
  color: #fff;
  border-bottom-color: #fff;
  border-radius: 0;
}

/* Language dropdown (OMV style) */
.lang-dd {
  position: relative;
}

.lang-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.lang-dd--hero .lang-dd-btn {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.lang-dd--hero .lang-dd-btn:hover,
.lang-dd--hero .lang-dd-btn.is-open {
  background: rgba(255, 255, 255, 0.22);
}

.lang-dd--jump .lang-dd-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lang-dd--jump .lang-dd-btn:hover,
.lang-dd--jump .lang-dd-btn.is-open {
  background: rgba(255, 255, 255, 0.2);
}

.lang-dd--mobile .lang-dd-btn {
  background: #e8f1f8;
  color: #003366;
}

.lang-dd-code {
  line-height: 1;
}

.lang-dd-chevron {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.2s ease;
}

.lang-dd-chevron.is-open {
  transform: rotate(180deg);
}

.lang-dd-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 80;
  min-width: 11.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0, 51, 102, 0.18);
  padding: 0.85rem 0.65rem 0.65rem;
}

.lang-dd--mobile .lang-dd-menu {
  left: 0;
  right: auto;
}

.lang-dd-heading {
  margin: 0 0 0.45rem;
  padding: 0 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
}

.lang-dd-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-dd-item {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: #003366;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  padding: 0.65rem 0.7rem;
  cursor: pointer;
}

.lang-dd-item:hover {
  background: #eef5fb;
}

.lang-dd-item.is-active {
  background: #d9ebf7;
  color: #003366;
}

@media (max-width: 1023px) {
  .jump-bar {
    top: 0.55rem;
    width: calc(100vw - 1rem);
  }

  .jump-bar-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .jump-bar-inner::-webkit-scrollbar {
    display: none;
  }

  .jump-bar-link {
    flex: 1 0 auto;
    font-size: 0.72rem;
    padding: 0.5rem 0.65rem;
  }
}

/* ----- Hero ----- */
[data-testid="hero-section"] {
  overflow: hidden;
}

[data-testid="hero-section"] > div.relative.mx-auto {
  padding-top: 4.5rem !important;
  padding-bottom: 3.5rem !important;
  gap: 1.75rem !important;
}

@media (min-width: 1024px) {
  [data-testid="hero-section"] > div.relative.mx-auto {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
    gap: 2.5rem !important;
  }
}

[data-testid="hero-section"] > div > .animate-fade-up:first-child {
  position: relative;
  z-index: 2;
}

[data-testid="hero-cta-btn"],
[data-testid="how-cta-btn"],
[data-testid="showcase-cta-btn"] {
  min-height: 3rem;
}

@media (max-width: 639px) {
  [data-testid="hero-cta-btn"],
  [data-testid="how-cta-btn"],
  [data-testid="showcase-cta-btn"] {
    width: 100%;
    justify-content: center;
  }

  [data-testid="hero-section"] .mt-10.flex.flex-wrap {
    gap: 0.85rem 1.25rem !important;
  }
}

[data-testid="hero-cards-image"] {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.5rem 0 0;
}

@media (min-width: 1024px) {
  [data-testid="hero-cards-image"] {
    justify-content: flex-end;
    padding: 0;
  }
}

[data-testid="hero-cards-image"] img.hero-card-img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.35));
}

@media (min-width: 640px) {
  [data-testid="hero-cards-image"] img.hero-card-img {
    max-width: 520px;
  }
}

@media (min-width: 1024px) {
  [data-testid="hero-cards-image"] img.hero-card-img {
    max-width: 680px;
  }
}

@media (min-width: 1280px) {
  [data-testid="hero-cards-image"] img.hero-card-img {
    max-width: 780px;
  }
}

/* ----- Advantages – OMV "What we do" tabs ----- */
.adv-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 900px) {
  .adv-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.25rem;
  }
}

.adv-title {
  margin: 0;
  flex: 0 0 auto;
  font-family: inherit;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f172a;
}

@media (min-width: 900px) {
  .adv-title {
    white-space: nowrap;
  }
}

/* Mobile: scrollable tabs instead of messy wrap */
.adv-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.25rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
  margin: 0 -0.25rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.adv-tabs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 900px) {
  .adv-tabs {
    flex-wrap: wrap;
    justify-content: flex-end;
    overflow: visible;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.adv-tab {
  appearance: none;
  border: none;
  background: transparent;
  color: #64748b;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  padding: 0.75rem 0.85rem;
  border-radius: 0.35rem 0.35rem 0 0;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: color 0.2s ease, background 0.2s ease;
}

@media (min-width: 900px) {
  .adv-tab {
    font-size: 0.92rem;
    padding: 0.7rem 0.9rem;
  }
}

.adv-tab:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.adv-tab.is-active {
  color: #0f172a;
  background: #f1f5f9;
}

.adv-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0;
  height: 3px;
  background: #ffeb00;
}

.adv-panel {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .adv-panel {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.7fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

/* Mobile: image first for faster visual context */
@media (max-width: 899px) {
  .adv-visual {
    order: -1;
  }
}

.adv-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #94a3b8;
}

.adv-text {
  margin: 0.75rem 0 0;
  font-family: inherit;
  font-size: clamp(1.2rem, 3.6vw, 1.85rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: #0f172a;
}

.adv-visual {
  min-width: 0;
}

.adv-media {
  position: relative;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #001a36;
  aspect-ratio: 16 / 11;
}

@media (min-width: 900px) {
  .adv-media {
    aspect-ratio: 16 / 10;
  }
}

.adv-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adv-cta-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  min-height: 3.1rem;
  padding: 0.9rem 1rem;
  border: none;
  background: #002855;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

@media (min-width: 640px) {
  .adv-cta-bar {
    font-size: 1rem;
    padding: 0.95rem 1.15rem;
  }
}

.adv-cta-bar:hover {
  background: #003366;
}

.adv-cta-icon {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  flex: none;
  border-radius: 9999px;
  background: #ffeb00;
  color: #0f172a;
}

.adv-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.adv-nav-btn {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s ease;
}

.adv-nav-btn:hover {
  color: #0f172a;
}

/* ----- How it works – photo cards ----- */
.how-steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .how-steps {
    margin-top: 2.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1100px) {
  .how-steps {
    margin-top: 3.5rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }
}

.how-step {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #002855;
  box-shadow: 0 10px 28px rgba(0, 40, 85, 0.14);
}

@media (hover: hover) and (pointer: fine) {
  .how-step {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .how-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 40, 85, 0.2);
  }

  .how-step:hover .how-step-media img {
    transform: scale(1.04);
  }
}

.how-step-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #001a36;
}

@media (min-width: 640px) {
  .how-step-media {
    aspect-ratio: 4 / 3;
  }
}

.how-step-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.how-step-num {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 1.85rem;
  height: 1.85rem;
  padding: 0 0.4rem;
  border-radius: 9999px;
  background: #97d700;
  color: #002855;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.how-step-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1rem 1.2rem;
  background: #002855;
  color: #fff;
}

@media (min-width: 1100px) {
  .how-step-body {
    padding: 1.15rem 1.05rem 1.35rem;
  }
}

.how-step-title {
  margin: 0;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.how-step-text {
  margin: 0.55rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

[data-testid="how-it-works-section"] .mt-14.flex.justify-center,
[data-testid="showcase-section"] .flex.justify-center {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  [data-testid="how-it-works-section"] .mt-14.flex.justify-center,
  [data-testid="showcase-section"] .flex.justify-center {
    margin-top: 3rem;
  }
}

/* Showcase internal spacing – tighter on mobile */
[data-testid="showcase-section"] .space-y-24 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 3.5rem !important;
}

@media (min-width: 1024px) {
  [data-testid="showcase-section"] .space-y-24 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 6rem !important;
  }
}

/* ----- Configurator layout ----- */
/* Equal-height cards: select left, summary right (stacked on mobile) */
.cfg-layout {
  display: grid;
  gap: 1.25rem;
  grid-template-areas:
    "select"
    "summary";
}

.cfg-select,
.cfg-summary {
  grid-area: auto;
  display: flex;
  flex-direction: column;
}

.cfg-select { grid-area: select; }
.cfg-summary { grid-area: summary; }

.cfg-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c5e500;
}

.cfg-select-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.1rem;
}

.cfg-select-foot {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid #e2e8f0;
}

.cfg-select-foot-title {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  color: #003366;
}

.cfg-select-foot-text {
  margin: 0.3rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #64748b;
}

.cfg-field-label {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #003366;
}

.cfg-field-hint {
  margin: -0.25rem 0 0.65rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #64748b;
}

.cfg-select [data-testid] {
  gap: 0.55rem !important;
}

.cfg-seg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.65rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #003366;
  padding: 0.7rem 0.55rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.cfg-seg-btn:hover {
  border-color: #003366;
}

.cfg-seg-btn.is-active {
  border-color: #003366;
  background: #003366;
  color: #fff;
}

.cfg-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.cfg-opt-title {
  font-size: 0.875rem;
  font-weight: 700;
}

.cfg-opt-sub {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.68;
}

[data-testid="cfg-fuel"] .cfg-seg-btn,
[data-testid="cfg-network"] .cfg-seg-btn {
  min-height: 4.1rem;
}

[data-testid="cfg-qty"] .cfg-seg-btn {
  min-height: 3.35rem;
  font-size: 0.95rem;
}

.cfg-summary-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  gap: 1.15rem;
}

.cfg-summary-head {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
}

.cfg-summary-product {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.cfg-summary-delivery {
  margin: 0.3rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #cbd5e1;
}

.cfg-price-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cfg-price-list > div {
  padding-bottom: 0.65rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cfg-price-list > div > span {
  font-size: 1.15rem !important;
}

.cfg-total-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.15rem;
}

.cfg-total-label {
  font-size: 0.875rem;
  font-weight: 800;
  color: #c5e500;
}

.cfg-total-value {
  font-family: inherit;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.cfg-summary-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.cfg-savings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 0.9rem;
  background: #c5e500;
  color: #003366;
  padding: 0.9rem 1rem;
}

.cfg-savings-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.cfg-savings-value {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
}

.cfg-cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 0.9rem;
  background: #fff;
  color: #003366;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.cfg-cta:hover {
  background: #c5e500;
}

.cfg-note {
  margin: 0;
  text-align: center;
  font-size: 0.68rem;
  line-height: 1.4;
  color: #94a3b8;
}

.cfg-topup {
  margin: 0;
  text-align: center;
  font-size: 0.68rem;
  line-height: 1.4;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  padding: 0.55rem 0.7rem;
}

@media (min-width: 1024px) {
  .cfg-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "select summary";
    gap: 1.5rem;
    align-items: stretch;
  }

  .cfg-summary {
    position: sticky !important; /* beat utility .relative if present */
    top: 5.5rem;
    align-self: start;
  }

  .cfg-select,
  .cfg-summary {
    min-height: 100%;
  }
}

/* Fullscreen checkout wizard */
.cfg-checkout {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  background: #f7f8fa;
  color: #003366;
}

.cfg-checkout-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: none;
  padding: 0.9rem 1rem;
  background: #003366;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cfg-checkout-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.cfg-checkout-steps .is-active {
  color: #c5e500;
}

.cfg-checkout-steps .is-done {
  color: rgba(255, 255, 255, 0.85);
}

.cfg-checkout-sep {
  opacity: 0.35;
}

.cfg-checkout-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.cfg-checkout-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.cfg-checkout-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.cfg-checkout-form {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
}

.cfg-checkout-pay {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.cfg-checkout-pay-head {
  flex: none;
  padding: 1rem 1.25rem 0.75rem;
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
}

.cfg-checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #003366;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.cfg-checkout-iframe-wrap {
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 0.75rem 0.75rem;
}

.cfg-checkout-iframe {
  display: block;
  width: 100%;
  height: min(72vh, 720px);
  min-height: 420px;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
}

@media (max-width: 639px) {
  .cfg-seg-btn {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
    font-size: 0.78rem;
  }

  [data-testid="cfg-fuel"] .cfg-seg-btn,
  [data-testid="cfg-network"] .cfg-seg-btn {
    min-height: 3.75rem;
  }

  .cfg-opt-title { font-size: 0.78rem; }
  .cfg-opt-sub { font-size: 0.65rem; }

  .cfg-savings {
    flex-wrap: wrap;
  }

  [data-testid="cfg-order-form"] input,
  [data-testid="cfg-order-form"] textarea {
    font-size: 16px !important; /* prevent iOS zoom */
  }

  .cfg-checkout-iframe {
    height: calc(100dvh - 10.5rem);
    min-height: 320px;
    border-radius: 0.75rem;
  }
}

/* ----- FAQ mobile ----- */
@media (max-width: 639px) {
  [data-testid="faq-section"] [data-testid^="faq-trigger-"] {
    font-size: 1.05rem !important;
    line-height: 1.35 !important;
  }
}

/* ----- Footer ----- */
[data-testid="site-footer"] .grid {
  gap: 2rem;
}

@media (min-width: 1024px) {
  [data-testid="site-footer"] .grid {
    gap: 2.5rem;
  }
}

/* ----- Top Wash promo (CS / EN) ----- */
.topwash-promo {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(105deg, var(--navy-deep) 0%, var(--navy) 48%, #004080 100%);
  padding: 0 !important;
}

.topwash-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 0% 50%, rgba(200, 232, 108, 0.12), transparent 60%),
    linear-gradient(90deg, rgba(0, 34, 68, 0.15) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.topwash-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 80rem;
  padding: 0;
  display: grid;
  align-items: stretch;
}

.topwash-copy {
  padding: 3rem 1.25rem 2.25rem;
  position: relative;
  z-index: 2;
}

.topwash-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8e86c;
}

.topwash-title {
  margin: 0.75rem 0 0;
  font-family: var(--font-display, "Segoe UI", sans-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.topwash-text {
  margin: 0.9rem 0 0;
  max-width: 36ch;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.topwash-timer {
  margin-top: 1.5rem;
}

.topwash-timer-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.65rem;
}

.topwash-timer-grid {
  display: flex;
  gap: 0.55rem;
}

.topwash-unit {
  min-width: 4.1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(200, 232, 108, 0.28);
  background: rgba(0, 20, 40, 0.35);
  backdrop-filter: blur(6px);
  text-align: center;
}

.topwash-unit strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.topwash-unit span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.topwash-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  border: 0;
  background: #c8e86c;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.topwash-cta:hover {
  background: #d4f07a;
}

.topwash-media {
  position: relative;
  min-height: 15rem;
  overflow: hidden;
}

.topwash-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 34, 68, 0.45) 100%);
  pointer-events: none;
}

.topwash-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.7s ease;
}

.topwash-promo:hover .topwash-media img {
  transform: scale(1.08);
}

@media (min-width: 768px) {
  .topwash-copy {
    padding: 3.5rem 1.75rem 3rem;
  }

  .topwash-media {
    min-height: 18rem;
  }

  .topwash-media img {
    min-height: 18rem;
  }
}

@media (min-width: 1024px) {
  .topwash-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    min-height: 26rem;
  }

  .topwash-copy {
    padding: 4.25rem 2rem 4.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .topwash-media {
    min-height: 100%;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }

  .topwash-media::before {
    background: linear-gradient(90deg, rgba(0, 34, 68, 0.55) 0%, transparent 28%);
  }

  .topwash-media::after {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, #c8e86c 35%, #c8e86c 65%, transparent);
    z-index: 2;
    opacity: 0.85;
  }

  .topwash-media img {
    min-height: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }
}

/* =========================================================
   Motion system (all locales)
   ========================================================= */
@keyframes omv-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes omv-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes omv-kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, 1%, 0); }
}

@keyframes omv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes omv-soft-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 232, 108, 0); }
  50% { box-shadow: 0 0 0 8px rgba(200, 232, 108, 0.18); }
}

@keyframes omv-scale-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

html.omv-motion [data-testid="hero-section"] > img:first-of-type {
  animation: omv-kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}

html.omv-motion [data-testid="hero-cards-image"] img.hero-card-img {
  animation: omv-float 5.5s ease-in-out infinite;
  will-change: transform;
}

html.omv-motion [data-testid="hero-section"] .animate-fade-up {
  animation: omv-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html.omv-motion [data-testid="hero-cta-btn"],
html.omv-motion [data-testid="how-cta-btn"],
html.omv-motion [data-testid="topwash-cta-btn"] {
  animation: omv-soft-pulse 2.8s ease-in-out infinite;
}

html.omv-motion .adv-img {
  animation: omv-fade-in 0.45s ease both;
}

html.omv-motion .omv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--omv-delay, 0ms);
}

html.omv-motion .omv-reveal.is-visible {
  opacity: 1;
  transform: none;
}

html.omv-motion [data-testid="topwash-promo-section"] .topwash-copy.omv-reveal {
  transform: translateX(-28px);
}

html.omv-motion [data-testid="topwash-promo-section"] .topwash-media.omv-reveal {
  transform: translateX(28px) scale(1.02);
}

html.omv-motion [data-testid="topwash-promo-section"] .omv-reveal.is-visible {
  transform: none;
}

html.omv-motion .jump-bar-link {
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

html.omv-motion .jump-bar-link:hover {
  transform: translateY(-1px);
}

html.omv-motion .adv-tab.is-active {
  animation: omv-scale-in 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  html.omv-motion [data-testid="showcase-section"] img {
    transition: transform 0.55s ease;
  }

  html.omv-motion [data-testid="showcase-section"] img:hover {
    transform: scale(1.03);
  }
}

html.omv-reduced-motion *,
html.omv-reduced-motion *::before,
html.omv-reduced-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.omv-reduced-motion .omv-reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Offscreen clone used by vorteilspreis screenshot presence */
.fuel-screenshot-capture-root {
  position: fixed;
  left: -10000px;
  top: 0;
  width: 1140px;
  overflow: visible;
  pointer-events: none;
  z-index: -1;
}

.fuel-screenshot-capture-root--omv .cfg-checkout {
  position: relative;
  inset: auto;
  width: 1140px;
  max-width: 1140px;
  min-height: 720px;
  display: block;
}
