/* ================================
   Swippe Motors CR - Main Styles
   ================================ */

:root {
  --color-bg: #06111c;
  --color-bg-soft: #0b1b2a;
  --color-bg-card: #10283c;
  --color-white: #ffffff;
  --color-black: #02060a;
  --color-text: #ffffff;
  --color-muted: #aebdcc;
  --color-muted-dark: #4d5d70;
  --color-gold: #d2a24a;
  --color-gold-light: #f0d18a;
  --color-gold-soft: rgba(210, 162, 74, 0.14);
  --color-blue: #1f6fd6;
  --color-red: #e53935;
  --color-light: #f7f3ea;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-section-line-dark: rgba(240, 209, 138, 0.14);
  --color-section-line-light: rgba(12, 23, 36, 0.08);
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 18px 55px rgba(8, 22, 36, 0.1);
  --radius-large: 32px;
  --radius-medium: 22px;
  --radius-small: 14px;
  --container: 1180px;
  --header-height: 82px;
  --font-body:
    "Manrope",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --font-heading:
    "Sora",
    "Manrope",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-dark {
  background-color: var(--color-bg);
  color: var(--color-white);
}

.section-light {
  background-color: var(--color-light);
  color: #0c1724;
}

.section-light p {
  color: var(--color-muted-dark);
}

.section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--container), calc(100% - 40px));
  height: 1px;
  content: "";
  transform: translateX(-50%);
}

.section-dark::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-section-line-dark),
    transparent
  );
}

.section-light::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-section-line-light),
    transparent
  );
}

.contact-section::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-section-line-dark),
    transparent
  );
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  padding: 9px 16px;
  border: 1px solid rgba(210, 162, 74, 0.45);
  border-radius: 999px;
  background: var(--color-gold-soft);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 800;
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

p {
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-light)
  );
  color: #07111d;
  box-shadow: 0 16px 40px rgba(210, 162, 74, 0.24);
}

