/* Conlux Rides — design system (lujo: negro, marfil, dorado) */
:root {
  --bg-deep: #050608;
  --bg-card: rgba(18, 16, 14, 0.78);
  --bg-elevated: #0e0c0a;
  --surface-light: #f7f5f0;
  --border: rgba(255, 255, 255, 0.09);
  --border-gold: rgba(201, 169, 98, 0.35);
  --text: #f5f3ee;
  --text-muted: #a8a098;
  --accent: #d4af37;
  --accent-muted: #b8962e;
  --accent-soft: rgba(212, 175, 55, 0.12);
  --accent-glow: rgba(212, 175, 55, 0.28);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --space: clamp(1rem, 4vw, 2.5rem);
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

/* Ambient background */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 169, 98, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(80, 100, 140, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(201, 169, 98, 0.06), transparent),
    var(--bg-deep);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent);
  pointer-events: none;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: #e4c97a;
}

.container {
  width: min(100% - var(--space) * 2, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.site-header.is-scrolled {
  background: rgba(5, 6, 8, 0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border-gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  height: 42px;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
  display: block;
}

/* Logo PNG con transparencia — tamaño un poco mayor para legibilidad */
.site-header .logo-mark {
  height: 48px;
  max-width: min(248px, 56vw);
}

@media (max-width: 480px) {
  .logo img:not(.logo-mark) {
    height: 34px;
    max-width: min(180px, 50vw);
  }

  .site-header .logo-mark {
    height: 40px;
    max-width: min(200px, 52vw);
  }
}

.footer-brand .logo img {
  height: 52px;
  max-width: 240px;
}

.footer-brand .logo-mark {
  height: 60px;
  max-width: min(280px, 70vw);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--text);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
  background: rgba(0, 0, 0, 0.35);
}

.lang-switcher--mobile {
  margin-bottom: 0.5rem;
  align-self: center;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.55rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-muted));
  color: #0a0908;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-muted));
  color: #0a0908 !important;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.875rem;
}

.nav-cta:hover {
  filter: brightness(1.08);
  color: #0a0c10 !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 1.5rem var(--space);
  background: rgba(7, 9, 13, 0.97);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.nav-mobile a {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  text-align: center;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.nav-mobile .nav-cta {
  width: fit-content;
  max-width: calc(100% - 1rem);
  margin-top: 0.35rem;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 0.875rem;
}

.nav-mobile.is-open {
  display: flex;
}

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

  .header-inner .lang-switcher:not(.lang-switcher--mobile) {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  .header-inner {
    gap: 1rem;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 0 2rem;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-muted));
  color: #0a0908;
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.hero-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
}

.hero-card cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-column-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 899px) {
  .hero-media img {
    aspect-ratio: 16 / 10;
    max-height: 320px;
  }
}

.hero-media figcaption {
  padding: 1rem 1.25rem 1.15rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.hero-media figcaption strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.photo-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.85;
}

.showcase-section {
  border-top: 1px solid var(--border);
}

.showcase-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.showcase-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.25s, transform 0.25s;
}

.showcase-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-3px);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.showcase-card .showcase-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.showcase-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.showcase-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.photo-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.5rem;
}

@media (max-width: 800px) {
  .photo-mosaic {
    grid-template-columns: 1fr;
  }
}

.photo-mosaic figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.photo-mosaic img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.reserva-visual {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.reserva-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.page-banner {
  margin: 0 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.page-banner img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  max-height: 280px;
}

@media (max-width: 600px) {
  .page-banner img {
    aspect-ratio: 16 / 10;
    max-height: 200px;
  }
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.section-intro {
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 0 2.5rem;
}

/* Mission */
.mission {
  border-top: 1px solid var(--border);
}

.mission-inner {
  max-width: 720px;
}

.mission-inner p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0;
}

.mission-inner strong {
  color: var(--text);
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Features / services preview */
.features-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-2px);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

/* CTA band */
.cta-band {
  margin: 2rem 0 0;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.12), rgba(20, 24, 32, 0.9));
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-band p {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  text-align: center;
  justify-items: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 920px;
    margin-inline: auto;
    align-items: start;
  }
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-brand p {
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 32ch;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--text);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin: 0 0 1rem;
}

.page-hero .lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 42ch;
  margin: 0 auto;
}

/* Service list (servicios page) */
.service-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-block {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .service-block {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}

.service-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.service-block p {
  margin: 0;
  color: var(--text-muted);
}

/* Form */
.form-section {
  padding: calc(var(--header-h) + 3rem) 0 5rem;
}

.form-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .form-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23d4af37' stroke-width='1.5' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(80, 160, 120, 0.15);
  border: 1px solid rgba(80, 160, 120, 0.4);
  border-radius: 10px;
  color: #9dccb0;
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Previsualizar viaje */
.preview-page {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
}

.preview-intro {
  margin-bottom: 2rem;
}

.container-wide {
  width: min(100% - var(--space) * 2, 1320px);
  margin-inline: auto;
}

.preview-api-missing {
  padding: 1.25rem 1.5rem;
  background: rgba(180, 100, 80, 0.12);
  border: 1px solid rgba(180, 100, 80, 0.4);
  border-radius: var(--radius);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.preview-api-missing code {
  color: var(--accent);
  font-size: 0.88em;
}

.preview-api-missing__lead {
  margin: 0 0 1rem;
}

.preview-api-checklist {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.preview-api-checklist li {
  margin-bottom: 0.65rem;
}

.preview-api-checklist li strong {
  color: var(--text);
}

.no-maps-key .preview-shell {
  display: none;
}

.preview-shell {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .preview-shell {
    grid-template-columns: minmax(300px, 380px) 1fr;
    gap: 1.75rem;
  }
}

.preview-sidebar {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  align-self: start;
}

.preview-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 280px;
  background: var(--bg-elevated);
}

.preview-map {
  width: 100%;
  height: min(70vh, 640px);
  min-height: 420px;
}

@media (max-width: 959px) {
  .preview-map {
    height: 52vh;
    min-height: 300px;
  }
}

.preview-add-stop-wrap {
  margin-bottom: 0.25rem;
}

.preview-add-stop-btn {
  width: 100%;
}

.preview-stop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
}

.preview-stop-toolbar > .form-group {
  flex: 1;
  min-width: 200px;
  margin-bottom: 0;
}

.preview-form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.preview-error {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(200, 80, 80, 0.12);
  border: 1px solid rgba(200, 80, 80, 0.35);
  border-radius: 10px;
  color: #e8a0a0;
  font-size: 0.9rem;
}

.preview-result {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.preview-result-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.preview-stats {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.preview-stats dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
}

.preview-stats dd {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.preview-stats-price dd {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--accent);
}

.preview-traffic-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  line-height: 1.5;
}

.preview-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  line-height: 1.5;
}

.preview-disclaimer code {
  font-size: 0.85em;
  color: var(--accent);
}

.preview-sent {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(80, 140, 100, 0.18);
  border: 1px solid rgba(100, 160, 120, 0.45);
  border-radius: var(--radius);
  color: #b8dcc8;
  font-size: 0.95rem;
  line-height: 1.5;
}
