/* === CATALOG LOADING === */
.catalog-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
}

.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(74, 127, 165, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* === VARIABLES === */
:root {
  --bg: #f5f4f2;
  --bg-card: #ffffff;
  --bg-dark: #0a0a0a;
  --bg-dark-2: #121212;
  --text: #111;
  --text-light: #f0f0f0;
  --text-muted: #888;
  --text-muted-dark: rgba(255, 255, 255, 0.38);
  --border: rgba(0, 0, 0, 0.09);
  --border-dark: rgba(255, 255, 255, 0.09);
  --accent: #4a7fa5;
  --accent-green: #25d366;
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 10px 36px rgba(0, 0, 0, 0.13);
  --shadow-modal: 0 28px 90px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --radius-sm: 8px;
  --tr: 0.25s ease;
}

/* === RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
em  { font-style: italic; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background var(--tr), color var(--tr), transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Hero dark section buttons */
.btn-white {
  background: #fff;
  color: #000;
}

.btn-white:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(74, 127, 165, 0.55);
}

.btn-ghost-light:hover {
  border-color: rgba(74, 127, 165, 0.9);
  background: rgba(74, 127, 165, 0.08);
}

/* Light section / modal buttons */
.btn-dark {
  background: var(--text);
  color: #fff;
}

.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.btn-outline-dark:hover {
  border-color: var(--text);
}

.btn-outline-disabled {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: default;
  pointer-events: none;
}

.btn-whatsapp {
  background: var(--accent-green);
  color: #fff;
  font-size: 1rem;
  padding: 1rem 2rem;
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
  background: #1fb955;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
}

/* === NAVIGATION === */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

.main-nav.scrolled {
  background: rgba(245, 244, 242, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 0.85rem 5%;
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}

.nav-logo { display: flex; align-items: center; }

.logo-img {
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  transition: filter var(--tr);
}


.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--tr);
}

.main-nav.scrolled .nav-cta {
  color: var(--text);
  border-color: var(--border);
}

.nav-cta:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.08) 35%,
    rgba(0, 0, 0, 0.65) 80%,
    rgba(0, 0, 0, 0.82) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0 8% 5rem;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  will-change: transform, opacity;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
  margin: 0 0 1.75rem;
  animation: fadeIn 1s ease both;
}

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease 0.2s both;
}


.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.8;
  margin-top: 1.25rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: fadeInUp 0.8s ease 0.55s both;
}

/* === SCROLL INDICATOR === */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-hint__line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
  transform-origin: top center;
  animation: scrollLine 2.2s ease-in-out infinite;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 5%;
}

.trust-bar__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-icon {
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.2rem;
}

.trust-item span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
}

/* === HOW IT WORKS === */
.how-it-works {
  background: var(--bg-dark);
  padding: 6rem 5%;
}

.how-inner {
  max-width: 860px;
  margin: 0 auto;
}

.how-it-works .section-header {
  margin-bottom: 3.5rem;
}

.how-it-works .section-eyebrow { color: var(--accent); }
.how-it-works .section-title   { color: var(--text-light); }

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}

.step:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(74, 127, 165, 0.22);
  flex-shrink: 0;
  width: 72px;
  text-align: right;
  letter-spacing: -0.04em;
  transition: color 0.3s ease;
}

.step:hover .step-number { color: rgba(74, 127, 165, 0.55); }

.step-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

/* === CATALOG SECTION === */
.catalog-section {
  padding: 7rem 5%;
  max-width: 1360px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

/* === CAR CARDS === */
.car-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  box-shadow: var(--shadow-card);
  opacity: 0;
}

.car-card.card-visible {
  animation: cardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.car-card.card-visible:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 0, 0, 0.15);
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: #141414;
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.28) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.car-card.card-visible:hover .card-image::after {
  opacity: 1.0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.car-card.card-visible:hover .card-image img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1.2rem 0.85rem;
  z-index: 2;
  background: rgba(8, 8, 8, 0.42);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Placeholder */
.car-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #eceae7;
}

.placeholder-icon {
  width: 80px;
  height: auto;
  opacity: 0.25;
}