.btn-outline {
  border-color: rgba(240, 209, 138, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  backdrop-filter: blur(12px);
}

.btn-dark {
  background: linear-gradient(135deg, #0b1724, #14283c);
  color: var(--color-white);
}

.full-btn {
  width: 100%;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(3, 12, 20, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #ffffff, #d7dde4 55%, #a8b3bf);
  box-shadow:
    inset 0 0 0 3px rgba(6, 17, 28, 0.88),
    0 10px 26px rgba(0, 0, 0, 0.3);
  color: #0b1520;
  font-weight: 950;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  background: #ffffff;
  padding: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(6, 17, 28, 0.12),
    0 10px 26px rgba(0, 0, 0, 0.28);
}

.brand-mark::before {
  position: absolute;
  top: 10px;
  left: 8px;
  width: 34px;
  height: 14px;
  border: 3px solid #111b24;
  border-bottom: none;
  border-radius: 50% 50% 0 0;
  content: "";
  transform: skewX(-14deg);
}

.brand-mark span {
  transform: translateY(8px);
  font-size: 14px;
  letter-spacing: -0.08em;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 15px;
  line-height: 1;
}

.brand-text small {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-white);
  border-radius: 999px;
  transition: 0.2s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 75% 18%,
      rgba(247, 185, 22, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 20% 25%,
      rgba(31, 111, 214, 0.14),
      transparent 28%
    ),
    linear-gradient(135deg, rgba(2, 6, 10, 0.55), rgba(6, 17, 28, 0.97)),
    url("../assets/img/hero/hero-car.jpg") center/cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 54px;
}

.hero-content h1 span {
  color: var(--color-gold);
}

.hero-description {
  max-width: 660px;
  margin-top: 24px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.hero-features article {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.hero-features span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: 18px;
  font-weight: 950;
}

.hero-features p {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.hero-card {
  display: grid;
  gap: 18px;
}

.hero-car-card,
.trust-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-large);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-car-card {
  padding: 18px;
}

.hero-car-image {
  min-height: 300px;
  border-radius: 26px;
  background:
    linear-gradient(to top, rgba(2, 6, 10, 0.75), transparent 50%),
    url("https://images.unsplash.com/photo-1555215695-3004980ad54e?auto=format&fit=crop&w=1100&q=80")
      center/cover;
}

.hero-card-info {
  padding: 22px 8px 6px;
}

.hero-card-info p {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card-info h2 {
  margin: 8px 0;
  font-size: 30px;
}

.hero-card-info span {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 650;
}

.trust-card {
  padding: 24px;
  background: #ffffff;
  color: #0a1724;
}

.trust-card p {
  margin-top: 8px;
  color: #4c5a68;
  font-size: 14px;
}

/* Stats */

.stats-section {
  position: relative;
  z-index: 5;
  margin-top: -54px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #0c1724;
  box-shadow: 0 24px 80px rgba(4, 12, 20, 0.2);
}

.stat-card {
  padding: 24px;
  border: 1px solid #edf1f6;
  border-radius: 22px;
  background: #f7f9fc;
}

.stat-card strong {
  display: block;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: #667589;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

/* Layout sections */

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.section-image {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-image {
  background:
    linear-gradient(to top, rgba(2, 6, 10, 0.75), transparent 48%),
    url("https://images.unsplash.com/photo-1609521263047-f8f205293f24?auto=format&fit=crop&w=1200&q=80")
      center/cover;
}

.floating-box {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  color: #0b1724;
}

.floating-box p {
  margin-top: 8px;
  color: #4e5d6d;
  font-size: 14px;
}

.section-content > p:not(.eyebrow) {
  margin-top: 22px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.check-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.06);
}

.check-item > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--color-gold);
  color: #06111c;
  font-weight: 950;
}

.check-item p {
  margin-top: 4px;
  font-size: 14px;
}

/* Cards */

.section-heading {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-inline: auto;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
}

.cards-grid {
  display: grid;
  gap: 22px;
}

.three-columns {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.testimonial-card {
  padding: 30px;
  border: 1px solid #e9eef5;
  border-radius: 28px;
  background: #ffffff;
  color: #0c1724;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover,
.testimonial-card:hover,
.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(8, 22, 36, 0.14);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #f4e7c4;
  font-size: 26px;
}

.service-card p {
  margin-top: 12px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #35465a;
  font-size: 14px;
  line-height: 1.5;
}

.service-card li::before {
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f3e6c0;
  color: #0b1724;
  content: "✓";
  font-size: 12px;
  font-weight: 950;
}

/* Swippe Protect pricing */

.protect-intro {
  max-width: 820px;
  margin: 0 auto 54px;
  display: grid;
  gap: 16px;
  text-align: center;
}

.protect-intro p {
  color: var(--color-muted-dark);
}

.protect-highlight {
  margin-top: 6px;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  border: 1px solid #e9eef5;
  border-radius: 28px;
  background: #ffffff;
  color: #0c1724;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(8, 22, 36, 0.14);
}

.pricing-card.featured {
  border-color: rgba(210, 162, 74, 0.55);
  background: linear-gradient(160deg, rgba(210, 162, 74, 0.12), #ffffff 55%);
}

.pricing-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--color-gold-soft);
  color: #a97a1f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  color: #0c1724;
}

.pricing-sub {
  margin-top: 4px;
  color: #66768a;
  font-size: 14px;
}

.pricing-price {
  display: block;
  margin: 22px 0 4px;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0c1724;
}

.pricing-price span {
  margin-left: 6px;
  color: #66768a;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #35465a;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-card li::before {
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f3e6c0;
  color: #0b1724;
  content: "✓";
  font-size: 12px;
  font-weight: 950;
}

.pricing-note {
  max-width: 820px;
  margin: 30px auto 0;
  color: #66768a;
  font-size: 13px;
  text-align: center;
}

.notice-box {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #ffffff;
  color: #0c1724;
  box-shadow: var(--shadow-card);
}

.notice-box p {
  margin: 0;
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-step {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.process-step::after {
  position: absolute;
  right: -24px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: var(--color-gold-soft);
  content: "";
}

.process-step span {
  display: block;
  margin-bottom: 48px;
  color: var(--color-gold);
  font-size: 32px;
  font-weight: 950;
}

.process-step h3,
.process-step p {
  position: relative;
  z-index: 1;
}

.process-step p {
  margin-top: 10px;
  font-size: 14px;
}

/* Catalog */

.catalog-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.catalog-header div {
  max-width: 720px;
}

.catalog-header p:not(.eyebrow) {
  margin-top: 16px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-btn {
  padding: 11px 16px;
  border: 1px solid #dce3eb;
  border-radius: 999px;
  background: #ffffff;
  color: #26384a;
  font-weight: 850;
  transition: 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: #0b1724;
  background: #0b1724;
  color: #ffffff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vehicle-card {
  border: 1px solid #e8edf4;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  color: #0c1724;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.vehicle-image {
  position: relative;
  height: 230px;
  background-position: center;
  background-size: cover;
}

.vehicle-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 12, 20, 0.72), transparent 55%);
  content: "";
}

.vehicle-image span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-gold);
  color: #07111d;
  font-size: 12px;
  font-weight: 950;
}

.vehicle-1 {
  background-image: url("../assets/img/catalogo/rav4.jpg");
}

.vehicle-2 {
  background-image: url("../assets/img/catalogo/f150.jpg");
}

.vehicle-3 {
  background-image: url("../assets/img/catalogo/bmw-x5.jpg");
}

.vehicle-4 {
  background-image: url("../assets/img/catalogo/civic.jpg");
}

.vehicle-5 {
  background-image: url("../assets/img/catalogo/mercedes-c.jpg");
}

.vehicle-6 {
  background-image: url("../assets/img/catalogo/tucson.jpg");
}

.vehicle-info {
  padding: 22px;
}

.vehicle-info p {
  margin-top: 10px;
}

.vehicle-info div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.vehicle-info small {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f4f8;
  color: #526174;
  font-weight: 800;
}

/* Auction */

.auction-box {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 38px;
  padding: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(247, 185, 22, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #07111d, #0d2437);
  overflow: hidden;
}

.auction-box p:not(.eyebrow) {
  margin-top: 16px;
}

.auction-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(to top, rgba(3, 12, 20, 0.75), transparent 48%),
    url("https://images.unsplash.com/photo-1565043666747-69f6646db940?auto=format&fit=crop&w=1200&q=80")
      center/cover;
  box-shadow: var(--shadow-soft);
}

.auction-card strong,
.auction-card p {
  position: relative;
  z-index: 1;
}

.auction-card strong {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 950;
}

.auction-card p {
  margin-top: 8px;
  font-size: 14px;
}

/* Testimonials */

.testimonial-grid {
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  animation: testimonialFade 0.45s ease both;
}

.testimonial-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 20px;
}

