/* =========================
   LORIGO PREMIUM STYLESHEET
   Browser-compatible & Responsive
   ========================= */

/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ROOT */
:root {
  --bg: #07090f;
  --surface: #0d1120;
  --surface2: #111827;
  --border: rgba(255, 255, 255, 0.07);
  --orange: #FFD600;
  --orange2: #FFE033;
  --cyan: #00d4ff;
  --green: #00e87a;
  --white: #f0f4ff;
  --muted: #6b7a99;
  --card: #131c30;
}

/* GLOBAL */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0; /* inset: 0; */
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.45;
}

/* SELECTION */
::selection {
  background: var(--orange);
  color: #000;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--orange), var(--orange2));
  border-radius: 100px;
}

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

/* CURSOR */
#cur {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: width .2s, height .2s, background .2s;
  transition: width .2s, height .2s, background .2s;
}
#cur-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255,214,0,.45);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: width .3s, height .3s, border-color .2s;
  transition: width .3s, height .3s, border-color .2s;
}

/* =====================
   NAVIGATION
   ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(7,9,15,.75);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  -webkit-transition: background .4s;
  transition: background .4s;
  -webkit-animation: slideD .6s ease both;
  animation: slideD .6s ease both;
}
@-webkit-keyframes slideD {
  from { opacity: 0; -webkit-transform: translateY(-100%); transform: translateY(-100%); }
  to   { opacity: 1; -webkit-transform: none; transform: none; }
}
@keyframes slideD {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: none; }
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-lori { color: #fff; }
.logo-go   { color: #FFD600; }

.nav-links {
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .875rem; font-weight: 500; letter-spacing: .05em;
  -webkit-transition: color .2s;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--orange);
  -webkit-transform: scaleX(0); transition: transform .2s;
  transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-app-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #000;
  border: none;
  padding: .55rem 1.3rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem; font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: transform .2s, box-shadow .2s;
  transition: transform .2s, box-shadow .2s;
}
.nav-app-btn:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,214,0,.4);
}

/* HAMBURGER */
.hbg {
  display: none;
  -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hbg span {
  width: 22px; height: 2px;
  background: var(--white);
  -webkit-transition: all .3s; display: block;
  transition: all .3s; display: block;
}
.hbg.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 3rem 4rem;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  -webkit-animation: pulse 6s ease-in-out infinite alternate;
  animation: pulse 6s ease-in-out infinite alternate;
}
.orb-1 { width:500px;height:500px;background:rgba(255,214,0,.12);top:-100px;right:-100px; }
.orb-2 { width:400px;height:400px;background:rgba(0,212,255,.08);bottom:-50px;left:-50px;animation-delay:2s; }
.orb-3 { width:300px;height:300px;background:rgba(0,232,122,.06);top:40%;left:30%;animation-delay:4s; }
@-webkit-keyframes pulse {
  from { -webkit-transform: scale(1); transform: scale(1); }
  to   { -webkit-transform: scale(1.2); transform: scale(1.2); }
}
@keyframes pulse {
  from { transform: scale(1); }
  to   { transform: scale(1.2); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  width: 100%; max-width: 1200px; margin: 0 auto;
}

.hero-badge {
  display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: .5rem;
  background: rgba(255,214,0,.1);
  border: 1px solid rgba(255,214,0,.25);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .8rem; font-weight: 500; color: var(--orange2);
  margin-bottom: 1.5rem;
}
.bdot {
  width: 7px; height: 7px;
  background: var(--green); border-radius: 50%;
  -webkit-animation: blink 1.4s ease-in-out infinite;
  animation: blink 1.4s ease-in-out infinite;
}
@-webkit-keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1; letter-spacing: .02em; margin-bottom: 1.4rem;
}
.h1-grad {
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--orange); /* fallback */
  display: inline-block;
}

.hero-sub {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.7; max-width: 480px; margin-bottom: 2rem;
}
.hero-actions {
  display: -webkit-box; display: -ms-flexbox; display: flex; gap: 1rem; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: 3rem;
}

.btn-main {
  display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #000;
  padding: .8rem 1.8rem; border-radius: 100px;
  font-weight: 700; font-size: .9rem;
  text-decoration: none; border: none; cursor: pointer;
  -webkit-transition: transform .2s, box-shadow .2s;
  transition: transform .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.btn-main:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,214,0,.4);
}

