/*!***********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/(web)/landing.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************/
/* Automotores Cuyo — Editorial automotive landing */

:root {
  --accent: #ed7c11;
  --accent-dark: #b85f08;
  --ink: #0a0a0a;
  --graphite: #1f1f23;
  --slate: #3f3f46;
  --muted: #71717a;
  --line: #e5e5e5;
  --line-soft: #efefef;
  --bg: #ffffff;
  --bg-soft: #f6f6f4;
  --bg-warm: #f2f0ec;
  --bg-dark: #0a0a0a;
  --font-display:
    var(--font-manrope), "Manrope", "Inter Tight", -apple-system,
    BlinkMacSystemFont, sans-serif;
  --font-sans:
    var(--font-manrope), "Manrope", "Inter", -apple-system, BlinkMacSystemFont,
    sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* Type system */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ink);
}

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-wrap: balance;
}

.display em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 84px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 0;
  text-wrap: balance;
}

.section-title em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
}

.lead {
  font-size: 18px;
  line-height: 1.5;
  color: var(--slate);
  max-width: 56ch;
  text-wrap: pretty;
}

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 200ms var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover {
  background: var(--accent);
  color: #fff;
}

.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-wa:hover {
  background: #1ea952;
}

.btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Header */
.header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}
.header-inner {
  margin: 0 auto;
  max-width: 1440px;
  pointer-events: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: all 240ms var(--ease-out);
}

.header.scrolled .header-inner {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.header.dark .header-inner {
  background: rgba(10, 10, 10, 0.65);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.header.dark.scrolled .header-inner {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.06);
}

/* btn-ghost en header oscuro (antes de scroll) */
.header.dark:not(.scrolled) .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.header.dark:not(.scrolled) .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  padding: 0 8px;
  height: 36px;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 200ms var(--ease-out);
  position: relative;
}
.nav a:hover {
  background: rgba(0, 0, 0, 0.05);
}
.header.dark .nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header.dark.scrolled .nav a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 56px);
  min-height: calc(100svh - 56px);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.55) 75%,
    rgba(0, 0, 0, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 56px);
  min-height: calc(100svh - 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 104px;
  padding-bottom: 64px;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.hero-top .mono {
  color: rgba(255, 255, 255, 0.7);
}

.hero-meta {
  display: flex;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-meta i {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.7;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0;
  text-wrap: balance;
  color: #fff;
}
.hero h1 em {
  font-style: italic;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
}
.hero h1 .accent {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-subtext {
  max-width: 38ch;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions .btn-primary {
  background: #fff;
  color: var(--ink);
}
.hero-actions .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}
.hero-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.hero-actions .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* Search — simplified single input with recommendations */
.search {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  display: flex;
  justify-content: center;
  padding-bottom: 8px;
}
.search-simple {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: 999px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.4) inset;
  padding: 10px 10px 10px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-soft);
}
.search-icon {
  display: inline-flex;
  color: var(--muted);
  flex-shrink: 0;
}
.search-simple input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 16px 0;
  min-width: 0;
}
.search-simple input::placeholder {
  color: var(--muted);
  font-weight: 400;
}
.search-clear {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: background 160ms var(--ease-out);
  flex-shrink: 0;
}
.search-clear:hover {
  background: var(--line);
  color: var(--ink);
}
.search-go {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: background 200ms var(--ease-out);
  flex-shrink: 0;
}
.search-go:hover {
  background: var(--accent);
}

/* Dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 14px;
  z-index: 10;
  animation: fadeInDown 180ms var(--ease-out);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-dropdown-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px 12px;
}
.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 4px 4px;
}
.search-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  transition: all 160ms var(--ease-out);
}
.search-chip:hover {
  background: var(--ink);
  color: #fff;
}
.search-chip svg {
  color: var(--muted);
}
.search-chip:hover svg {
  color: #fff;
}

.search-results {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.search-result {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 140ms var(--ease-out);
}
.search-result.active,
.search-result:hover {
  background: var(--bg-soft);
}
.search-result img {
  width: 56px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg-soft);
}
.search-result img.is-placeholder {
  object-fit: contain;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.search-result-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.search-result-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-brand {
  font-weight: 700;
}
.search-result-sub {
  font-size: 12px;
  color: var(--muted);
}
.search-result-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.search-empty {
  padding: 16px 12px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .search-simple {
    padding: 8px 8px 8px 18px;
    border-radius: 28px;
  }
  .search-go {
    padding: 12px 16px;
  }
  .search-go span {
    display: none;
  }
  .search-result {
    grid-template-columns: 48px 1fr;
  }
  .search-result-price {
    grid-column: 1 / -1;
    padding-left: 62px;
    font-size: 13px;
  }
}

/* Marquee / strip */
.strip {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: #fff;
}
.strip-track {
  display: flex;
  gap: 64px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.strip-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 154px;
  height: 56px;
  flex: 0 0 154px;
  justify-content: center;
}
.strip-brand-logo {
  display: block;
  width: 128px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transform: scale(var(--brand-logo-scale, 1));
  transform-origin: center;
}
.strip-brand::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.4;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}
.section-tight {
  padding: 80px 0;
}
.section-bg-soft {
  background: var(--bg-soft);
}
.section-bg-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}