.placeholder-text {
  font-size: 0.65rem;
  color: #aaa;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Badges */
.card-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

.card-badge--disponible {
  background: #1a7a45;
  color: #ffffff;
}

.card-badge--reservado {
  background: #b45309;
  color: #ffffff;
}

.card-badge--vendido {
  background: rgba(40, 40, 40, 0.75);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
}

.card-etiqueta {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 0.22rem 0.5rem;
  border-radius: 3px;
  z-index: 2;
  letter-spacing: 0.04em;
}

.etiqueta-ECO { background: #007b3e; color: #fff; }
.etiqueta-0   { background: #0055cc; color: #fff; }
.etiqueta-C   { background: #8ea000; color: #fff; }
.etiqueta-B   { background: #d97000; color: #fff; }

.card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.card-price-currency {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 2px;
}

.card-info {
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  transition: gap var(--tr), color var(--tr);
}

.car-card.card-visible:hover .card-link {
  gap: 0.6rem;
  color: var(--accent);
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.3s ease;
}

.modal-overlay.active {
  background: rgba(10, 10, 10, 0.88);
  pointer-events: all;
}

.modal-panel {
  background: var(--bg-card);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: var(--shadow-modal);
}

.modal-overlay.active .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr), color var(--tr);
}

.modal-close:hover {
  background: var(--text);
  color: var(--bg-card);
}

.modal-gallery {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #eceae7;
}

.modal-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-main-image .car-placeholder { height: 100%; }

.modal-thumbs {
  display: flex;
  gap: 0.5rem;
}

.modal-thumb {
  flex: 1;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #eceae7;
  transition: border-color 0.2s ease;
}

.modal-thumb.active,
.modal-thumb:hover {
  border-color: var(--text);
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 2rem 2rem 2rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-header-info {
  margin-bottom: 1rem;
  padding-right: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.modal-header-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.modal-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  display: block;
}

.modal-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 1rem 0 1.25rem;
}

.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.spec-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
}

.spec-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.spec-value {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.modal-note {
  text-align: center;
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* === FOOTER === */
.footer {
  background: var(--bg-dark);
  padding: 4rem 5% 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-logo {
  height: 38px;
  object-fit: contain;
  width: fit-content;
  filter: invert(1);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  transition: color var(--tr);
}

.footer-links a:hover { color: #fff; }

.footer-contact {
  padding-top: 0.2rem;
}

.footer-contact p {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  margin-bottom: 0.45rem;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.15);
}

/* === FLOATING WHATSAPP === */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.38);
  transition: transform var(--tr), box-shadow var(--tr);
}

.wa-float svg { width: 24px; height: 24px; }

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* === KEYFRAMES === */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0.1); }
  30%  { opacity: 1; }
  65%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); }
}

/* === RESPONSIVE === */

/* ── Tablet landscape (≤ 1024px) ── */
@media (max-width: 1024px) {
  .hero-video { object-position: 60% center; }

  .trust-bar__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .modal-panel {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .modal-info        { padding: 0 1.75rem 2rem; }
  .modal-header-info { padding-right: 0; }
}

/* ── Tablet portrait (≤ 768px) ── */
@media (max-width: 768px) {
  .catalog-section { padding: 4.5rem 5%; }
  .how-it-works    { padding: 4.5rem 5%; }

  /* let auto-fill handle the grid — avoid forcing 1-col too early */
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-panel { max-width: 460px; }
}

/* ── Large mobile (≤ 600px) ── */
@media (max-width: 600px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

@keyframes videoPan {
  from { object-position: 70% center; }
  to   { object-position: 25% center; }
}

/* ── Mobile (≤ 540px) ── */
@media (max-width: 540px) {
  /* Pan from right headlight (logo visible) to left over the clip duration */
  .hero-video {
    object-position: 70% center;
    animation: videoPan 10s linear forwards;
  }

  /* Hero */
  .hero-inner {
    left: 0;
    right: 0;
    padding: 0 6% 3.5rem;
    align-items: center;
    text-align: center;
  }

  .hero-sub br { display: none; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
  }

  /* Trust bar */
  .trust-bar__inner { grid-template-columns: 1fr; }
  .trust-item { justify-content: center; text-align: center; flex-direction: column; align-items: center; }

  /* Sections */
  .catalog-section { padding: 3.5rem 4%; }
  .how-it-works    { padding: 3.5rem 4%; }
  .catalog-grid    { max-width: 100%; }

  /* Steps */
  .step      { gap: 1.25rem; }
  .step-number {
    font-size: 2.2rem;
    width: 48px;
  }

  /* Modal */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-panel {
    border-radius: 20px 20px 0 0;
    max-width: 100%;
    max-height: 92vh;
  }
  .modal-gallery { padding: 1.1rem 1.1rem 0.5rem; }
  .modal-info    { padding: 0 1.1rem 1.5rem; }
  .modal-specs   { grid-template-columns: 1fr 1fr; }

  /* Cards */
  .card-info     { flex-wrap: wrap; gap: 0.3rem; }
  .card-meta     { flex: 1 1 100%; }
  .card-link     { margin-left: auto; }

  /* Float */
  .wa-float { bottom: 1.25rem; right: 1.25rem; }
}
