:root {
  --red: #e50914;
  --red-dark: #b90009;
  --ink: #12141a;
  --muted: #5f6573;
  --line: rgba(18, 20, 26, .12);
  --soft: #f6f7f9;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(18, 20, 26, .16);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.section { padding: 96px 0; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 20, 26, .08);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(18, 20, 26, .08); }
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(229, 9, 20, .22);
}
.brand strong {
  display: block;
  letter-spacing: .08em;
  font-size: 15px;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: -2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #343945;
  font-weight: 700;
  font-size: 14px;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta {
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(18, 20, 26, .18);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--soft);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(229, 9, 20, .14), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(229, 9, 20, .18), transparent 32%),
    linear-gradient(180deg, #fff, #f8f9fb 82%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 54px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  font-size: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 16px 0 22px;
  max-width: 760px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .95;
  letter-spacing: -.06em;
}
h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.04;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 620px;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 34px rgba(229, 9, 20, .26);
}
.btn-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 14px 34px rgba(18, 20, 26, .08);
}
.btn-ghost {
  color: var(--ink);
  background: rgba(18, 20, 26, .05);
  border-color: rgba(18, 20, 26, .08);
}
.trust-strip {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 670px;
}
.trust-strip span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: 18px;
  padding: 15px;
  color: #343945;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(18, 20, 26, .06);
}
.trust-strip b {
  display: block;
  color: var(--red);
  font-size: 12px;
  margin-bottom: 4px;
}
.hero-card { position: relative; }
.image-stack {
  position: relative;
  min-height: 540px;
}
.image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.image-floating {
  position: absolute;
  width: 42%;
  right: -10px;
  top: 22px;
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(18, 20, 26, .18);
  border: 8px solid var(--white);
}
.quick-info {
  position: absolute;
  left: 24px;
  bottom: 22px;
  max-width: 320px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(18, 20, 26, .12);
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 3;
}
.quick-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(18, 20, 26, .16);
}
.quick-info strong, .quick-info span { display: block; }
.quick-info span { color: var(--muted); }

.intro-band { padding: 42px 0; background: var(--ink); color: var(--white); }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.intro-item {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.intro-item .icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--red);
  font-weight: 900;
  margin-bottom: 18px;
}
.intro-item h2 { font-size: 22px; letter-spacing: -.02em; }
.intro-item p { margin-bottom: 0; color: rgba(255,255,255,.72); }

.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p { color: var(--muted); font-size: 18px; }
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 300px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f7f8fa);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(18, 20, 26, .06);
}
.service-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--red);
  background: rgba(229,9,20,.09);
  font-weight: 900;
  margin-bottom: 34px;
}
.service-card p { color: var(--muted); margin: 0; }




.request { background: var(--ink); color: var(--white); }
.request-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 50px;
  align-items: start;
}
.request-copy p, .request-copy li { color: rgba(255,255,255,.74); }
.check-list { padding: 0; list-style: none; margin: 30px 0 0; }
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2fe38d;
  font-weight: 900;
}
.request-note {
  margin: 22px 0 0;
  max-width: 500px;
  color: rgba(255,255,255,.76);
}
.request-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.request-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-weight: 800;
}
.request-form input, .request-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}
.request-form input::placeholder, .request-form textarea::placeholder { color: rgba(255,255,255,.44); }
.request-form input:focus, .request-form textarea:focus { border-color: rgba(255,255,255,.55); }
.form-message { min-height: 24px; margin: 0; color: #2fe38d; }

.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}
.gallery-item {
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--soft);
  cursor: zoom-in;
  box-shadow: 0 16px 34px rgba(18, 20, 26, .07);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.contact {
  background:
    radial-gradient(circle at 10% 20%, rgba(229,9,20,.12), transparent 28%),
    linear-gradient(180deg, #f8f9fb, #fff);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 30px;
  align-items: stretch;
}
.contact-card, .info-panel {
  padding: 36px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-card p { color: var(--muted); font-size: 18px; }
.info-panel { display: grid; gap: 18px; }
.info-row {
  padding: 20px;
  border-radius: 20px;
  background: #f7f8fa;
  border: 1px solid rgba(18,20,26,.07);
}
.info-row span {
  display: block;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 8px;
}
.info-row strong { display: block; }
.info-row a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  padding: 34px 0;
  background: #0f1117;
  color: var(--white);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-inner p { margin: 0; color: rgba(255,255,255,.68); }
.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(229,9,20,.36);
  font-size: 24px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0,0,0,.86);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(980px, 94vw);
  max-height: 86vh;
  border-radius: 24px;
  box-shadow: 0 26px 90px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  right: 26px;
  top: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}




@keyframes heart-pop {
  0% { opacity: 0; transform: translateY(10px) scale(.7); }
  35% { opacity: 1; transform: translateY(-2px) scale(1); }
  100% { opacity: 0; transform: translateY(-26px) scale(.9); }
}