.testimonial-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.testimonial-name {
  display: block;
  color: #0c1724;
  font-size: 18px;
  font-weight: 800;
}

.testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.testimonial-tags span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f3f0e7;
  color: #556475;
  font-size: 12px;
  font-weight: 800;
}

.stars {
  color: var(--color-gold);
  font-size: 18px;
  letter-spacing: 3px;
  white-space: nowrap;
}

.testimonial-card p {
  margin: 0;
}

.testimonial-comment {
  color: #46586b;
  line-height: 1.72;
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: start;
  gap: 44px;
}

.faq-intro {
  margin-top: 16px;
  margin-bottom: 28px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  padding: 20px;
  border: none;
  background: transparent;
  color: #0c1724;
  text-align: left;
  font-size: 15px;
  font-weight: 900;
}

.faq-question strong {
  color: var(--color-gold);
  font-size: 22px;
  line-height: 1;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 20px;
}

.included-card {
  padding: 34px;
  border-radius: 30px;
  background: #0b1724;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.included-card p {
  margin-top: 12px;
  margin-bottom: 24px;
}

.included-card ul {
  display: grid;
  gap: 14px;
  list-style: none;
}

.included-card li {
  display: flex;
  gap: 12px;
  color: #d8e2ec;
  line-height: 1.55;
}

