/* ════════════════════════════════════════════════════
   LANDING — estilo courier internacional
   (Requiere main.css: tokens, botones, forms, tracker,
    badges y panel de resultados de tracking viven ahí.)
   ════════════════════════════════════════════════════ */

/* Degradados de apoyo derivados de los tokens configurables */
:root {
  --grad-brand: linear-gradient(120deg, var(--accent) 0%, var(--purple) 55%, var(--teal) 100%);
  --grad-soft:  linear-gradient(135deg, rgba(var(--accent-rgb),.10), rgba(124,58,237,.08) 60%, rgba(13,148,136,.08));
}

/* ════════ NAV ════════ */
.l-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .25s, box-shadow .25s;
}
.l-nav.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.06); }
[data-theme="dark"] .l-nav { background: rgba(12,12,20,0.82); }
.l-nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.l-logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; }
.l-logo img { height: 38px; width: auto; }
.l-logo .logo-icon {
  width: 40px; height: 40px; border-radius: 12px; background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px;
  box-shadow: 0 6px 16px rgba(var(--accent-rgb),.35);
}
.l-logo .logo-name strong { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.l-nav-right { display: flex; align-items: center; gap: 10px; }
.l-nav-links { display: flex; align-items: center; gap: 2px; }
.l-nav-link { padding: 8px 14px; border-radius: var(--r-sm); font-size: 14px; font-weight: 500; color: var(--fg-2); cursor: pointer; transition: all .16s; }
.l-nav-link:hover { color: var(--accent); background: rgba(var(--accent-rgb),.08); }
@media (max-width:820px) { .l-nav-links { display: none; } }
@media (max-width:520px) { .l-nav-right .btn-outline { display: none; } }

/* ════════ HERO ════════ */
.l-hero {
  position: relative; overflow: hidden;
  padding: 72px 24px 64px;
  background: var(--grad-soft);
}
.l-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.l-hero-bg::before {
  content: ''; position: absolute; top: -25%; right: -12%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.18) 0%, transparent 70%);
}
.l-hero-bg::after {
  content: ''; position: absolute; bottom: -20%; left: -8%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,.14) 0%, transparent 70%);
}
.l-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 75% at 55% 0%, black 25%, transparent 100%);
  opacity: .5;
}
.l-hero-inner {
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 440px; gap: 56px; align-items: center;
  position: relative;
}
.l-hero-left { display: flex; flex-direction: column; gap: 22px; }
.l-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent); background: rgba(var(--accent-rgb),.10);
  border: 1px solid rgba(var(--accent-rgb),.22);
  padding: 7px 15px; border-radius: 20px; width: fit-content;
}
.l-hero-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800; line-height: 1.08; letter-spacing: -.03em;
}
.l-hero-title .hl {
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.l-hero-sub { font-size: 17px; color: var(--fg-2); line-height: 1.7; max-width: 500px; }
.l-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.l-hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 4px; flex-wrap: wrap; }
.l-hero-trust .avatars { display: flex; }
.l-hero-trust .avatars span {
  width: 34px; height: 34px; border-radius: 50%; margin-left: -10px;
  background: var(--grad-brand); border: 2px solid var(--bg-card);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 700;
}
.l-hero-trust .avatars span:first-child { margin-left: 0; }
.l-hero-trust small { font-size: 13px; color: var(--fg-2); }
.l-hero-trust small strong { color: var(--fg); }