.btn-ghost {
  display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: .5rem;
  background: transparent; color: var(--white);
  padding: .8rem 1.8rem; border-radius: 100px;
  font-weight: 600; font-size: .9rem;
  text-decoration: none;
  border: 1px solid var(--border);
  -webkit-transition: border-color .2s, color .2s;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover {
  border-color: rgba(255,214,0,.5);
  color: var(--orange2);
}

.hero-stats { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 2.5rem; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.hstat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; color: var(--white); line-height: 1;
}
.hstat-l { font-size: .78rem; color: var(--muted); margin-top: .2rem; }

/* PHONE VISUAL */
.hero-visual { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.phone-wrap { position: relative; width: 260px; }
.phone {
  width: 260px;
  background: var(--surface2);
  border-radius: 32px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  position: relative; z-index: 2;
}
.phone-notch {
  width: 80px; height: 20px;
  background: var(--bg);
  border-radius: 0 0 14px 14px;
  margin: 0 auto; position: relative; z-index: 3;
}
.phone-screen { padding: 1rem; }
.phone-hdr {
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  margin-bottom: .8rem;
}
.phone-logo-sm {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--orange);
  display: inline-block;
}
.phone-live { font-size: .65rem; color: var(--green); font-weight: 700; letter-spacing: .08em; }
.phone-map {
  background: rgba(255,214,0,.05);
  border: 1px solid rgba(255,214,0,.12);
  border-radius: 12px; height: 100px;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  position: relative; margin-bottom: .8rem; overflow: hidden;
}
.map-truck { font-size: 2rem; -webkit-animation: truckMove 4s ease-in-out infinite alternate;
  animation: truckMove 4s ease-in-out infinite alternate; }
@-webkit-keyframes truckMove { from{-webkit-transform:translateX(-20px);transform:translateX(-20px)} to{-webkit-transform:translateX(20px);transform:translateX(20px)} }
@keyframes truckMove { from{transform:translateX(-20px)} to{transform:translateX(20px)} }
.map-ping {
  position: absolute; bottom: 14px; right: 24px;
  width: 12px; height: 12px;
  background: var(--orange); border-radius: 50%;
  -webkit-animation: pingAnim 1.5s ease-in-out infinite;
  animation: pingAnim 1.5s ease-in-out infinite;
}
@-webkit-keyframes pingAnim {
  0%   { box-shadow: 0 0 0 0 rgba(255,214,0,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(255,214,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,214,0,0); }
}
@keyframes pingAnim {
  0%   { box-shadow: 0 0 0 0 rgba(255,214,0,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(255,214,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,214,0,0); }
}
.phone-chips { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.chip { font-size: .62rem; font-weight: 600; padding: .28rem .6rem; border-radius: 100px; }
.chip-o { background: rgba(255,214,0,.12); border: 1px solid rgba(255,214,0,.25); color: var(--orange); }
.chip-c { background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.2); color: var(--cyan); }
.chip-g { background: rgba(0,232,122,.1); border: 1px solid rgba(0,232,122,.2); color: var(--green); }
.phone-book {
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  background: rgba(255,255,255,.04);
  border-radius: 10px; padding: .6rem .8rem;
}
.bk-label { font-size: .65rem; color: var(--muted); }
.bk-val { font-size: .78rem; font-weight: 600; color: var(--white); }
.bk-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #000; border: none; border-radius: 8px;
  padding: .4rem .9rem; font-size: .72rem; font-weight: 700;
  cursor: pointer; transition: opacity .2s; -webkit-appearance: none;
}
.bk-btn:hover { opacity: .85; }

/* FLOATING BADGES */
.fbadge {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: .6rem .9rem;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 500;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  white-space: nowrap;
}
.fb1 { top: -18px; left: -60px; -webkit-animation: fbFloat 3s ease-in-out infinite alternate;
  animation: fbFloat 3s ease-in-out infinite alternate; }
.fb2 { top: 30px; right: -60px; -webkit-animation: fbFloat 3s ease-in-out infinite alternate;
  animation: fbFloat 3s ease-in-out infinite alternate; animation-delay: 1s; }
.fb3 { bottom: 40px; left: -50px; -webkit-animation: fbFloat 3s ease-in-out infinite alternate;
  animation: fbFloat 3s ease-in-out infinite alternate; animation-delay: 2s; }
@-webkit-keyframes fbFloat { from{-webkit-transform:translateY(0);transform:translateY(0)} to{-webkit-transform:translateY(-8px);transform:translateY(-8px)} }
@keyframes fbFloat { from{transform:translateY(0)} to{transform:translateY(-8px)} }

/* =====================
   STATS STRIP
   ===================== */
.stats-strip {
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  gap: 4rem; -ms-flex-wrap: wrap; flex-wrap: wrap;
  padding: 3rem; position: relative; z-index: 2;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sstat-n {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--orange);
  display: inline-block; line-height: 1;
}
.sstat-l { font-size: .78rem; color: var(--muted); margin-top: .3rem; }

/* =====================
   SECTIONS SHARED
   ===================== */
.sec { padding: 6rem 3rem; }
.sec-wrap { max-width: 1200px; margin: 0 auto; }
.sec-lbl {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.sec-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1.1; margin-bottom: 1.2rem;
}
.sec-h em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--orange);
  display: inline-block;
}
.sec-p { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 520px; margin-bottom: 3rem; }