.section-head .meta-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
}

.section-head .section-title {
  max-width: 22ch;
}

@media (max-width: 880px) {
  .section {
    padding: 80px 0;
  }
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefit {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 240ms var(--ease-out);
}
.benefit:last-child {
  border-right: 0;
}
.benefit:hover {
  background: var(--bg-soft);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
}
.benefit-icon svg {
  width: 22px;
  height: 22px;
}
.benefit h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.benefit p {
  font-size: 14px;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}
.benefit-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: auto;
}
@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit {
    border-bottom: 1px solid var(--line);
  }
  .benefit:nth-child(2n) {
    border-right: 0;
  }
}
@media (max-width: 560px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit {
    border-right: 0 !important;
  }
}

/* Catalog */
/* Catalog */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.catalog-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px 0 14px;
  min-width: 260px;
  flex-shrink: 0;
  transition: border-color 160ms var(--ease-out);
}
.catalog-search:focus-within {
  border-color: var(--ink);
}
.catalog-search-icon {
  color: var(--muted);
  display: inline-flex;
}
.catalog-search input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 11px 0 11px 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  width: 100%;
}
.catalog-search input::placeholder {
  color: var(--muted);
}

@media (max-width: 640px) {
  .catalog-toolbar {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .catalog-search {
    min-width: 0;
  }
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  transition: all 200ms var(--ease-out);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tab:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tab-count {
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.7;
  letter-spacing: 0.04em;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 32px;
}
@media (max-width: 1200px) {
  .cars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cars-grid {
    grid-template-columns: 1fr;
  }
}

.catalog-empty-state {
  display: grid;
  grid-template-columns: minmax(16rem, 24rem) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.catalog-empty-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 18rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(237, 124, 17, 0.18), transparent 54%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line-soft);
  padding: 24px;
}
.catalog-empty-logo {
  width: min(100%, 18rem);
  object-fit: contain;
}
.catalog-empty-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.catalog-empty-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
}
.catalog-empty-copy p {
  margin: 0;
  max-width: 44ch;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
}
.catalog-no-results {
  padding: 60px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: #fff;
  margin-bottom: 32px;
}
.catalog-no-results p {
  color: var(--muted);
  margin: 0;
}
@media (max-width: 900px) {
  .catalog-empty-state {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

.car-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 320ms var(--ease-out);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.car-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.car-image {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}
.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.car-image.is-placeholder {
  background:
    radial-gradient(circle at top, rgba(237, 124, 17, 0.18), transparent 52%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.car-image.is-placeholder img {
  object-fit: contain;
  padding: 22px;
}
.car-card:hover .car-image img {
  transform: scale(1.04);
}
.car-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.car-badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--ink);
}
.car-badge.accent {
  background: var(--accent);
  color: #fff;
}
.car-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms var(--ease-out);
}
.car-fav:hover {
  background: #fff;
  transform: scale(1.05);
}
.car-fav svg {
  width: 16px;
  height: 16px;
}
.car-fav.active {
  background: var(--accent);
  color: #fff;
}

.car-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.car-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.car-brand {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.car-model {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.car-year {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--bg-soft);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink);
  flex-shrink: 0;
}
.car-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.car-specs div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.car-spec-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.car-spec-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.car-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.car-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.car-price-mini {
  font-size: 10px;
  font-family: var(--font-sans);
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.car-actions {
  display: flex;
  gap: 6px;
}
.car-actions .btn {
  padding: 10px 14px;
  font-size: 12px;
}

/* Trust block */
.trust {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 640px;
  color: #fff;
  isolation: isolate;
}
.trust img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.trust::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.78) 100%
  );
  z-index: 1;
}
.trust-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  min-height: 640px;
}
.trust-content > div {
  display: flex;
  flex-direction: column;
}
.trust-content .lead {
  color: rgba(255, 255, 255, 0.85);
}
.trust-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 80px);
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin: 0;
  text-wrap: balance;
}
.trust-title em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
}
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.trust-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.trust-point-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 4px;
  flex-shrink: 0;
  width: 28px;
}
.trust-point h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 6px 0;
}
.trust-point p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .trust {
    min-height: auto;
    border-radius: 20px;
  }
  .trust-content {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    min-height: 0;
    gap: 40px;
  }
}