@media (max-width: 980px) {
  .section { padding: 74px 0; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 10px; }
  .hero { min-height: auto; padding-top: 78px; }
  .hero-grid, .request-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .image-stack { min-height: 420px; }
  .image-main { height: 420px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand { min-width: 0; }
  .brand img { width: 48px; height: 48px; border-radius: 14px; }
  .brand strong { font-size: 13px; }
  .brand small { display: none; }
  .header-inner { min-height: 68px; gap: 12px; }
  .main-nav { top: 76px; }
  .section { padding: 58px 0; }
  h1 { font-size: clamp(34px, 11vw, 50px); letter-spacing: -.05em; }
  h2 { font-size: clamp(28px, 9vw, 40px); }
  h3 { font-size: 20px; }
  .lead { font-size: 16px; }
  .hero { padding-top: 56px; }
  .hero-actions { gap: 10px; }
  .btn { width: 100%; min-height: 48px; padding-inline: 16px; }
  .trust-strip { grid-template-columns: 1fr; margin-top: 26px; }
  .intro-grid, .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .intro-item, .service-card, .contact-card, .info-panel { padding: 22px; border-radius: 22px; }
  .service-card { min-height: auto; }
  .service-number { margin-bottom: 22px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-grid { grid-auto-rows: 230px; }
  .image-stack { min-height: 300px; }
  .image-main { height: 300px; border-radius: 24px; }
  .image-floating {
  position: absolute;
  width: 42%;
  right: -10px;
  top: 22px;
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(18, 20, 26, .18);
  border: 8px solid var(--white);
}
  .quick-info {
  position: absolute;
  left: 24px;
  bottom: 22px;
  max-width: 320px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(18, 20, 26, .12);
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 3;
}
  .request-form { padding: 20px; border-radius: 24px; }
  .request-form input, .request-form textarea { padding: 12px 14px; border-radius: 14px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Masinuta laterala pe scroll */
.side-car-journey {
  --side-car-top: 96px;
  --side-car-wobble: 0px;
  --side-rail-progress: 0%;
  --side-car-scale: 1;
  --side-rail-left: max(18px, calc((100vw - var(--container)) / 2 - 98px));
  --side-car-left: max(18px, calc((100vw - var(--container)) / 2 - 174px));
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 85;
  pointer-events: none;
  display: block;
}
.side-rail {
  position: fixed;
  left: var(--side-rail-left);
  top: 96px;
  bottom: 104px;
  width: 5px;
  border-radius: 999px;
  background: rgba(18,20,26,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 20px 60px rgba(18,20,26,.08);
}
.side-rail span {
  position: absolute;
  inset: 0 0 auto 0;
  height: var(--side-rail-progress);
  border-radius: inherit;
  background: linear-gradient(180deg, var(--red), #ffb52f, #2fe38d);
  box-shadow: 0 0 24px rgba(47,227,141,.28);
}
.side-dot {
  position: fixed;
  left: calc(var(--side-rail-left) - 7px);
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid rgba(18,20,26,.14);
  box-shadow: 0 8px 22px rgba(18,20,26,.15);
}
.side-dot span {
  position: absolute;
  left: 26px;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  opacity: .82;
  box-shadow: 0 10px 24px rgba(18,20,26,.1);
}
.side-dot-start { top: 96px; }
.side-dot-mid { top: 50vh; }
.side-dot-end { bottom: 104px; }
.side-car {
  position: fixed;
  left: var(--side-car-left);
  top: var(--side-car-top);
  width: 112px;
  height: 78px;
  transform: translateY(var(--side-car-wobble)) rotate(var(--side-car-tilt, 0deg)) scale(var(--side-car-scale));
  transform-origin: top left;
  transition: top .16s linear, transform .16s linear;
  filter: drop-shadow(0 18px 20px rgba(18,20,26,.18));
}
.side-car-label {
  position: absolute;
  left: 0;
  bottom: 88px;
  width: max-content;
  max-width: 160px;
  padding: 9px 12px;
  border-radius: 16px 16px 16px 4px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(18,20,26,.16);
}
.side-car-label::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -7px;
  border-top: 8px solid var(--white);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.side-car-badge {
  position: absolute;
  z-index: 8;
  right: -6px;
  top: -10px;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #ffb52f;
  color: #1b1203;
  border: 3px solid var(--white);
  font-weight: 1000;
  box-shadow: 0 10px 24px rgba(18,20,26,.2);
}
.side-car-body {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 112px;
  height: 39px;
  border-radius: 21px 29px 12px 12px;
  background: linear-gradient(135deg, #ff3541, var(--red));
  box-shadow: inset -15px -10px 0 rgba(0,0,0,.16);
  transition: background .25s ease, box-shadow .25s ease;
}
.side-car-body::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 16px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 74px 0 0 rgba(255,255,255,.72);
}
.side-car-body::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 23px;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  opacity: 0;
  transform: rotate(-12deg);
}
.side-car-top {
  position: absolute;
  left: 30px;
  bottom: 44px;
  width: 52px;
  height: 29px;
  border-radius: 30px 30px 4px 4px;
  background: #ff636c;
  transition: background .25s ease;
  overflow: hidden;
}
.side-car-top::before {
  content: "";
  position: absolute;
  inset: 7px 9px 6px;
  border-radius: 18px 18px 4px 4px;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.28));
}
.side-car-top::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 6px;
  width: 1px;
  height: 22px;
  background: rgba(18,20,26,.55);
  box-shadow: 5px 8px 0 rgba(18,20,26,.45), -6px 10px 0 rgba(18,20,26,.35);
  transform: rotate(28deg);
  opacity: 0;
}
.side-car-face {
  position: absolute;
  right: 11px;
  bottom: 25px;
  z-index: 6;
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.04em;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.side-wheel {
  position: absolute;
  bottom: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #090a0d;
  border: 5px solid #fff;
}
.side-wheel::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
}
.side-wheel-left { left: 18px; }
.side-wheel-right { right: 16px; }
.side-smoke {
  position: absolute;
  left: -12px;
  bottom: 38px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(77,82,94,.28);
  opacity: 0;
}
.side-spark {
  position: absolute;
  z-index: 7;
  color: #ffb52f;
  font-size: 18px;
  opacity: 0;
  text-shadow: 0 8px 18px rgba(255,181,47,.38);
}
.side-spark-one { right: -2px; bottom: 58px; }
.side-spark-two { left: 6px; bottom: 58px; font-size: 14px; }
.side-bandage {
  position: absolute;
  z-index: 7;
  left: 12px;
  bottom: 43px;
  width: 28px;
  height: 12px;
  border-radius: 999px;
  background: #fff0d8;
  border: 2px solid rgba(18,20,26,.08);
  transform: rotate(-14deg);
  opacity: 0;
  box-shadow: inset 0 0 0 3px rgba(255,181,47,.18);
}
.side-state-broken {
  --side-car-tilt: -4deg;
  animation: side-car-shake .55s infinite;
}
.side-state-broken .side-smoke { animation: side-smoke 1s infinite; }
.side-smoke-two { animation-delay: .45s !important; }
.side-state-broken .side-bandage,
.side-state-broken .side-car-top::after,
.side-state-broken .side-car-body::after { opacity: 1; }
.side-state-broken .side-wheel-left {
  border-radius: 44% 56% 49% 51%;
  transform: translateY(2px) rotate(9deg);
}
.side-state-check {
  --side-car-tilt: 1deg;
  animation: side-car-soft-bounce .8s ease-in-out infinite;
}
.side-state-check .side-car-body { background: linear-gradient(135deg, #f5a623, #e85d04); }
.side-state-check .side-car-top { background: #ffbb61; }
.side-state-check .side-spark { animation: side-spark-blink .9s ease-in-out infinite; }
.side-state-check .side-spark-two { animation-delay: .25s; }
.side-state-part .side-car-body { background: linear-gradient(135deg, #2d7dff, #174a9f); }
.side-state-part .side-car-top { background: #63a1ff; }
.side-state-part .side-wheel { animation: side-wheel-spin .8s linear infinite; }
.side-state-part .side-spark-one { animation: side-spark-blink .8s ease-in-out infinite; }
.side-state-happy { --side-car-tilt: 0deg; animation: side-car-happy-drive .9s ease-in-out infinite; }
.side-state-happy .side-car-body {
  background: linear-gradient(135deg, #2fe38d, #119d59);
  box-shadow: inset -15px -10px 0 rgba(0,0,0,.10), 0 0 34px rgba(47,227,141,.34);
}
.side-state-happy .side-car-top { background: #80f0b6; }
.side-state-happy .side-wheel { animation: side-wheel-spin .55s linear infinite; }
.side-state-happy .side-spark { color: #2fe38d; animation: side-spark-blink .7s ease-in-out infinite; }
.side-heart {
  position: absolute;
  right: 0;
  bottom: 76px;
  color: #2fe38d;
  font-size: 20px;
  opacity: 0;
  transform: translateY(8px) scale(.7);
}
.side-state-happy .side-heart { animation: heart-pop 1.25s ease infinite; }
.side-state-happy .side-heart-two { right: 24px; animation-delay: .35s; }

@keyframes side-car-shake {
  0%, 100% { transform: translateY(var(--side-car-wobble)) rotate(-4deg) scale(var(--side-car-scale)); }
  35% { transform: translateY(calc(var(--side-car-wobble) - 2px)) rotate(2deg) scale(var(--side-car-scale)); }
  70% { transform: translateY(calc(var(--side-car-wobble) + 1px)) rotate(-2deg) scale(var(--side-car-scale)); }
}
@keyframes side-car-soft-bounce {
  0%, 100% { transform: translateY(var(--side-car-wobble)) rotate(1deg) scale(var(--side-car-scale)); }
  50% { transform: translateY(calc(var(--side-car-wobble) - 3px)) rotate(-1deg) scale(var(--side-car-scale)); }
}
@keyframes side-car-happy-drive {
  0%, 100% { transform: translateY(var(--side-car-wobble)) rotate(0deg) scale(var(--side-car-scale)); }
  50% { transform: translateY(calc(var(--side-car-wobble) - 4px)) rotate(1deg) scale(var(--side-car-scale)); }
}
@keyframes side-smoke {
  0% { transform: translate(0,0) scale(.6); opacity: 0; }
  25% { opacity: .55; }
  100% { transform: translate(-26px,-32px) scale(1.75); opacity: 0; }
}
@keyframes side-spark-blink {
  0%, 100% { opacity: .15; transform: translateY(2px) scale(.72) rotate(-8deg); }
  50% { opacity: 1; transform: translateY(-2px) scale(1.08) rotate(10deg); }
}
@keyframes side-wheel-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1480px) {
  main .container,
  .site-footer .container {
    width: min(var(--container), calc(100% - 112px));
    margin-left: max(92px, calc((100vw - var(--container)) / 2));
    margin-right: auto;
  }
  .side-car-journey {
    --side-rail-left: 14px;
    --side-car-left: 8px;
    --side-car-scale: .72;
  }
  .side-dot span,
  .side-car-label { display: none; }
}

@media (max-width: 1180px) {
  main .container,
  .site-footer .container {
    width: calc(100% - 112px);
    margin-left: 92px;
    margin-right: 20px;
  }
  .side-car-journey {
    --side-rail-left: 14px;
    --side-car-left: 24px;
    --side-car-scale: .56;
    opacity: .94;
  }
  .side-rail {
    top: 88px;
    bottom: 90px;
    width: 4px;
  }
  .side-dot {
    left: calc(var(--side-rail-left) - 6px);
    width: 16px;
    height: 16px;
    border-width: 3px;
  }
}

@media (max-width: 760px) {
  main .container,
  .site-footer .container {
    width: calc(100% - 72px);
    margin-left: 54px;
    margin-right: 18px;
  }
  .side-car-journey {
    --side-rail-left: 10px;
    --side-car-left: 8px;
    --side-car-scale: .38;
    opacity: .92;
  }
  .side-rail {
    top: 82px;
    bottom: 82px;
    width: 3px;
  }
  .side-dot {
    left: calc(var(--side-rail-left) - 5px);
    width: 12px;
    height: 12px;
    border-width: 2px;
  }
  .side-dot span,
  .side-car-label { display: none; }
  .side-car-badge {
    width: 23px;
    height: 23px;
    font-size: 10px;
    border-width: 2px;
  }
}

@media (max-width: 420px) {
  main .container,
  .site-footer .container {
    width: calc(100% - 62px);
    margin-left: 48px;
    margin-right: 14px;
  }
  .side-car-journey {
    --side-rail-left: 8px;
    --side-car-left: 5px;
    --side-car-scale: .34;
  }
}

@media (max-width: 360px) {
  main .container,
  .site-footer .container {
    width: calc(100% - 54px);
    margin-left: 42px;
    margin-right: 12px;
  }
  .side-car-journey {
    --side-rail-left: 7px;
    --side-car-left: 3px;
    --side-car-scale: .30;
  }
  .brand strong { font-size: 12px; }
  h1 { font-size: 32px; }
}

.anti-spam-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.anti-spam-card label { margin: 0; }
.captcha-row {
  display: grid;
  grid-template-columns: 1fr 138px;
  gap: 10px;
  align-items: center;
}
.captcha-row span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  font-weight: 900;
}
.anti-spam-card p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}
.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.request-form button[disabled] {
  opacity: .68;
  cursor: wait;
  transform: none;
}
.form-message.is-error { color: #ff858c; }


@media (max-width: 640px) {
  .captcha-row { grid-template-columns: 1fr; }
}

/* Ajustari finale: traseu lateral separat, masina mai jos si mai vizibila pe mobil */
.side-car-journey {
  --side-car-top: 148px;
  z-index: 88;
}
.side-rail {
  top: 142px;
  bottom: 116px;
  opacity: .74;
}
.side-dot-start { top: 142px; }
.side-dot-end { bottom: 116px; }
.side-dot span { display: none !important; }
.side-car {
  transition: top .22s ease-out, transform .18s ease-out, filter .25s ease;
}
.side-car-label {
  bottom: 82px;
  transform: translateX(4px);
}
.side-dent {
  position: absolute;
  z-index: 7;
  left: 72px;
  bottom: 34px;
  width: 22px;
  height: 14px;
  border-left: 3px solid rgba(255,255,255,.9);
  border-bottom: 3px solid rgba(255,255,255,.75);
  border-radius: 0 0 0 12px;
  transform: rotate(-18deg);
  opacity: 0;
}
.side-tear {
  position: absolute;
  z-index: 7;
  right: 15px;
  bottom: 17px;
  width: 5px;
  height: 11px;
  border-radius: 999px 999px 999px 2px;
  background: rgba(143, 205, 255, .95);
  opacity: 0;
  transform: rotate(14deg);
}
.side-tear-two {
  right: 27px;
  bottom: 15px;
  height: 8px;
  opacity: 0;
}
.side-state-broken .side-dent,
.side-state-broken .side-tear {
  opacity: 1;
}
.side-state-broken .side-tear {
  animation: side-tear-drop 1.15s ease-in-out infinite;
}
.side-state-broken .side-tear-two { animation-delay: .35s; }
.side-state-broken .side-car-body {
  background: linear-gradient(135deg, #ff303a, #c91018);
}
.side-state-check .side-dent { opacity: .45; }
.side-state-check .side-bandage { opacity: .85; }
.side-state-part .side-dent,
.side-state-happy .side-dent,
.side-state-part .side-tear,
.side-state-happy .side-tear { opacity: 0; }
.side-state-happy .side-car-label {
  background: #f2fff8;
}
.side-state-happy .side-car-label::after { border-top-color: #f2fff8; }

@keyframes side-tear-drop {
  0%, 100% { transform: translateY(0) rotate(14deg); opacity: .25; }
  40% { opacity: 1; }
  70% { transform: translateY(7px) rotate(14deg); opacity: 0; }
}

@media (min-width: 1481px) {
  .side-car-journey {
    --side-rail-left: max(22px, calc((100vw - var(--container)) / 2 - 118px));
    --side-car-left: max(22px, calc((100vw - var(--container)) / 2 - 190px));
  }
}

@media (max-width: 1480px) {
  main .container,
  .site-footer .container {
    width: calc(100% - 162px);
    margin-left: 126px;
    margin-right: 36px;
  }
  .side-car-journey {
    --side-rail-left: 22px;
    --side-car-left: 17px;
    --side-car-scale: .68;
  }
  .side-rail { top: 132px; bottom: 106px; }
  .side-dot-start { top: 132px; }
  .side-dot-end { bottom: 106px; }
  .side-car-label { display: none; }
}

@media (max-width: 1180px) {
  main .container,
  .site-footer .container {
    width: calc(100% - 122px);
    margin-left: 92px;
    margin-right: 30px;
  }
  .side-car-journey {
    --side-rail-left: 18px;
    --side-car-left: 15px;
    --side-car-scale: .52;
  }
  .side-rail { top: 118px; bottom: 94px; }
  .side-dot-start { top: 118px; }
  .side-dot-end { bottom: 94px; }
}

@media (max-width: 760px) {
  main .container,
  .site-footer .container {
    width: calc(100% - 66px);
    margin-left: 50px;
    margin-right: 16px;
  }
  .side-car-journey {
    --side-rail-left: 10px;
    --side-car-left: 8px;
    --side-car-scale: .34;
    opacity: .9;
    z-index: 92;
  }
  .side-rail {
    top: 90px;
    bottom: 74px;
    width: 3px;
  }
  .side-dot-start { top: 90px; }
  .side-dot-end { bottom: 74px; }
  .side-dot-mid { top: 48vh; }
  .side-car-badge {
    width: 22px;
    height: 22px;
    font-size: 10px;
    border-width: 2px;
  }
  .side-smoke,
  .side-spark,
  .side-heart { transform: scale(.8); }
}

@media (max-width: 420px) {
  main .container,
  .site-footer .container {
    width: calc(100% - 58px);
    margin-left: 44px;
    margin-right: 14px;
  }
  .side-car-journey {
    --side-rail-left: 8px;
    --side-car-left: 5px;
    --side-car-scale: .31;
  }
}

@media (max-width: 360px) {
  main .container,
  .site-footer .container {
    width: calc(100% - 50px);
    margin-left: 38px;
    margin-right: 12px;
  }
  .side-car-journey {
    --side-rail-left: 7px;
    --side-car-left: 3px;
    --side-car-scale: .28;
  }
}


/* Premium + SEO refresh */
.hero-premium .lead {
  max-width: 700px;
}

.hero-premium-card {
  position: relative;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-metrics div,
.hero-highlight-card,
.product-card,
.process-card,
.faq-item,
.premium-pill {
  border: 1px solid rgba(18, 20, 26, .08);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 46px rgba(18, 20, 26, .08);
}

.hero-metrics div {
  padding: 18px;
  border-radius: 20px;
}

.hero-metrics strong,
.highlight-kicker {
  display: block;
}

.hero-metrics strong {
  font-size: 16px;
  margin-bottom: 4px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-highlight-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(340px, 58%);
  padding: 18px 20px;
  border-radius: 22px;
  backdrop-filter: blur(16px);
  z-index: 4;
}

.highlight-kicker {
  color: var(--red);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 8px;
}

.hero-highlight-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-highlight-card p,
.products-section .section-heading p,
.brands-section .section-heading p,
.gallery .section-heading p,
.request-note {
  color: var(--muted);
}

.premium-band {
  padding-top: 0;
}

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

.premium-pill {
  padding: 18px 20px;
  border-radius: 18px;
  font-weight: 700;
  text-align: center;
}

.products-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.product-card,
.process-card {
  padding: 28px;
  border-radius: 24px;
}

.product-card p,
.process-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.brand-wall span {
  display: grid;
  place-items: center;
  min-height: 92px;
  border-radius: 20px;
  border: 1px solid rgba(18, 20, 26, .08);
  background: linear-gradient(180deg, #fff, #f7f8fb);
  box-shadow: 0 18px 40px rgba(18, 20, 26, .06);
  font-weight: 900;
  letter-spacing: .08em;
}

.request-side-note {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(229, 9, 20, .06), rgba(18, 20, 26, .03));
  border: 1px solid rgba(229, 9, 20, .12);
}

.request-side-note p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.faq-item {
  padding: 0 22px;
  border-radius: 22px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding: 22px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--muted);
  margin: 0 0 22px;
}

input:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(229, 9, 20, .18);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .premium-pill-grid,
  .brand-wall,
  .products-grid,
  .process-grid,
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-highlight-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(340px, 58%);
  padding: 18px 20px;
  border-radius: 22px;
  backdrop-filter: blur(16px);
  z-index: 4;
}
}

@media (max-width: 720px) {
  .premium-pill-grid,
  .brand-wall,
  .products-grid,
  .process-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .product-card,
  .process-card,
  .premium-pill,
  .hero-metrics div {
    padding: 22px;
  }

  .brand-wall span {
    min-height: 76px;
  }
}



/* Preview v2: mașinuță mai profi + contrast mai bun */
.side-car-journey {
  --side-car-scale: .92;
}

.side-rail {
  width: 4px;
  background: linear-gradient(180deg, rgba(18,20,26,.08), rgba(18,20,26,.16));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 18px 40px rgba(18,20,26,.06);
}

.side-rail span {
  background: linear-gradient(180deg, #ff424d 0%, #ffb52f 52%, #2fe38d 100%);
  box-shadow: 0 0 18px rgba(47,227,141,.22);
}

.side-dot {
  width: 16px;
  height: 16px;
  border-width: 3px;
  box-shadow: 0 8px 18px rgba(18,20,26,.10);
}

.side-dot span {
  color: rgba(18,20,26,.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.side-car {
  width: 118px;
  height: 82px;
  filter: drop-shadow(0 12px 24px rgba(18,20,26,.14));
}

.side-car-label {
  bottom: 92px;
  max-width: 178px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(18,20,26,.08);
  box-shadow: 0 14px 30px rgba(18,20,26,.10);
  font-size: 11px;
  letter-spacing: .02em;
}

.side-car-label::after {
  left: 18px;
  bottom: -6px;
  border-top: 7px solid rgba(255,255,255,.96);
}

.side-car-badge {
  right: -2px;
  top: -6px;
  width: 28px;
  height: 28px;
  border-width: 2px;
  box-shadow: 0 8px 16px rgba(18,20,26,.14);
}

.side-car-body {
  width: 118px;
  height: 40px;
  bottom: 16px;
  border-radius: 24px 30px 14px 14px;
  background: linear-gradient(135deg, #ff4a55 0%, #d70f1b 100%);
  box-shadow: inset -12px -10px 0 rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.28);
}

.side-car-body::before {
  left: 12px;
  top: 7px;
  width: 16px;
  height: 4px;
  background: rgba(255,255,255,.86);
  box-shadow: 77px 0 0 rgba(255,255,255,.82);
}

.side-car-top {
  left: 31px;
  bottom: 45px;
  width: 56px;
  height: 30px;
  background: linear-gradient(180deg, #ff737b, #f14a53);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}

.side-car-top::before {
  inset: 6px 9px 6px;
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.24));
}

.side-wheel {
  width: 23px;
  height: 23px;
  bottom: 4px;
  border-width: 5px;
  box-shadow: inset 0 0 0 4px #5f6775, 0 5px 10px rgba(18,20,26,.18);
}

.side-wheel::after {
  inset: 5px;
  background: radial-gradient(circle at 35% 35%, #f9fbff 0, #dce3ec 35%, #7f8998 36%, #7f8998 60%, #2f3642 61%, #2f3642 100%);
}

.side-smoke {
  background: rgba(82,89,102,.18);
  filter: blur(1px);
}

.side-spark {
  color: #ffbf47;
  font-size: 15px;
  text-shadow: 0 6px 14px rgba(255,191,71,.26);
}

.side-bandage,
.side-dent,
.side-tear {
  opacity: 0 !important;
}

.side-state-broken {
  --side-car-tilt: -2deg;
  animation: side-car-shake-refined 1.2s ease-in-out infinite;
}

.side-state-broken .side-smoke {
  animation: side-smoke-soft 1.6s ease-in-out infinite;
}

.side-state-check {
  --side-car-tilt: 0deg;
  animation: side-car-soft-bounce 1.2s ease-in-out infinite;
}

.side-state-check .side-car-body {
  background: linear-gradient(135deg, #ff9f34, #dd5b12);
}

.side-state-check .side-car-top {
  background: linear-gradient(180deg, #ffc46a, #ff9f34);
}

.side-state-part .side-car-body {
  background: linear-gradient(135deg, #ff595f, #cb1018);
}

.side-state-happy .side-car-body {
  background: linear-gradient(135deg, #19c875, #0e9d58);
}

.side-state-happy .side-car-top {
  background: linear-gradient(180deg, #55dfa0, #1fba73);
}

.side-state-happy .side-car-label {
  background: rgba(242,255,248,.98);
}

.side-state-happy .side-car-label::after {
  border-top-color: rgba(242,255,248,.98);
}

.side-heart {
  font-size: 16px;
}

@keyframes side-car-shake-refined {
  0%, 100% { transform: translateY(var(--side-car-wobble)) rotate(-2deg) scale(var(--side-car-scale)); }
  50% { transform: translateY(calc(var(--side-car-wobble) - 2px)) rotate(1deg) scale(var(--side-car-scale)); }
}

@keyframes side-smoke-soft {
  0% { transform: translate(0, 0) scale(.75); opacity: 0; }
  25% { opacity: .28; }
  100% { transform: translate(-10px, -12px) scale(1.18); opacity: 0; }
}

.request-side-note {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,249,252,.94));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
}

.request-side-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.request-side-note p {
  color: #4d5563;
  margin: 0 0 16px;
}

.request-side-note .btn {
  min-height: 52px;
}

.request-side-note__cta {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1100px) {
  .side-car-journey {
    --side-car-scale: .78;
  }
}

@media (max-width: 760px) {
  .request-side-note {
    padding: 20px;
  }

  .request-side-note strong {
    font-size: 20px;
  }
}


.hero-premium-card .image-stack {
  min-height: 560px;
}

@media (max-width: 980px) {
  .image-floating {
    width: 44%;
    right: 0;
    top: 16px;
  }

  .hero-highlight-card {
    right: 16px;
    bottom: 16px;
    width: min(320px, 60%);
  }
}

@media (max-width: 640px) {
  .image-floating {
    width: 48%;
    top: 12px;
    right: 12px;
  }

  .quick-info,
  .hero-highlight-card {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 14px;
  }

  .hero-premium-card .image-stack {
    min-height: auto;
  }
}


/* Preview overrides */
.hero-variant {
  padding-top: 32px;
  overflow: visible;
}
.hero-variant .container {
  position: relative;
}
.hero-grid-elegant,
.hero-grid-commercial {
  align-items: center;
  gap: 72px;
}
.hero-variant .eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  color: #d31217;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 800;
}
.hero-variant h1 {
  margin: 0;
  max-width: 10.5ch;
  line-height: .96;
  letter-spacing: -0.05em;
}
.hero-elegant h1 {
  font-size: clamp(3.8rem, 6.8vw, 6.2rem);
}
.hero-commercial h1 {
  font-size: clamp(4rem, 7.2vw, 6.6rem);
}
.hero-variant .lead {
  max-width: 680px;
  font-size: 1.42rem;
  line-height: 1.6;
  color: #5c6473;
  margin-top: 26px;
}
.hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-mini-points span {
  padding: 12px 16px;
  border: 1px solid rgba(11,15,26,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 16px 40px rgba(16,24,40,.06);
  font-weight: 700;
  color: #18202d;
}
.hero-cta-strip {
  margin-top: 24px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,247,247,.94));
  border: 1px solid rgba(211,18,23,.12);
  box-shadow: 0 20px 45px rgba(16,24,40,.08);
  max-width: 640px;
}
.hero-cta-strip strong {
  font-size: 1.05rem;
}
.hero-cta-strip span {
  color: #5c6473;
}
.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}
.hero-visual-frame {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 32px 80px rgba(17,24,39,.14);
  min-height: 620px;
}
.hero-visual-frame img.image-main {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,11,18,.06), rgba(8,11,18,.42));
  pointer-events: none;
}
.hero-note-card {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 3;
  width: min(360px, calc(100% - 60px));
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(17,24,39,.16);
}
.hero-note-card strong,
.hero-dark-card strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1.12;
  color: #0b0f1a;
}
.hero-note-card p,
.hero-dark-card p {
  margin: 12px 0 0;
  color: #5d6471;
  font-size: 1.08rem;
  line-height: 1.55;
}
.hero-dark-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  max-width: 440px;
  padding: 24px 24px 22px;
  border-radius: 26px;
  background: rgba(11,15,26,.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 55px rgba(8,11,18,.26);
}
.hero-dark-card strong,
.hero-dark-card p {
  color: #fff;
}
.hero-dark-card p {
  color: rgba(255,255,255,.82);
}
.btn-small {
  min-height: 48px;
  padding: 0 18px;
  font-size: 1rem;
  margin-top: 16px;
}
.hero-benefits-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hero-benefit {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(11,15,26,.08);
  box-shadow: 0 20px 45px rgba(16,24,40,.05);
}
.hero-benefit b {
  color: #d31217;
  font-size: 1rem;
}
.hero-benefit span {
  color: #202733;
  font-weight: 700;
  line-height: 1.45;
}
.hero-premium-card,
.trust-strip.premium-trust,
.hero-metrics {
  display: none !important;
}
.hero-grid.hero-grid-elegant .hero-copy,
.hero-grid.hero-grid-commercial .hero-copy {
  padding-top: 24px;
}
.hero-grid.hero-grid-elegant {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
}
.hero-grid.hero-grid-commercial {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.section.hero-variant + .section {
  padding-top: 70px;
}
@media (max-width: 1180px) {
  .hero-grid-elegant,
  .hero-grid-commercial {
    gap: 40px;
  }
  .hero-variant h1 {
    max-width: 12ch;
  }
}
@media (max-width: 980px) {
  .hero-grid-elegant,
  .hero-grid-commercial,
  .hero-benefits-row {
    grid-template-columns: 1fr;
  }
  .hero-visual,
  .hero-visual-frame,
  .hero-visual-frame img.image-main {
    min-height: 420px;
  }
  .hero-note-card,
  .hero-dark-card {
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
  }
}


/* Strong preview variants */
.hero-elegant-strong {
  padding-top: 36px;
  padding-bottom: 28px;
}
.hero-grid-elegant-strong {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 72px;
}
.hero-elegant-strong .hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5.6vw, 5rem);
  line-height: .96;
  letter-spacing: -.04em;
}
.hero-elegant-strong .lead {
  max-width: 60ch;
  font-size: 1.08rem;
}
.hero-elegant-strong .hero-visual-stage {
  position: relative;
  padding: 18px 0 56px 24px;
}
.hero-elegant-strong .hero-visual-frame {
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
}
.hero-elegant-strong .image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-note-card-elegant {
  right: auto;
  left: -24px;
  bottom: 0;
  width: min(360px, calc(100% - 56px));
  border: 1px solid rgba(226, 232, 240, .95);
}
.hero-note-card-elegant small,
.hero-dark-card-strong small {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #dc2626;
}
.hero-benefits-elegant {
  margin-top: 12px;
}
.hero-benefits-elegant .hero-benefit {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.hero-commercial-strong {
  padding-top: 28px;
  padding-bottom: 44px;
  background:
    radial-gradient(circle at top right, rgba(220, 38, 38, .16), transparent 28%),
    linear-gradient(180deg, #fff7f7 0%, #ffffff 52%);
}
.hero-grid-commercial-strong {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 56px;
}
.hero-commercial-strong .hero-copy h1 {
  max-width: 10.5ch;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: .93;
  letter-spacing: -.05em;
}
.hero-commercial-strong .lead {
  max-width: 52ch;
  font-size: 1.06rem;
}
.hero-cta-strip-strong {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  margin-top: 18px;
  background: #111827;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, .16);
}
.hero-cta-strip-strong strong {
  color: #fff;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.hero-stat-grid > div {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(254, 202, 202, .9);
  box-shadow: 0 12px 28px rgba(220, 38, 38, .08);
}
.hero-stat-grid b,
.hero-stat-grid span {
  display: block;
}
.hero-stat-grid b {
  font-size: .95rem;
}
.hero-stat-grid span {
  margin-top: 4px;
  color: #475569;
  font-size: .9rem;
}
.hero-visual-commercial {
  position: relative;
  min-height: 640px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(17, 24, 39, .22);
}
.hero-visual-commercial::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,24,39,.02) 10%, rgba(17,24,39,.68) 100%);
}
.hero-commercial-strong .image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-dark-card-strong {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(17,24,39,.22);
}
.hero-dark-card-strong strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1.08;
  color: #111827;
}
.hero-dark-card-strong p {
  margin: 10px 0 0;
  color: #334155;
}

@media (max-width: 991px) {
  .hero-grid-elegant-strong,
  .hero-grid-commercial-strong {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-elegant-strong .hero-copy h1,
  .hero-commercial-strong .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.5rem, 11vw, 4.4rem);
  }
  .hero-elegant-strong .hero-visual-stage {
    padding: 0 0 90px;
  }
  .hero-note-card-elegant {
    left: 18px;
    right: 18px;
    width: auto;
  }
  .hero-stat-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual-commercial,
  .hero-elegant-strong .hero-visual-frame {
    min-height: 480px;
  }
}