.included-card li::before {
  color: var(--color-gold);
  content: "✓";
  font-weight: 950;
}

/* Contact */

.contact-section {
  background:
    linear-gradient(135deg, rgba(3, 12, 20, 0.9), rgba(6, 17, 28, 0.96)),
    url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 52px;
}

.contact-info,
.quote-form {
  border-radius: 30px;
}

.contact-info {
  padding: 38px;
  border: 1px solid rgba(240, 209, 138, 0.16);
  background: linear-gradient(
    180deg,
    rgba(10, 20, 30, 0.84),
    rgba(20, 32, 44, 0.78)
  );
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.contact-info > p:not(.eyebrow) {
  margin-top: 20px;
}

.contact-methods {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.contact-methods article {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow: inset 0 1px 0 rgba(240, 209, 138, 0.08);
}

.contact-methods span {
  display: block;
  margin-bottom: 7px;
  color: #b9c6d2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 18px;
  line-height: 1.35;
}

.contact-methods strong a {
  color: inherit;
  word-break: break-word;
}

.quote-form {
  padding: 34px;
  background: #ffffff;
  color: #0c1724;
  box-shadow: var(--shadow-soft);
}

.quote-form h3 {
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #304255;
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #dfe6ef;
  border-radius: 16px;
  outline: none;
  background: #f8fafc;
  color: #0c1724;
  font-size: 15px;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-gold);
  background: #ffffff;
}

.quote-form .btn {
  margin-top: 18px;
}

.form-note {
  margin-top: 14px;
  color: #6a7889;
  font-size: 12px;
  line-height: 1.55;
}

/* Footer */

.footer {
  padding: 54px 0 28px;
  background: #030a11;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 34px;
}

.footer p {
  margin-top: 16px;
  font-size: 14px;
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: #aebdcc;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid !important;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  font-weight: 950;
}

.social-icon {
  display: block;
  width: 21px;
  height: 21px;
}

.social-links a:hover {
  background: var(--color-gold);
  color: #07111d !important;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #8090a2;
  font-size: 13px;
}

/* WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32);
  font-size: 28px;
  font-weight: 950;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 55px rgba(37, 211, 102, 0.42);
}

.whatsapp-icon {
  display: block;
  width: 30px;
  height: 30px;
}

/* Utilities */

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

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

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(3, 12, 20, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.2s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split-grid,
  .auction-box,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

  .stats-grid,
  .three-columns,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 76px 0;
  }

  .navbar {
    height: 76px;
  }

  :root {
    --header-height: 76px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-features,
  .stats-grid,
  .three-columns,
  .process-grid,
  .catalog-grid,
  .testimonial-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    margin-top: -30px;
  }

  .catalog-header,
  .footer-bottom,
  .notice-box {
    align-items: start;
    flex-direction: column;
  }

  .catalog-header {
    display: flex;
  }

  .section-image {
    min-height: 420px;
  }

  .auction-box,
  .quote-form,
  .contact-info,
  .included-card {
    padding: 26px;
  }

  .vehicle-image {
    height: 210px;
  }

  .testimonial-header {
    flex-direction: column;
  }

  .testimonial-photo {
    height: 210px;
  }

  .field.full {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Logo real de Swippe Motors CR */
.brand-logo {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  background: #ffffff;
  padding: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(6, 17, 28, 0.12),
    0 10px 26px rgba(0, 0, 0, 0.28);
}

/* Logo dentro del footer */
.footer .brand-logo {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  max-width: 54px !important;
}

/* Ajuste en celular */
@media (max-width: 720px) {
  .brand-logo {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
  }
}
.social-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.social-disabled:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  transform: none !important;
}