/* Two-block CTA */
.two-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.block-cta {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 460px;
  color: #fff;
  isolation: isolate;
  cursor: pointer;
  transition: all 300ms var(--ease-out);
}
.block-cta:hover {
  transform: translateY(-3px);
}
.block-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.block-cta:hover img {
  transform: scale(1.04);
}
.block-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
}
.block-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  gap: 32px;
}
.block-content h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0;
  max-width: 14ch;
}
.block-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 38ch;
}
.block-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.block-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms var(--ease-out);
}
.block-cta:hover .block-arrow {
  background: var(--accent);
  color: #fff;
  transform: rotate(-45deg);
}
@media (max-width: 880px) {
  .two-blocks {
    grid-template-columns: 1fr;
  }
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-soft);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    aspect-ratio: 4/3;
  }
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 280ms var(--ease-out);
}
.testimonial:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
}
.stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.testimonial-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 980px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form {
  background: var(--bg-soft);
  border-radius: 22px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.04em;
  margin: 0 0 16px 0;
  line-height: 1;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms var(--ease-out);
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink);
}
.contact-info {
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info-block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.contact-info-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.contact-info-value.sm {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.contact-map {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.contact-map svg {
  color: var(--accent);
}
@media (max-width: 880px) {
  .contact {
    grid-template-columns: 1fr;
  }
  .contact-form,
  .contact-info {
    padding: 28px;
  }
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 14px 0;
}
.footer-brand p {
  font-size: 13px;
  max-width: 30ch;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 20px 0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 160ms var(--ease-out);
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 200ms var(--ease-out);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal {
  background: #fff;
  border-radius: 28px;
  width: min(100%, calc(100vw - 32px));
  height: min(100%, calc(100vh - 32px));
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: minmax(480px, 1.05fr) minmax(640px, 1.45fr);
  animation: slideUp 320ms var(--ease-expo);
}
.modal.is-expanded {
  width: min(100%, calc(100vw - 32px));
  height: min(100%, calc(100vh - 32px));
  grid-template-columns: minmax(520px, 1fr) minmax(760px, 1.55fr);
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 200ms var(--ease-out);
}
.modal-close:hover {
  background: var(--ink);
  color: #fff;
}
.modal-image {
  position: relative;
  background: var(--bg-soft);
  min-height: 100%;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-image.is-placeholder {
  background:
    radial-gradient(circle at top, rgba(237, 124, 17, 0.18), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.modal-image.is-placeholder img {
  object-fit: contain;
  padding: 32px;
}
.modal-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transition: all 200ms var(--ease-out);
}
.modal-gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}
.modal-gallery-nav.prev {
  left: 18px;
}
.modal-gallery-nav.next {
  right: 18px;
}
.modal-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
}
.modal-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}
.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.modal-specs > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}
.modal-specs .l {
  color: var(--muted);
}
.modal-specs .v {
  text-align: right;
  font-weight: 500;
}
.modal-technical {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-technical-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-technical-toggle {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--bg-soft);
  transition:
    border-color 180ms var(--ease-out),
    background 180ms var(--ease-out),
    color 180ms var(--ease-out);
}
.modal-technical-toggle:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.modal-technical-sheet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.modal-technical-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-soft);
}
.modal-technical-group h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.modal-technical-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}
.modal-technical-group-grid > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.modal-technical-group-grid .l {
  color: var(--muted);
}
.modal-technical-group-grid .v {
  text-align: right;
  font-weight: 500;
}
.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.modal-actions .btn {
  flex: 1;
  min-width: 140px;
}
@media (max-width: 880px) {
  .modal-overlay {
    padding: 0;
  }
  .modal {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    grid-template-columns: 1fr;
  }
  .modal.is-expanded {
    width: 100vw;
    height: 100vh;
    grid-template-columns: 1fr;
  }
  .modal-image {
    min-height: 240px;
    aspect-ratio: 4/3;
  }
  .modal-gallery-nav.prev {
    left: 12px;
  }
  .modal-gallery-nav.next {
    right: 12px;
  }
  .modal-body {
    padding: 28px;
  }
  .modal-body h2 {
    font-size: 32px;
  }
  .modal-specs,
  .modal-technical-sheet,
  .modal-technical-group-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility: appear on scroll */
.appear {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}
.appear.in {
  opacity: 1;
  transform: translateY(0);
}

/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"src/app/(web)/layout.tsx","import":"Manrope","arguments":[{"subsets":["latin"],"variable":"--font-manrope","display":"swap"}],"variableName":"manrope"} ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/438aa629764e75f3-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/875ae681bfde4580-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/51251f8b9793cdb3-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/e857b654a2caa584-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/cc978ac5ee68c2b6-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/4c9affa5bc8f420e-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'Manrope Fallback';src: local("Arial");ascent-override: 103.31%;descent-override: 29.07%;line-gap-override: 0.00%;size-adjust: 103.19%
}.__className_73ee6c {font-family: 'Manrope', 'Manrope Fallback';font-style: normal
}.__variable_73ee6c {--font-manrope: 'Manrope', 'Manrope Fallback'
}

