/* KLK Envíos — marca negro / oro / plata */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --black: #070707;
  --ink: #0d0d0d;
  --panel: #121212;
  --panel-2: #1a1a1a;
  --line: rgba(212, 175, 55, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f3f4f6;
  --text-soft: #c7cbd1;
  --muted: #9aa0a8;
  --gold: #d4af37;
  --gold-bright: #f0d060;
  --gold-deep: #a8841f;
  --silver: #cfd3d8;
  --ok: #22c55e;
  --danger: #ef4444;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1140px;
  --header-h: 78px;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gold-grad: linear-gradient(135deg, #f0d060 0%, #d4af37 45%, #a8841f 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08), 0 8px 22px rgba(0,0,0,.45);
  background: #000;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.nav a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.94rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
  outline: none;
}

.nav-cta { margin-left: 0.35rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.88rem 1.4rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.45);
  outline-offset: 2px;
}

.btn-accent {
  background: var(--gold-grad);
  color: #111;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

.btn-accent:hover { filter: brightness(1.05); }

.btn-primary {
  background: linear-gradient(135deg, #2a2a2a, #111);
  color: var(--gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.22);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: ken 18s var(--ease) infinite alternate;
}

@keyframes ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.78) 42%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.72) 100%),
    radial-gradient(circle at 78% 30%, rgba(212,175,55,0.22), transparent 34%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  padding: 3.2rem 0 4rem;
  align-items: center;
}

.hero-copy { animation: rise 0.8s var(--ease) both; }

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

.hero-brand {
  width: min(220px, 48vw);
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.55));
  animation: rise 0.9s var(--ease) both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  font-weight: 800;
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.track-card {
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: rise 0.95s var(--ease) 0.1s both;
}

.track-card h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}

.track-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.track-row {
  display: flex;
  gap: 0.55rem;
}

.track-row input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.9rem 1.1rem;
  background: #0b0b0b;
  color: var(--text);
}

.track-row input:focus {
  outline: 3px solid rgba(212, 175, 55, 0.25);
  border-color: var(--gold);
}

.track-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}

.hero-stats div span {
  font-size: 0.85rem;
  color: var(--muted);
}

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

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head .gold-line {
  width: 56px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold-grad);
  margin-bottom: 0.9rem;
}

.ecosystem {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.88)),
    url('/assets/img/servicios-banner.web.jpg') center/cover no-repeat;
  position: relative;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.eco-item {
  padding: 1.35rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(8px);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.eco-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}

.eco-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-bright);
  margin-bottom: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.eco-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--gold-bright);
}

.eco-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.how {
  background:
    radial-gradient(circle at 12% 20%, rgba(212,175,55,0.1), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(212,175,55,0.06), transparent 30%),
    var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line-soft);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #111;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* Quote */
.quote {
  background: linear-gradient(180deg, #0d0d0d, #090909);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.6rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(160deg, rgba(0,0,0,0.72), rgba(0,0,0,0.55)),
    url('/assets/img/cta-banner.web.jpg') center/cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.quote-intro h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--gold-bright);
}

.quote-intro p {
  margin: 0 0 1.2rem;
  color: rgba(255,255,255,0.86);
}

.quote-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.quote-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.quote-list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--gold-bright);
}

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.4rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--silver);
}

.field .hint {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  background: #0b0b0b;
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.form-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.alert {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.alert-ok {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.alert-error {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.cta-band { padding: 0 0 4.5rem; }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 1.7rem;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(115deg, rgba(0,0,0,0.78), rgba(0,0,0,0.45)),
    url('/assets/img/cta-banner.web.jpg') center/cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-inner::after {
  content: '';
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(212,175,55,0.2), transparent 60%);
  pointer-events: none;
}

.cta-inner h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}

.cta-inner p {
  margin: 0;
  color: rgba(255,255,255,0.85);
}

/* Footer */
.site-footer {
  background: #050505;
  color: rgba(255,255,255,0.78);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 0.45rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  margin-bottom: 0.8rem;
  object-fit: cover;
  background: #000;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--gold-grad);
  color: #111;
  border-color: transparent;
}

.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.45), 0 0 0 3px rgba(212, 175, 55, 0.25);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.55), 0 0 0 4px rgba(212, 175, 55, 0.35);
}

.wa-float:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.55);
  outline-offset: 3px;
}

.field .hint {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* Admin (light-enough on dark shell) */
.admin-body { background: #0e0e0e; }
.admin-shell { min-height: 100svh; display: grid; grid-template-columns: 240px 1fr; }
.admin-side {
  background: #050505;
  color: #fff;
  padding: 1.4rem 1rem;
  position: sticky;
  top: 0;
  height: 100svh;
  border-right: 1px solid var(--line);
}

.admin-side nav { display: grid; gap: 0.3rem; margin-top: 1.5rem; }
.admin-side a {
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}
.admin-side a:hover,
.admin-side a.active {
  background: rgba(212,175,55,0.1);
  color: var(--gold-bright);
}

.admin-main { padding: 1.5rem; }
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.admin-top h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-bright);
}
.stat span { color: var(--muted); font-size: 0.88rem; font-weight: 600; }

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line-soft);
  background: #101010;
}

.filters input,
.filters select {
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  background: #0b0b0b;
  color: var(--text);
  min-width: 160px;
}

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th, td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
  vertical-align: top;
}

th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: #101010;
}

.badge {
  display: inline-flex;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(212,175,55,0.12);
  color: var(--gold-bright);
}

.badge-nueva { background: rgba(240,208,96,0.15); color: #f0d060; }
.badge-contactado { background: rgba(96,165,250,0.15); color: #93c5fd; }
.badge-cotizado { background: rgba(167,139,250,0.15); color: #c4b5fd; }
.badge-en-seguimiento { background: rgba(251,146,60,0.15); color: #fdba74; }
.badge-aceptado { background: rgba(34,197,94,0.15); color: #86efac; }
.badge-no-aceptado { background: rgba(239,68,68,0.15); color: #fca5a5; }
.badge-envio-realizado { background: rgba(16,185,129,0.15); color: #6ee7b7; }

.login-wrap {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.14), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,0.08), transparent 35%),
    #070707;
}

.login-card {
  width: min(100%, 420px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.detail-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.detail-block h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}

.kv { display: grid; gap: 0.65rem; }
.kv div { display: grid; gap: 0.15rem; }
.kv dt { font-size: 0.75rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.kv dd { margin: 0; font-weight: 600; }

.timeline { display: grid; gap: 0.75rem; }
.timeline-item {
  padding: 0.8rem;
  border-radius: 10px;
  background: #0b0b0b;
  border: 1px solid var(--line-soft);
}
.timeline-item time { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.25rem; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .quote-layout,
  .detail-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .quote-intro { position: static; min-height: 280px; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { position: static; height: auto; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(7,7,7,0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a, .nav .btn { width: 100%; justify-content: center; }
  .nav-cta { margin-left: 0; }
  .track-row { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding: 2.2rem 0 3rem; }
  .brand-text span { display: none; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .brand-logo { width: 46px; height: 46px; }
}