/* Widget de rastreo */
.l-track-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: 0 24px 64px rgba(0,0,0,0.16);
  overflow: hidden; position: relative;
}
.l-track-widget::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-brand);
}
.l-track-widget-head {
  padding: 22px 22px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.l-track-widget-head i { font-size: 22px; color: var(--accent); }
.l-track-widget-head strong { font-size: 16px; font-weight: 700; }
.l-track-widget-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.l-search-tabs { display: flex; gap: 6px; }
.l-search-tab {
  flex: 1; padding: 8px 6px; border-radius: var(--r-sm); font-size: 12px; font-weight: 600;
  border: 1.5px solid var(--border-2); background: transparent; cursor: pointer;
  color: var(--fg-2); display: flex; align-items: center; justify-content: center; gap: 5px;
  font-family: var(--font); transition: all .16s;
}
.l-search-tab:hover { border-color: var(--accent); color: var(--accent); }
.l-search-tab.active { background: rgba(var(--accent-rgb),.1); border-color: var(--accent); color: var(--accent); }
.l-track-result { border-top: 1px solid var(--border); padding-top: 14px; }

/* ════════ MARQUEE DE TIENDAS ════════ */
.l-stores { padding: 34px 0; border-bottom: 1px solid var(--border); background: var(--bg-card); overflow: hidden; }
.l-stores-label { text-align: center; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--fg-3); margin-bottom: 22px; }
.l-marquee { display: flex; width: max-content; animation: marquee 34s linear infinite; gap: 14px; }
.l-marquee:hover { animation-play-state: paused; }
.l-store-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--border-2); background: var(--bg);
  font-size: 15px; font-weight: 700; color: var(--fg-2); white-space: nowrap;
}
.l-store-chip i { color: var(--accent); font-size: 17px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════ STATS ════════ */
.l-stats-band { border-bottom: 1px solid var(--border); background: var(--bg-card); }
.l-stats { max-width: 1180px; margin: 0 auto; display: flex; }
.l-stat { flex: 1; text-align: center; padding: 30px 16px; border-right: 1px solid var(--border); }
.l-stat:last-child { border-right: none; }
.l-stat-num { font-size: 30px; font-weight: 800; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.l-stat-lbl { font-size: 13px; color: var(--fg-2); margin-top: 2px; }

/* ════════ SECTIONS BASE ════════ */
.l-section { padding: 96px 24px; }
.l-section-inner { max-width: 1180px; margin: 0 auto; }
.l-section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.l-section-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); background: rgba(var(--accent-rgb),.08); border: 1px solid rgba(var(--accent-rgb),.2); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.l-section-title { font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; letter-spacing: -.025em; margin-bottom: 14px; line-height: 1.15; }
.l-section-sub { font-size: 16px; color: var(--fg-2); line-height: 1.7; }

/* ════════ FEATURES (dinámico) ════════ */
.l-features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.l-feature {
  padding: 30px 24px; border-radius: var(--r-lg);
  border: 1px solid var(--border); background: var(--bg-card);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.l-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(var(--accent-rgb),.35); }
.l-feature-icon {
  width: 52px; height: 52px; border-radius: 15px;
  background: rgba(var(--accent-rgb),.1); border: 1px solid rgba(var(--accent-rgb),.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--accent); margin-bottom: 18px;
}
.l-feature h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.l-feature p { font-size: 14px; color: var(--fg-2); line-height: 1.65; }

/* ════════ SERVICIOS (estático) ════════ */
.l-services { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.l-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.l-service {
  position: relative; padding: 28px 24px; border-radius: var(--r-lg);
  border: 1px solid var(--border); background: var(--bg);
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.l-service::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--grad-brand); transform: scaleY(0); transform-origin: top; transition: transform .25s;
}
.l-service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.l-service:hover::after { transform: scaleY(1); }
.l-service-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; background: var(--grad-brand); margin-bottom: 16px; }
.l-service h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.l-service p { font-size: 14px; color: var(--fg-2); line-height: 1.65; }