/* =====================
   SERVICE GRID
   ===================== */
.srv-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.srv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  -webkit-transition: transform .3s, border-color .3s;
  transition: transform .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.srv-card::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; /* inset: 0; */
  background: var(--c, transparent); pointer-events: none;
}
.srv-card:hover { transform: translateY(-6px); border-color: rgba(255,214,0,.3); }
.srv-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--border); line-height: 1; margin-bottom: .8rem; }
.srv-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.si-o { background: rgba(255,214,0,.12); color: var(--orange); }
.si-c { background: rgba(0,212,255,.1); color: var(--cyan); }
.si-g { background: rgba(0,232,122,.1); color: var(--green); }
.srv-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; color: var(--white); }
.srv-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; }
.srv-lnk { font-size: .85rem; font-weight: 600; color: var(--orange); text-decoration: none; transition: color .2s; }
.srv-lnk:hover { color: var(--orange2); }

/* =====================
   HOW IT WORKS
   ===================== */
.how {
  background: var(--surface);
  padding: 6rem 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner { max-width: 700px; margin: 0 auto; }
.steps { margin-top: 2rem; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 1.5rem; }
.step-row { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 1.4rem; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; }
.step-circ {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: #000;
}
.step-b h4 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; color: var(--white); }
.step-b p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* =====================
   DOWNLOAD
   ===================== */
.dl-sec {
  padding: 7rem 3rem; text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,214,0,.08), transparent);
}
.dl-inner { max-width: 600px; margin: 0 auto; }
.dl-sec h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem, 4vw, 3.4rem); margin-bottom: 1rem; }
.dl-sec h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--orange);
  display: inline-block;
}
.dl-sec p { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.app-btns { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 1rem; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.app-btn {
  display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: .8rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: .9rem 1.6rem;
  text-decoration: none; color: var(--white);
  -webkit-transition: border-color .2s, transform .2s;
  transition: border-color .2s, transform .2s;
}
.app-btn:hover { border-color: rgba(255,214,0,.4); transform: translateY(-2px); }
.app-btn-icon { font-size: 1.6rem; }
.abt-sm { display: block; font-size: .65rem; color: var(--muted); }
.abt-big { display: block; font-size: 1rem; font-weight: 700; }

/* =====================
   TESTIMONIALS
   ===================== */
.testi-sec { padding: 6rem 3rem; overflow: hidden; }
.testi-track-wrap { overflow: hidden; position: relative; }
.testi-track-wrap::before,
.testi-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.testi-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.testi-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.testi-track {
  display: -webkit-box; display: -ms-flexbox; display: flex; gap: 1.2rem;
  width: max-content;
  -webkit-animation: scrollTrack 38s linear infinite;
  animation: scrollTrack 38s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
@-webkit-keyframes scrollTrack { from{-webkit-transform:translateX(0);transform:translateX(0)} to{-webkit-transform:translateX(-50%);transform:translateX(-50%)} }
@keyframes scrollTrack { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.6rem;
  width: 280px; min-width: 280px; flex-shrink: 0;
}
.testi-stars { color: var(--orange); font-size: .9rem; margin-bottom: .8rem; }
.testi-txt { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.2rem; }
.testi-auth { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: .8rem; }
.testi-av {
  width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.testi-name { font-size: .85rem; font-weight: 600; color: var(--white); }
.testi-role { font-size: .72rem; color: var(--muted); }

/* =====================
   TOAST
   ===================== */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  -webkit-transform: translateX(-50%) translateY(120%);
  transform: translateX(-50%) translateY(120%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px; padding: .7rem 1.6rem;
  font-size: .88rem; font-weight: 600; color: var(--white);
  z-index: 9999;
  -webkit-transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  -webkit-transition: opacity .6s ease, transform .6s ease;
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* =====================
   CUSTOMER EXPERIENCE SECTION  ← FIXED (deduped + clean)
   ===================== */
.cx-sec {
  padding: 6rem 2rem; background: var(--bg);
  position: relative; overflow: hidden;
}
.cx-sec::before {
  content: ''; position: absolute;
  top: -120px; left: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,214,0,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cx-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 100%;
}

/* LEFT */
.cx-badge-pill {
  display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: .5rem;
  background: rgba(255,214,0,.08);
  border: 1px solid rgba(255,214,0,.18);
  border-radius: 100px; padding: .38rem 1rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  color: var(--orange); margin-bottom: 1.6rem; text-transform: uppercase;
  white-space: nowrap;
}
.cx-h {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.15; color: var(--white); margin-bottom: .6rem;
}
.cx-grad {
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--orange);
  display: inline-block;
}
.cx-underline {
  width: 60px; height: 3px;
  background: var(--orange); border-radius: 4px; margin-bottom: 1.4rem;
}
.cx-sub { color: var(--muted); font-size: .97rem; line-height: 1.7; max-width: 500px; margin-bottom: 1.8rem; }
.cx-links { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: .8rem; margin-bottom: 1.6rem; }
.cx-link-row {
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 14px; padding: .9rem 1.2rem;
  text-decoration: none; color: var(--white);
  -webkit-transition: background .2s, border-color .2s;
  transition: background .2s, border-color .2s;
}
.cx-link-row:hover { background: rgba(255,214,0,.07); border-color: rgba(255,214,0,.3); }
.cx-link-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 50%; background: rgba(255,255,255,.07);
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
}
.cx-link-text { flex: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: .15rem; min-width: 0; }
.cx-link-label { font-size: .72rem; color: var(--muted); }
.cx-link-text strong { font-size: .92rem; color: var(--white); }
.cx-link-arrow { color: var(--muted); flex-shrink: 0; }
.cx-stats-row { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 1rem; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.cx-stat {
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: .7rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 12px; padding: .65rem 1rem;
  flex: 1; min-width: 90px;
}
.cx-stat-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,125,0,.1);
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.cx-stat strong { display: block; font-size: .92rem; font-weight: 700; color: var(--white); }
.cx-stat span { font-size: .68rem; color: var(--muted); }
.cx-join-note { font-size: .82rem; font-style: italic; color: var(--muted); }

/* RIGHT */
.cx-right { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 1.8rem; }
.cx-img-card {
  position: relative; border-radius: 24px; overflow: visible;
  width: 100%; max-width: 480px;
}
.cx-glow-dot {
  position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,214,0,.55) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.cx-img {
  width: 100%; height: 380px;
  -o-object-fit: cover; object-fit: cover; -o-object-position: center 20%; object-position: center 20%;
  border-radius: 24px; display: block;
  position: relative; z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.cx-rating-pill {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  z-index: 2; background: var(--orange); border-radius: 60px;
  padding: .65rem 1.4rem;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: .8rem;
  white-space: nowrap; box-shadow: 0 8px 28px rgba(255,214,0,.35);
}
.cx-star-pill {
  font-size: 1.2rem;
  background: rgba(0,0,0,.15);
  width: 36px; height: 36px; border-radius: 50%;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; flex-shrink: 0;
}
.cx-score { font-weight: 800; font-size: 1.05rem; color: #000; }
.cx-avatars { display: -webkit-box; display: -ms-flexbox; display: flex; }
.cav {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,.2); border: 2px solid var(--orange);
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  font-size: .7rem; margin-left: -6px;
}
.cav:first-child { margin-left: 0; }
.cx-review-count { font-weight: 700; font-size: .85rem; color: #000; line-height: 1.2; text-align: center; }
.cx-review-count small { font-size: .7rem; font-weight: 600; opacity: .7; }
.cx-trust-badges { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 1.2rem; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-wrap: wrap; flex-wrap: wrap; padding-top: .5rem; }
.cx-trust-item {
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: .45rem;
  font-size: .78rem; color: var(--muted);
}
.cx-trust-item svg { color: rgba(255,255,255,.35); flex-shrink: 0; }

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem;
}
.foot-grid {
  max-width: 1100px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.foot-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  text-decoration: none; display: inline-block; margin-bottom: .8rem;
}
.foot-tag { font-size: .88rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
.foot-col h5 {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.2rem;
}
.foot-col ul { list-style: none; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: .8rem; }
.foot-col a { font-size: .88rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.foot-col a:hover { color: var(--orange2); }
.foot-bot {
  max-width: 1100px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 1rem;
}
.foot-bot p { font-size: .82rem; color: var(--muted); }
.socs { display: -webkit-box; display: -ms-flexbox; display: flex; gap: .8rem; }
.soc {
  width: 34px; height: 34px; border: 1px solid var(--border);
  border-radius: 50%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  -webkit-transition: border-color .2s, color .2s, background .2s;
  transition: border-color .2s, color .2s, background .2s;
}
.soc-yt:hover  { border-color: rgba(255,0,0,.45); color: #ff0000; background: rgba(255,0,0,.07); }
.soc-tt:hover  { border-color: rgba(105,201,208,.45); color: #69c9d0; background: rgba(105,201,208,.07); }
.soc-li:hover  { border-color: rgba(0,119,181,.45); color: #0077b5; background: rgba(0,119,181,.07); }
.soc-fb:hover  { border-color: rgba(24,119,242,.45); color: #1877f2; background: rgba(24,119,242,.07); }

/* =====================
   LOGO COMPONENT
   ===================== */
.lorigo-logo {
  width: 82px; height: 82px; border-radius: 24px;
  background: linear-gradient(145deg, #07102b, #020817);
  border: 2px solid rgba(255,190,60,.28);
  position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,190,60,.08), 0 10px 40px rgba(0,0,0,.55), 0 0 60px rgba(255,190,60,.08);
}
.lorigo-logo::before {
  content: ''; position: absolute; inset: -20%;
  background: radial-gradient(circle, rgba(255,190,60,.18), transparent 70%);
  z-index: 0; -webkit-animation: logoGlow 4s ease-in-out infinite;
  animation: logoGlow 4s ease-in-out infinite;
}
.logo-inner { position: relative; z-index: 2; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: .65rem; }
.logo-mark { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 10px; }
.logo-mark span {
  display: block; height: 10px; border-radius: 20px;
  background: linear-gradient(90deg, #ffb300, #ffd54a);
  box-shadow: 0 0 12px rgba(255,190,60,.45);
}
.logo-mark span:nth-child(1) { width: 56px; }
.logo-mark span:nth-child(2) { width: 40px; }
.logo-mark span:nth-child(3) { width: 24px; }
.logo-text { font-family: 'DM Sans', sans-serif; font-size: 2rem; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.logo-text b { color: #ffb300; font-weight: 800; }
@-webkit-keyframes logoGlow { 0%{opacity:.5;-webkit-transform:scale(1);transform:scale(1)} 100%{opacity:1;-webkit-transform:scale(1.08);transform:scale(1.08)} }
@keyframes logoGlow { 0%{opacity:.5;transform:scale(1)} 100%{opacity:1;transform:scale(1.08)} }
.lorigo-logo:hover {
  -webkit-transform: translateY(-3px); transition: all .3s ease;
  transform: translateY(-3px); transition: all .3s ease;
  box-shadow: 0 0 0 1px rgba(255,190,60,.12), 0 20px 60px rgba(0,0,0,.65), 0 0 80px rgba(255,190,60,.15);
}

/* =====================
   RESPONSIVE BREAKPOINTS
   ===================== */

/* Large tablets */
@media (max-width: 1100px) {
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 980px) {
  .hero-inner  { grid-template-columns: 1fr; text-align: center; }
  .hero-badge, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
  .hero-stats { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .cx-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pp-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .contact-inner { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  nav { padding: 1rem 1.2rem; }
  .hbg { display: -webkit-box; display: -ms-flexbox; display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding: 1.5rem;
    display: none;
    z-index: 499;
  }
  .nav-links.open { display: -webkit-box; display: -ms-flexbox; display: flex; }

  .hero, .sec, .how, .testi-sec, .dl-sec { padding-left: 1.2rem; padding-right: 1.2rem; }
  .hero { padding-top: 140px; }
  .hero-stats { gap: 1.5rem; }
  .srv-grid { grid-template-columns: 1fr; }
  .stats-strip { gap: 2rem; padding: 2rem 1rem; }
  .fb1, .fb2, .fb3 { display: none; }
  .phone { width: 220px; }
  .phone-wrap { width: 220px; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cx-sec { padding: 4rem 1.2rem; }
  .trust-h { font-size: 2.5rem; }
  .cx-img { height: 260px; }
  .cx-stats-row { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
  .cx-trust-badges { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
  .pp-header { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: .8rem; }
  .pp-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
  .cx-inner { gap: 2.5rem; }
}

/* Small mobile */
@media (max-width: 520px) {
  .hero h1 { font-size: 3rem; }
  .hero-actions { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
  .btn-main, .btn-ghost { width: 100%; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
  .pp-grid { grid-template-columns: 1fr !important; }
  .cx-rating-pill { font-size: .72rem; padding: .5rem 1rem; gap: .4rem; }
  .sstat-n { font-size: 2.2rem; }
}

/* ══════════════════════════════════════════════════════
   LORIGO.HTML INSERT — Mission, Privacy Policy, Trusted Logistics
   (All classes prefixed with ref- to avoid conflicts)
   ══════════════════════════════════════════════════════ */

/* ── MISSION & VISION ── */
.ref-mv-section {
  padding: 5rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.ref-mv-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.ref-mv-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.ref-mv-header h2 em { font-style: normal; color: var(--orange); }
.ref-mv-rule {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 4px;
  margin: 1rem auto;
}
.ref-mv-header p { color: var(--muted); font-size: 1.05rem; }

.ref-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ref-mv-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.2rem 2.4rem;
  position: relative;
  overflow: hidden;
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ref-mv-card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.ref-mv-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0; /* inset: 0; */
  border-radius: 20px;
  background: radial-gradient(ellipse at top left, rgba(245,197,24,0.18), transparent 60%);
  pointer-events: none;
}
.ref-mv-card.ref-vision::before {
  background: radial-gradient(ellipse at top right, rgba(108,77,230,0.15), transparent 60%);
}

.ref-mv-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.25);
  box-shadow: 0 0 24px rgba(245,197,24,0.12);
}
.ref-mv-card.ref-vision .ref-mv-icon {
  background: rgba(108,77,230,0.15);
  border-color: rgba(108,77,230,0.3);
  box-shadow: 0 0 24px rgba(108,77,230,0.15);
}

.ref-mv-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.9rem;
  letter-spacing: 0.06em;
}
.ref-mv-card p {
  color: #b0bac8;
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.ref-mv-tags {
  display: -webkit-box; display: -ms-flexbox; display: flex; gap: 1.4rem;
  -ms-flex-wrap: wrap; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.2rem;
}
.ref-mv-tag {
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.ref-ti { font-size: 1rem; color: var(--orange); }

/* ── PRIVACY POLICY ── */
.ref-pp-wrap {
  background: linear-gradient(135deg, #0e1628 0%, #12112a 100%);
  border: 1px solid rgba(108,77,230,0.2);
  border-radius: 28px;
  padding: 3rem;
  margin: 0 3rem 4rem;
  max-width: calc(100% - 6rem);
  position: relative;
  overflow: hidden;
}
.ref-pp-wrap::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,77,230,0.15), transparent 70%);
  pointer-events: none;
}

.ref-pp-head {
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; gap: 2rem;
  margin-bottom: 2.8rem;
}
.ref-pp-shield {
  font-size: 4rem;
  filter: drop-shadow(0 0 20px rgba(108,77,230,0.5));
  flex-shrink: 0;
}
.ref-pp-head-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem; font-weight: 700;
  color: #fff; margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}
.ref-pp-head-text p { color: var(--muted); font-size: 0.97rem; line-height: 1.6; max-width: 580px; }

.ref-pp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.ref-pp-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  -webkit-transition: background 0.25s, transform 0.25s;
  transition: background 0.25s, transform 0.25s;
}
.ref-pp-item:hover {
  background: rgba(108,77,230,0.1);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.ref-pp-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(108,77,230,0.18);
  border: 1px solid rgba(108,77,230,0.3);
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.ref-pp-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  color: #fff; margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.ref-pp-item p { color: var(--muted); font-size: 0.8rem; line-height: 1.6; }

.ref-pp-footer {
  margin-top: 2.2rem;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 0.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.ref-lock { font-size: 1rem; }

/* ── TRUSTED LOGISTICS ── */
.ref-tl-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 3rem 5rem;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
}

.ref-tl-left {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 24px;
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
}
.ref-tl-left::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.18), transparent 70%);
  pointer-events: none;
}

.ref-tl-badge {
  display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 0.5rem;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem; font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.ref-tl-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: 0.04em;
}
.ref-tl-left h2 em { font-style: normal; color: var(--orange); display: block; }

.ref-tl-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 4px;
  margin: 1.2rem 0;
}

.ref-tl-left > p {
  color: #8a96b0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 440px;
}

.ref-tl-links { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.ref-tl-link {
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  cursor: pointer;
  -webkit-transition: border-color 0.2s, background 0.2s;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.ref-tl-link:hover {
  border-color: rgba(245,197,24,0.3);
  background: rgba(245,197,24,0.05);
}
.ref-tl-link-left { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 1rem; }
.ref-tl-link-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #1a2a4a, #0f1a30);
  border-radius: 12px;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ref-tl-link-text small { display: block; color: var(--muted); font-size: 0.75rem; margin-bottom: 0.15rem; }
.ref-tl-link-text strong { color: #fff; font-size: 0.9rem; font-weight: 600; }
.ref-tl-link-arrow { color: var(--orange); font-size: 1.1rem; }

.ref-tl-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.ref-tl-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 0.9rem 0.8rem;
  text-align: center;
}
.ref-tl-stat-icon { font-size: 1.2rem; margin-bottom: 0.3rem; }
.ref-tl-stat strong { display: block; color: #fff; font-size: 1rem; font-weight: 700; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }
.ref-tl-stat small { color: var(--muted); font-size: 0.72rem; }

.ref-tl-cta { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 1.2rem; }
.ref-btn-gold {
  flex: 1;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #0a0a0a;
  border: none;
  border-radius: 14px;
  padding: 1rem 1.6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; gap: 0.5rem;
  -webkit-transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 32px rgba(245,197,24,0.3);
  text-decoration: none;
  letter-spacing: 0.06em;
}
.ref-btn-gold:hover { opacity: 0.92; transform: translateY(-2px); }
.ref-tl-cta-note { color: var(--muted); font-size: 0.78rem; max-width: 100px; line-height: 1.4; }
.ref-tl-cta-arrow { color: var(--orange); font-size: 1.5rem; }

.ref-tl-right { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 1.2rem; }

.ref-tl-img-card {
  background: linear-gradient(145deg, #1a4a7a, #0f2a50);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 340px;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end;
}
.ref-tl-img-inner {
  width: 100%; height: 100%;
  background: #0d1a2e;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.ref-tl-img-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 20%;
  object-position: center 20%;
  display: block;
  border-radius: 0;
  position: absolute;
  top: 0; left: 0;
}

.ref-tl-rating-bar {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: var(--orange);
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 2;
}
.ref-star-icon {
  width: 38px; height: 38px;
  background: #0a0a0a;
  border-radius: 50%;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ref-score { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; font-weight: 700; color: #0a0a0a; letter-spacing: 0.04em; }
.ref-divider-v { width: 1px; height: 30px; background: rgba(0,0,0,0.2); }
.ref-avatars { display: -webkit-box; display: -ms-flexbox; display: flex; }
.ref-avatars span {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: linear-gradient(135deg, #555, #888);
  margin-left: -8px;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.6rem;
}
.ref-avatars span:first-child { margin-left: 0; }
.ref-rev-count { font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; font-weight: 700; color: #0a0a0a; letter-spacing: 0.04em; }

.ref-tl-trust-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
.ref-tl-trust-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1rem;
  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 0.7rem;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.ref-tl-trust-item:hover { background: rgba(255,255,255,0.07); }
.ref-tl-trust-item span { color: #c0c8d8; font-size: 0.8rem; font-weight: 500; line-height: 1.3; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ref-mv-grid, .ref-tl-section { grid-template-columns: 1fr; }
  .ref-pp-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-mv-section { padding: 3rem 1.5rem; }
  .ref-tl-section { padding: 1.5rem 1.5rem 3rem; }
  .ref-pp-wrap { margin: 0 1.5rem 2rem; padding: 2rem; max-width: calc(100% - 3rem); }
}
@media (max-width: 520px) {
  .ref-pp-grid { grid-template-columns: 1fr; }
  .ref-mv-card { padding: 1.4rem; }
  .ref-pp-head { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 1rem; }
}