/* ════════ POR QUÉ (barras) ════════ */
.l-why-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.l-why-visual {
  border-radius: var(--r-xl); padding: 44px; background: var(--grad-brand); color: #fff;
  position: relative; overflow: hidden; box-shadow: 0 24px 60px rgba(var(--accent-rgb),.32);
}
.l-why-visual::before { content: ''; position: absolute; top: -40%; right: -20%; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.12); }
.l-why-visual .m-tag { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
.l-why-visual h3 { font-size: 22px; font-weight: 800; margin: 6px 0 12px; }
.l-why-visual p { font-size: 15px; line-height: 1.65; opacity: .92; }
.l-why-visual hr { border: none; border-top: 1px solid rgba(255,255,255,.22); margin: 24px 0; }
.l-bars { display: flex; flex-direction: column; gap: 26px; }
.l-bar-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.l-bar-head strong { font-size: 15px; font-weight: 700; }
.l-bar-head span { font-size: 14px; font-weight: 700; color: var(--accent); }
.l-bar-desc { font-size: 13px; color: var(--fg-2); margin-bottom: 10px; line-height: 1.55; }
.l-bar-track { height: 9px; border-radius: 999px; background: var(--bg-alt); overflow: hidden; }
.l-bar-fill { height: 100%; border-radius: 999px; background: var(--grad-brand); width: 0; transition: width 1.1s cubic-bezier(.22,1,.36,1); }
.l-bars.in-view .l-bar-fill { width: var(--pct); }

/* ════════ PROCESO (dinámico) ════════ */
.l-process { padding: 88px 24px; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.l-process-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.l-process-steps { display: flex; gap: 0; position: relative; margin-top: 52px; }
.l-process-steps::before {
  content: ''; position: absolute; top: 25px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--teal), transparent);
  opacity: .4;
}
.l-pstep { flex: 1; text-align: center; padding: 0 10px; position: relative; }
.l-pstep-num {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px;
  border: 2px solid var(--border-2); background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--fg-2); transition: all .25s; position: relative; z-index: 1;
}
.l-pstep.hl .l-pstep-num { background: var(--grad-brand); border-color: transparent; color: #fff; box-shadow: 0 6px 18px rgba(var(--accent-rgb),.4); }
.l-pstep strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.l-pstep span { font-size: 12px; color: var(--fg-3); }

/* ════════ ENVÍOS (dinámico) ════════ */
.l-ship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.l-ship-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); background: var(--bg-card); transition: transform .2s, box-shadow .2s; }
.l-ship-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.l-ship-card-head { padding: 30px 28px; display: flex; align-items: center; gap: 16px; }
.l-ship-card-head.air { background: linear-gradient(135deg, rgba(var(--accent-rgb),.1), rgba(124,58,237,.1)); border-bottom: 1px solid rgba(var(--accent-rgb),.15); }
.l-ship-card-head.sea { background: linear-gradient(135deg, rgba(13,148,136,.1), rgba(var(--accent-rgb),.08)); border-bottom: 1px solid rgba(13,148,136,.15); }
.l-ship-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.l-ship-icon.air { background: rgba(var(--accent-rgb),.14); color: var(--accent); }
.l-ship-icon.sea { background: rgba(13,148,136,.14); color: var(--teal); }
.l-ship-card-head h3 { font-size: 19px; font-weight: 700; }
.l-ship-card-head .rate { font-size: 23px; font-weight: 800; color: var(--accent); }
.l-ship-card-body { padding: 24px 28px; }
.l-ship-card-body ul { list-style: none; padding: 0; }
.l-ship-card-body li { font-size: 14px; color: var(--fg-2); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.l-ship-card-body li i { color: var(--green); font-size: 17px; flex-shrink: 0; }

/* ════════ RATES (dinámico, opcional) ════════ */
.l-rates { background: var(--grad-brand); padding: 68px 24px; text-align: center; }
.l-rates-inner { max-width: 700px; margin: 0 auto; }
.l-rates h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.l-rates p { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 38px; }
.l-rates-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.l-rate-card { background: rgba(255,255,255,.13); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.22); border-radius: var(--r-lg); padding: 26px; text-align: center; }
.l-rate-card .r-icon { font-size: 34px; color: rgba(255,255,255,.85); margin-bottom: 10px; }
.l-rate-card .r-type { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .06em; }
.l-rate-card .r-price { font-size: 30px; font-weight: 800; color: #fff; margin: 6px 0; }
.l-rates-note { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 20px; }

/* ════════ TESTIMONIOS (estático) ════════ */
.l-testi { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.l-testi-track {
  display: flex; gap: 22px; overflow-x: auto; padding: 8px 4px 20px; margin-top: 8px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.l-testi-track::-webkit-scrollbar { display: none; }
.l-testi-card {
  flex: 0 0 340px; scroll-snap-align: start;
  padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--bg);
}
.l-testi-stars { display: flex; gap: 3px; color: var(--amber); font-size: 17px; margin-bottom: 14px; }
.l-testi-text { font-size: 15px; color: var(--fg); line-height: 1.7; margin-bottom: 18px; }
.l-testi-who { display: flex; align-items: center; gap: 12px; }
.l-testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.l-testi-name { font-size: 14px; font-weight: 700; }
.l-testi-role { font-size: 12px; color: var(--fg-3); }

/* ════════ FAQ (estático, <details>) ════════ */
.l-faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.l-faq-item { border: 1px solid var(--border); border-radius: var(--r); background: var(--bg-card); overflow: hidden; transition: border-color .18s; }
.l-faq-item[open] { border-color: rgba(var(--accent-rgb),.4); }
.l-faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-size: 15px; font-weight: 600; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.l-faq-item summary::-webkit-details-marker { display: none; }
.l-faq-item summary .chev { color: var(--accent); font-size: 20px; transition: transform .2s; flex-shrink: 0; }
.l-faq-item[open] summary .chev { transform: rotate(180deg); }
.l-faq-item .l-faq-body { padding: 0 22px 20px; font-size: 14px; color: var(--fg-2); line-height: 1.7; }

/* ════════ CTA ════════ */
.l-cta { padding: 96px 24px; }
.l-cta-inner { max-width: 900px; margin: 0 auto; text-align: center; padding: 56px 40px; border-radius: var(--r-xl); background: var(--grad-brand); color: #fff; position: relative; overflow: hidden; box-shadow: 0 24px 64px rgba(var(--accent-rgb),.32); }
.l-cta-inner::before { content: ''; position: absolute; top: -50%; left: -10%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.1); }
.l-cta .l-section-tag { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.28); color: #fff; position: relative; }
.l-cta h2 { font-size: clamp(26px,3.2vw,40px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; position: relative; }
.l-cta p { font-size: 16px; color: rgba(255,255,255,.9); margin-bottom: 30px; line-height: 1.7; position: relative; }
.l-cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }
.l-cta .btn-primary { background: #fff; color: var(--accent); border-color: #fff; }
.l-cta .btn-primary:hover { background: rgba(255,255,255,.9); border-color: rgba(255,255,255,.9); }
.l-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.l-cta .btn-outline:hover { background: rgba(255,255,255,.14); }
.l-social { display: flex; justify-content: center; gap: 10px; margin-top: 26px; position: relative; }
.l-social a { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 19px; transition: all .16s; }
.l-social a:hover { background: #fff; border-color: #fff; color: var(--accent); }

/* ════════ CONTACTO ════════ */
.l-contact { background: var(--bg-card); border-top: 1px solid var(--border); padding: 72px 24px; }
.l-contact-inner { max-width: 1180px; margin: 0 auto; }
.l-contact-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.l-contact-top .l-logo { font-size: 22px; }
.l-contact-items { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.l-contact-item { display: flex; align-items: center; gap: 14px; padding: 20px 22px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--bg); font-size: 15px; color: var(--fg); font-weight: 600; transition: transform .18s, box-shadow .18s; }
.l-contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.l-contact-item i { font-size: 24px; color: var(--accent); flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: rgba(var(--accent-rgb),.1); display: flex; align-items: center; justify-content: center; }

/* ════════ FOOTER ════════ */
.l-footer { padding: 26px 24px; border-top: 1px solid var(--border); text-align: center; font-size: 13px; color: var(--fg-3); }

/* ════════ PANEL DE RESULTADOS (usado por el JS de tracking) ════════ */
.res-order-head { display: flex; align-items: flex-start; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.res-thumb { width: 60px; height: 60px; object-fit: cover; border-radius: var(--r-sm); border: 1px solid var(--border); flex-shrink: 0; }
.res-thumb-ph { width: 60px; height: 60px; border-radius: var(--r-sm); border: 1px dashed var(--border-2); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--fg-3); flex-shrink: 0; background: var(--bg-alt); }
.res-num { font-family: var(--font-mono); font-size: 16px; font-weight: 700; }
.res-name { font-size: 14px; color: var(--fg-2); margin-top: 2px; }
.res-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; align-items: center; }
.res-weight { font-size: 12px; color: var(--fg-3); display: flex; align-items: center; gap: 4px; }
.res-updated { font-size: 12px; color: var(--fg-3); text-align: right; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.multi-order-list { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; }
.multi-order-item { padding: 12px; border-radius: var(--r-sm); border: 1px solid var(--border); cursor: pointer; transition: all .16s; display: flex; gap: 12px; align-items: center; }
.multi-order-item:hover { background: var(--bg-alt); border-color: var(--border-2); }
.multi-order-num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; }
.order-thumb { width: 40px; height: 40px; object-fit: cover; border-radius: var(--r-sm); border: 1px solid var(--border); flex-shrink: 0; }
.order-thumb-ph { width: 40px; height: 40px; border-radius: var(--r-sm); border: 1px dashed var(--border-2); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--fg-3); flex-shrink: 0; background: var(--bg-alt); }

/* ════════ REVEAL AL SCROLL ════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 980px) {
  .l-hero-inner { grid-template-columns: 1fr; }
  .l-track-widget { max-width: 480px; }
  .l-features-grid { grid-template-columns: repeat(2,1fr); }
  .l-services-grid { grid-template-columns: repeat(2,1fr); }
  .l-why-inner { grid-template-columns: 1fr; gap: 40px; }
  .l-ship-grid { grid-template-columns: 1fr; }
  .l-contact-items { grid-template-columns: 1fr; }
  .l-process-steps { flex-direction: column; gap: 26px; }
  .l-process-steps::before { display: none; }
  .l-pstep { display: flex; align-items: center; gap: 16px; text-align: left; }
  .l-pstep-num { margin: 0; flex-shrink: 0; }
}
@media (max-width: 600px) {
  .l-section { padding: 64px 20px; }
  .l-features-grid, .l-services-grid { grid-template-columns: 1fr; }
  .l-rates-cards { grid-template-columns: 1fr; }
  .l-stats { flex-wrap: wrap; }
  .l-stat { min-width: 50%; border-bottom: 1px solid var(--border); }
  .l-testi-card { flex-basis: 82vw; }
  .l-cta-inner { padding: 40px 24px; }
}

/* ════════ MOVIMIENTO REDUCIDO ════════ */
@media (prefers-reduced-motion: reduce) {
  .l-marquee { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .l-bar-fill { transition: none; }
  * { scroll-behavior: auto !important; }
}