:root {
  --ink: #13263a;
  --muted: #66788a;
  --line: #dce5eb;
  --paper: #f5f8fa;
  --white: #ffffff;
  --navy: #09253d;
  --navy-2: #123d5e;
  --blue: #0d74b9;
  --blue-soft: #e8f4fb;
  --cyan: #36b7d7;
  --gold: #e9a72b;
  --gold-soft: #fff5da;
  --green: #168765;
  --green-soft: #e7f7f1;
  --red: #c84b4b;
  --shadow: 0 12px 36px rgba(20, 50, 72, .09);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 15px/1.6 "DM Sans", sans-serif; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Manrope", sans-serif; line-height: 1.15; margin: 0; }
p { margin: 0; }

.shell { min-height: 100vh; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar { background: var(--navy); color: #d8e6ef; font-size: 12px; padding: 7px 0; }
.topbar .container { display: flex; justify-content: space-between; }
.nav { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-inner { height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-logo { display:block; width:220px; height:auto; max-height:56px; object-fit:contain; }
.footer-brand { display:inline-flex !important; width:max-content; background:white; border-radius:10px; padding:8px 12px; }
.footer-brand .brand-logo { width:235px; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: white; border-radius: 12px; background: linear-gradient(145deg, var(--blue), var(--cyan)); box-shadow: 0 7px 18px rgba(13,116,185,.23); font-size: 22px; }
.brand strong { font: 800 20px "Manrope"; letter-spacing: -.5px; }
.brand small { display: block; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: 1.8px; }
.nav-links { display: flex; align-items: center; gap: 25px; font-weight: 600; font-size: 14px; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.btn { border: 0; border-radius: 10px; padding: 11px 18px; cursor: pointer; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: white; background: var(--blue); box-shadow: 0 7px 16px rgba(13,116,185,.2); }
.btn-navy { color: white; background: var(--navy); }
.btn-light { background: white; color: var(--navy); border: 1px solid var(--line); }
.btn-ghost { background: transparent; color: var(--blue); border: 1px solid #a9d2ea; }
.btn-danger { color: var(--red); background: #fff1f1; }
.mobile-menu { display: none; }

.hero { color: white; padding: 78px 0 64px; background:
  radial-gradient(circle at 78% 20%, rgba(54,183,215,.28), transparent 27%),
  linear-gradient(120deg, #08243c 0%, #0c3654 62%, #0d5271 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: 68px; align-items: center; }
.eyebrow { color: var(--cyan); text-transform: uppercase; letter-spacing: 2px; font-weight: 800; font-size: 12px; margin-bottom: 16px; }
.hero h1 { font-size: clamp(40px, 5vw, 68px); letter-spacing: -2.5px; max-width: 760px; }
.hero h1 em { color: #72d6ec; font-style: normal; }
.hero p { max-width: 650px; color: #d0e0ea; font-size: 18px; margin-top: 20px; }
.search-panel { margin-top: 31px; display: flex; padding: 7px; background: white; border-radius: 13px; max-width: 680px; box-shadow: 0 18px 45px rgba(0,0,0,.19); }
.search-panel input { min-width: 0; flex: 1; border: 0; outline: 0; padding: 12px 15px; color: var(--ink); }
.trust-row { display: flex; gap: 26px; margin-top: 25px; color: #cbdde8; font-size: 13px; }
.trust-row span::before { content: "✓"; color: #72d6ec; margin-right: 7px; }
.world-card { position: relative; min-height: 370px; border: 1px solid rgba(255,255,255,.16); border-radius: 30px; background: rgba(255,255,255,.06); overflow: hidden; box-shadow: inset 0 0 80px rgba(255,255,255,.03); }
.globe { width: 300px; height: 300px; border: 1px solid rgba(114,214,236,.42); border-radius: 50%; position: absolute; inset: 33px auto auto 54px; background: radial-gradient(circle at 40% 38%, rgba(54,183,215,.2), transparent 52%); animation: globe-float 7s ease-in-out infinite; will-change:transform; }
.globe::before, .globe::after { content:""; position:absolute; inset: 24px 0; border: 1px solid rgba(114,214,236,.27); border-radius: 50%; }
.globe::before { transform: scaleX(.44); animation: globe-meridian 8s ease-in-out infinite; }
.globe::after { inset: 0 55px; animation: globe-meridian-secondary 8s ease-in-out infinite; }
.globe-lines { position:absolute; inset: 50%; width: 270px; height: 1px; transform: translate(-50%,-50%); background: rgba(114,214,236,.26); box-shadow: 0 65px rgba(114,214,236,.22), 0 -65px rgba(114,214,236,.22); }
.globe-orbit { position:absolute; inset:10px; border-radius:50%; animation:globe-orbit 7s linear infinite; will-change:transform; }
.globe-orbit i { position:absolute; top:50%; right:-4px; width:9px; height:9px; margin-top:-4px; border-radius:50%; background:#72d6ec; box-shadow:0 0 0 5px rgba(114,214,236,.16),0 0 18px rgba(114,214,236,.8); }
.globe-orbit.orbit-two { inset:46px; animation-duration:5.2s; animation-direction:reverse; }
.globe-orbit.orbit-two i { top:15%; right:12%; width:7px; height:7px; background:white; }
.route { position:absolute; height: 2px; background: linear-gradient(90deg, transparent 0%, rgba(114,214,236,.28) 28%, #a8edfb 50%, rgba(114,214,236,.28) 72%, transparent 100%); background-size:220% 100%; transform-origin: left; animation: route-flow 3.2s linear infinite; }
.route.r1 { width: 155px; top: 126px; left: 110px; transform: rotate(23deg); }
.route.r2 { width: 190px; top: 235px; left: 88px; transform: rotate(-21deg); animation-delay:-1.6s; }
.pin { position:absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(233,167,43,.17); animation: pin-pulse 2.8s ease-in-out infinite; }
.p1 { top: 104px; left: 120px; }.p2 { top: 169px; right: 66px; }.p3 { bottom: 93px; left: 85px; }.p4 { bottom: 78px; right: 102px; }
.p2 { animation-delay:-.7s; }.p3 { animation-delay:-1.4s; }.p4 { animation-delay:-2.1s; }
.floating-stat { position:absolute; padding: 11px 15px; background: white; color: var(--ink); border-radius: 12px; box-shadow: var(--shadow); }
.floating-stat strong { display:block; font: 800 20px "Manrope"; color: var(--blue); }
.floating-stat small { color: var(--muted); }.fs1 { top: 25px; right: 18px; }.fs2 { bottom: 24px; left: 20px; }

@keyframes globe-float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }
@keyframes globe-meridian { 0%,100% { transform:scaleX(.18); opacity:.45; } 50% { transform:scaleX(.78); opacity:1; } }
@keyframes globe-meridian-secondary { 0%,100% { transform:scaleX(1); opacity:.9; } 50% { transform:scaleX(.35); opacity:.38; } }
@keyframes globe-orbit { to { transform:rotate(360deg); } }
@keyframes route-flow { from { background-position:110% 0; } to { background-position:-110% 0; } }
@keyframes pin-pulse { 0%,100% { transform:scale(1); box-shadow:0 0 0 6px rgba(233,167,43,.17); } 50% { transform:scale(1.18); box-shadow:0 0 0 11px rgba(233,167,43,0); } }

@media (prefers-reduced-motion: reduce) {
  .globe { animation-duration:14s; }.globe::before,.globe::after { animation-duration:16s; }.globe-orbit { animation-duration:18s; }.globe-orbit.orbit-two { animation-duration:14s; }.route { animation-duration:7s; }.pin { animation-duration:5s; }
}

.stats { margin-top: -1px; background: white; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 27px 15px; border-right: 1px solid var(--line); }.stat:last-child { border:0; }
.stat strong { display:block; color: var(--navy); font: 800 27px "Manrope"; }.stat span { color:var(--muted); font-size:13px; }
.section { padding: 76px 0; }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 30px; }
.section-head h2 { font-size: 34px; letter-spacing: -1px; }.section-head p { color: var(--muted); max-width: 520px; }
.pricing-hero { padding:76px 0; color:white; background:radial-gradient(circle at 83% 15%,rgba(54,183,215,.3),transparent 28%),linear-gradient(120deg,#08243c,#0d5271); }.pricing-hero-grid { display:grid; grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr); gap:70px; align-items:center; }.pricing-hero h1 { max-width:800px; font-size:clamp(42px,5vw,68px); line-height:1.04; letter-spacing:-2.5px; }.pricing-hero p { max-width:720px; margin-top:20px; color:#d0e0ea; font-size:18px; line-height:1.65; }.pricing-hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }.pricing-network-card { display:grid; gap:1px; overflow:hidden; border:1px solid rgba(255,255,255,.2); border-radius:20px; background:rgba(255,255,255,.12); box-shadow:0 24px 55px rgba(1,20,34,.25); }.pricing-network-card>span { padding:17px 22px; color:#9fe5f4; font-size:12px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; }.pricing-network-card>div { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:19px 22px; background:rgba(3,29,47,.3); }.pricing-network-card strong { color:white; font:800 28px "Manrope"; }.pricing-network-card small { max-width:145px; color:#c9dce7; text-align:right; }.pricing-section-head { align-items:center; }.pricing-plan-grid { display:grid; grid-template-columns:repeat(2,minmax(0,430px)); justify-content:center; gap:24px; }.pricing-plan { position:relative; display:flex; flex-direction:column; padding:32px; }.pricing-plan.featured { border:2px solid var(--gold); box-shadow:0 22px 55px rgba(7,54,84,.13); }.pricing-plan-badge { position:absolute; top:24px; right:24px; }.pricing-price { display:flex; align-items:baseline; gap:10px; margin:4px 0 14px; }.pricing-price strong { color:var(--navy); font:800 44px "Manrope"; }.pricing-price span { color:var(--muted); font-size:13px; }.pricing-plan>p { min-height:48px; margin-bottom:15px; color:var(--muted); }.pricing-check { display:flex; gap:10px; padding:10px 0; border-bottom:1px solid var(--line); }.pricing-check i { color:var(--green); font-style:normal; font-weight:800; }.pricing-plan .btn { margin-top:auto; transform:translateY(18px); }.pricing-fine-print { max-width:780px; margin:36px auto 0; color:var(--muted); text-align:center; font-size:13px; }.pricing-benefits,.pricing-comparison { background:#f4f8fa; }.pricing-benefit-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }.pricing-benefit-grid article { padding:25px; border:1px solid var(--line); border-radius:16px; background:white; }.pricing-benefit-grid article>span,.pricing-steps article>span { display:inline-grid; place-items:center; width:38px; height:38px; margin-bottom:18px; border-radius:10px; color:var(--blue); background:var(--blue-soft); font-weight:800; }.pricing-benefit-grid h3,.pricing-steps h3 { margin-bottom:8px; }.pricing-benefit-grid p,.pricing-steps p { color:var(--muted); line-height:1.65; }.pricing-steps { grid-template-columns:repeat(4,1fr); }.pricing-table-wrap { padding:0; overflow:auto; }.pricing-table { width:100%; min-width:700px; border-collapse:collapse; }.pricing-table th,.pricing-table td { padding:17px 20px; border-bottom:1px solid var(--line); text-align:left; }.pricing-table th { color:var(--muted); background:#f9fbfc; font-size:12px; text-transform:uppercase; }.pricing-table th:last-child,.pricing-table td:last-child { color:var(--blue); background:rgba(222,242,250,.28); }.pricing-faq { max-width:900px; }.pricing-faq details { border-bottom:1px solid var(--line); }.pricing-faq summary { padding:20px 0; color:var(--navy); font-weight:800; cursor:pointer; }.pricing-faq details p { max-width:780px; padding:0 0 20px; color:var(--muted); line-height:1.7; }.pricing-cta { color:white; }.pricing-cta p { max-width:670px; margin-top:8px; color:#cfe0ea; }
.step-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step { background:white; padding:27px; border:1px solid var(--line); border-radius:var(--radius); position:relative; }
.step-number { display:grid; place-items:center; width:42px; height:42px; border-radius:12px; color:white; background:var(--blue); font-weight:800; margin-bottom:18px; }
.step h3 { font-size:18px; margin-bottom:8px; }.step p { color:var(--muted); }
.cta-band { margin: 20px 0 78px; padding: 38px 44px; border-radius: 22px; color:white; display:flex; align-items:center; justify-content:space-between; gap:25px; background:linear-gradient(110deg,var(--blue),#1699c6); box-shadow:0 18px 40px rgba(13,116,185,.2); }
.cta-band h2 { font-size:29px; }.cta-band p { color:#d9f2fb; margin-top:6px; }

.page-hero { padding: 52px 0 34px; background: linear-gradient(180deg, #edf6fb, var(--paper)); border-bottom:1px solid var(--line); }
.page-hero h1 { font-size: 40px; letter-spacing:-1.5px; }.page-hero p { color:var(--muted); margin-top:10px; }
.directory-layout { display:grid; grid-template-columns:250px 1fr; gap:28px; padding:35px 0 75px; }
.filters { background:white; border:1px solid var(--line); border-radius:var(--radius); padding:22px; align-self:start; position:sticky; top:96px; }
.filter-title { font:700 16px "Manrope"; margin-bottom:18px; display:flex; justify-content:space-between; }
.field { margin-bottom:16px; }.field label { display:block; font-size:12px; font-weight:700; margin-bottom:6px; color:#405467; }
.input, .select, textarea { width:100%; border:1px solid #cedae2; border-radius:10px; padding:11px 12px; color:var(--ink); background:white; outline:0; }
.input:focus, .select:focus, textarea:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(13,116,185,.1); }
.check { display:flex; align-items:center; gap:9px; margin:9px 0; color:#45596b; }
.results-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:15px; }
.results-top strong { font-family:"Manrope"; }.sort-note { color:var(--muted); font-size:12px; }
.company-list { display:grid; gap:14px; }
.company-card { background:white; border:1px solid var(--line); border-radius:16px; padding:22px; display:grid; grid-template-columns:66px 1fr auto; gap:18px; align-items:center; transition:.18s; }
.company-card:hover { transform:translateY(-2px); box-shadow:var(--shadow); border-color:#c2d9e7; }
.company-card.premium { border-left:4px solid var(--gold); }
.logo { width:62px; height:62px; border-radius:14px; display:grid; place-items:center; color:white; font:800 18px "Manrope"; background:linear-gradient(145deg,var(--navy-2),var(--blue)); }
.logo.country-flag { overflow:hidden; background:#fff; }
.logo.country-flag img { width:100%; height:100%; object-fit:cover; display:block; }
.dash-grid .logo.country-flag { width:34px; height:23px; min-width:34px; border-radius:4px; }
.listing-row:has([data-branch-edit]) .logo.country-flag { width:34px; height:23px; min-width:34px; border-radius:4px; }
.logo.company-logo { overflow:hidden; background:#fff; }
.logo.company-logo img { width:100%; height:100%; object-fit:contain; display:block; padding:4px; }
.dashboard-company-logo { width:72px; height:72px; object-fit:contain; border-radius:14px; background:#fff; padding:5px; margin-bottom:12px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.company-main h3 { font-size:18px; margin-bottom:6px; display:flex; align-items:center; gap:9px; flex-wrap:wrap; }
.directory-name-flag { display:inline-flex; width:25px; height:17px; overflow:hidden; border-radius:3px; flex:none; }.directory-name-flag img { width:100%; height:100%; object-fit:cover; display:block; }
.company-meta { color:var(--muted); display:flex; flex-wrap:wrap; gap:8px 15px; font-size:13px; }
.service-chips { display:flex; flex-wrap:wrap; gap:6px; margin-top:10px; }.chip { color:#456074; background:#eff4f7; border-radius:20px; padding:4px 9px; font-size:11px; font-weight:600; }
.badge { display:inline-flex; align-items:center; gap:5px; padding:4px 9px; border-radius:20px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.5px; }
.badge-premium { color:#8b5a00; background:var(--gold-soft); }.badge-verified { color:var(--green); background:var(--green-soft); }.badge-pending { color:#8c6a17; background:#fff8dc; }.badge-missing { color:#a73737; background:#fdeaea; }
.status-light { display:inline-block; width:9px; height:9px; border-radius:50%; background:currentColor; }
.verification-callout { display:flex; gap:13px; align-items:flex-start; padding:15px; border-radius:12px; margin-top:14px; }
.verification-callout .traffic-dot { width:16px; height:16px; border-radius:50%; flex:none; margin-top:4px; box-shadow:0 0 0 5px rgba(0,0,0,.04); }
.verification-callout.green { background:var(--green-soft); color:#17694f; }.verification-callout.green .traffic-dot { background:var(--green); }
.verification-callout.amber { background:#fff8dc; color:#785c12; }.verification-callout.amber .traffic-dot { background:var(--gold); }
.verification-callout.red { background:#fdeaea; color:#903535; }.verification-callout.red .traffic-dot { background:var(--red); }
.card-action { text-align:right; }.card-action .member { display:block; color:var(--muted); font-size:11px; margin-bottom:12px; }

.profile-head { color:white; padding:48px 0; background:linear-gradient(115deg,var(--navy),#154f70); }
.backlink { color:#b9d8e8; font-size:13px; display:inline-block; margin-bottom:23px; }
.profile-title { display:grid; grid-template-columns:90px 1fr auto; gap:22px; align-items:center; }.profile-title .logo { width:88px; height:88px; font-size:25px; background:white; color:var(--blue); }
.profile-title h1 { font-size:34px; }.profile-title p { color:#cce0ea; margin-top:7px; }.profile-actions { display:flex; justify-content:flex-end; align-items:center; flex-wrap:wrap; gap:12px; text-align:right; }
.profile-grid { display:grid; grid-template-columns:1fr 330px; gap:28px; padding:35px 0 75px; }.panel { background:white; border:1px solid var(--line); border-radius:var(--radius); padding:26px; margin-bottom:20px; }
.panel h2 { font-size:20px; margin-bottom:17px; }.panel p { color:#526778; }
.detail-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:17px; }.detail label { color:var(--muted); font-size:11px; text-transform:uppercase; letter-spacing:.8px; }.detail strong { display:block; margin-top:3px; }
.contact-box { background:var(--navy); color:white; }.contact-box p { color:#c7dce7; }.contact-line { padding:12px 0; border-bottom:1px solid rgba(255,255,255,.12); }.contact-line:last-child { border:0; }
.branch { padding:15px; border:1px solid var(--line); border-radius:12px; display:flex; align-items:center; justify-content:space-between; margin-top:10px; }

.auth-wrap { min-height:calc(100vh - 112px); display:grid; grid-template-columns:1fr 1fr; }.auth-aside { color:white; padding:70px max(40px, calc((100vw - 1180px)/2)); background:linear-gradient(145deg,var(--navy),#0f5576); display:flex; flex-direction:column; justify-content:center; }.auth-aside h1 { font-size:45px; max-width:480px; }.auth-aside p { color:#c6dce7; font-size:17px; max-width:480px; margin-top:18px; }.auth-benefit { display:flex; gap:12px; margin-top:28px; }.auth-benefit i { width:28px; height:28px; flex:none; border-radius:50%; background:rgba(114,214,236,.18); display:grid; place-items:center; font-style:normal; color:#72d6ec; }
.auth-brand-logo { width:min(330px,90%); height:auto; background:white; border-radius:12px; padding:9px 14px; margin-bottom:30px; }
.auth-form { background:white; padding:60px max(40px, calc((100vw - 1180px)/2)); display:flex; align-items:center; }.form-box { width:min(480px,100%); }.form-box h2 { font-size:30px; margin-bottom:8px; }.form-box>p { color:var(--muted); margin-bottom:26px; }.form-row { display:grid; grid-template-columns:1fr 1fr; gap:13px; }.legal { font-size:12px; color:var(--muted); margin:15px 0; }.claim-email-valid { color:var(--green); font-weight:700; }.claim-email-invalid { color:var(--red); font-weight:700; }.full { width:100%; }.notice { padding:12px 14px; border-radius:10px; margin:15px 0; background:var(--blue-soft); color:#175a7f; font-size:13px; }

.dashboard { display:grid; grid-template-columns:230px 1fr; min-height:calc(100vh - 112px); }.sidebar { background:var(--navy); color:#d6e4ec; padding:26px 18px; }.side-profile { padding:14px; margin-bottom:20px; border-bottom:1px solid rgba(255,255,255,.12); }.side-profile strong { display:block;color:white; }.side-profile span { font-size:11px;color:#9eb7c6; }.side-nav button { width:100%; text-align:left; color:#bcd0dc; border:0; background:transparent; padding:11px 13px; border-radius:8px; cursor:pointer; }.side-nav button.active,.side-nav button:hover { color:white; background:rgba(255,255,255,.09); }
.dash-main { padding:36px; max-width:1100px; }.dash-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:26px; }.dash-head h1 { font-size:30px; }.dash-head p { color:var(--muted); }
.metric-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; margin-bottom:24px; }.metric { background:white; border:1px solid var(--line); border-radius:14px; padding:18px; }.metric span { color:var(--muted); font-size:12px; }.metric strong { display:block; font:800 27px "Manrope"; margin-top:5px; }.metric strong.blue { color:var(--blue); }
.dash-grid { display:grid; grid-template-columns:1.4fr .8fr; gap:20px; }.listing-row,.alert-row { display:flex; align-items:center; gap:14px; padding:15px 0; border-bottom:1px solid var(--line); }.listing-row:last-child,.alert-row:last-child { border:0; }.listing-row .logo { width:46px; height:46px; font-size:13px; }.grow { flex:1; }.grow strong { display:block; }.grow small { color:var(--muted); }.alert-dot { width:9px; height:9px; border-radius:50%; background:var(--gold); flex:none; }
.admin-table { width:100%; border-collapse:collapse; }.admin-table th,.admin-table td { text-align:left; padding:13px 10px; border-bottom:1px solid var(--line); font-size:13px; }.admin-table th { color:var(--muted); font-size:11px; text-transform:uppercase; }
.service-checkbox-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px 18px; }
.contact-editor { padding:18px 0; border-bottom:1px solid var(--line); }.contact-editor:last-of-type { border-bottom:0; }.contact-editor h3 { margin-bottom:12px; }
.cargo-item { border:1px solid var(--line); border-radius:14px; padding:20px; margin:18px 0; }.cargo-item legend { padding:0 8px; font-weight:800; }.cargo-check { align-self:center; margin-top:22px; }
.exchange-request { margin-bottom:18px; padding:0; overflow:hidden; }.exchange-card-head { display:flex; align-items:center; background:#fff; }.exchange-summary { flex:1; min-width:0; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:22px 18px 22px 26px; border:0; background:#fff; color:var(--navy); text-align:left; cursor:pointer; }.exchange-summary:hover { background:#f8fafb; }.exchange-summary-copy { display:block; min-width:0; }.exchange-mode { display:block; font:800 19px "Manrope"; margin:4px 0 5px; }.exchange-company { display:block; color:var(--muted); font-size:13px; margin-bottom:12px; }.exchange-company strong { color:var(--navy); }.exchange-card-action { flex:none; padding:18px 26px 18px 8px; }.exchange-chevron { display:grid; place-items:center; width:34px; height:34px; flex:none; border:1px solid var(--line); border-radius:50%; color:var(--blue); font-size:22px; }.exchange-route { display:flex; align-items:center; flex-wrap:wrap; gap:10px; }.exchange-route img { width:30px; height:20px; object-fit:cover; }.exchange-arrow { color:var(--blue); font-size:22px; font-weight:800; }.exchange-expanded { padding:0 26px 24px; border-top:1px solid var(--line); }.exchange-details { margin:18px 0; }.exchange-description { padding:16px 0; border-top:1px solid var(--line); }.exchange-description p { margin-top:7px; }.exchange-cargo-line { display:flex; justify-content:space-between; gap:15px; padding:12px 0; border-top:1px solid var(--line); }.exchange-cargo-line span { color:var(--muted); text-align:right; }
.public-exchange-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }.public-exchange-rules { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-bottom:42px; }.public-exchange-rules>div { padding:20px; border:1px solid var(--line); border-radius:14px; background:#fff; }.public-exchange-rules strong,.public-exchange-rules span { display:block; }.public-exchange-rules span { margin-top:6px; color:var(--muted); }.public-exchange-list { display:grid; gap:18px; }.public-previous-heading { margin-top:54px; }.public-exchange-reference { display:flex; align-items:center; flex-wrap:wrap; gap:10px; }.public-exchange-reference .eyebrow { margin:0; }.public-exchange-card { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(310px,.9fr); gap:26px; align-items:center; overflow:hidden; }.public-exchange-locked { position:relative; min-height:136px; overflow:hidden; border:1px solid var(--line); border-radius:12px; background:#f3f7f9; }.public-exchange-blur { display:grid; gap:10px; padding:18px; filter:blur(6px); opacity:.7; user-select:none; }.public-exchange-blur span { display:block; padding:7px 10px; border-radius:6px; background:#d9e5eb; color:var(--navy); }.public-exchange-lock { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:20px; text-align:center; background:rgba(255,255,255,.48); }.public-exchange-lock strong { color:var(--navy); font:800 17px "Manrope"; }.public-exchange-lock span { max-width:290px; margin-top:6px; color:#425d6e; font-size:13px; }
.quote-form { margin-top:24px; padding-top:24px; border-top:2px solid var(--blue); }.quote-form .results-top { align-items:flex-start; margin-bottom:18px; }
.quote-price-title { margin:24px 0 12px; }.quote-charge-section { overflow-x:auto; padding:18px; margin:14px 0; border:1px solid var(--line); border-radius:12px; background:#fafcfd; }.quote-charge-section h3 { margin-bottom:12px; }.quote-charge-head,.quote-charge-line { min-width:720px; display:grid; grid-template-columns:2fr 1fr 24px 1fr 24px 1fr; gap:8px; align-items:center; }.quote-charge-head { padding:0 0 7px; color:var(--muted); font-size:11px; font-weight:700; text-transform:uppercase; }.quote-charge-line { margin:8px 0; }.quote-charge-line output { padding:10px; text-align:right; font-weight:800; }.charge-symbol { text-align:center; color:var(--muted); font-weight:800; }.quote-category-total,.quote-grand-total { display:flex; justify-content:flex-end; align-items:center; gap:24px; margin-top:14px; padding-top:14px; border-top:1px solid var(--line); }.quote-category-total output { min-width:110px; text-align:right; font-weight:800; }.quote-grand-total { padding:18px 20px; border:0; border-radius:12px; background:var(--navy); color:white; font-size:20px; }.quote-grand-total output { min-width:140px; text-align:right; font:800 24px "Manrope"; }
.received-quote { padding:20px 0; border-top:1px solid var(--line); }.received-quote:first-of-type { border-top:0; }.received-total { display:block; color:var(--blue); font:800 22px "Manrope"; margin-bottom:7px; }.received-charge-list { margin:16px 0; border-top:1px solid var(--line); }.received-charge-line { display:flex; justify-content:space-between; gap:16px; padding:9px 0; border-bottom:1px solid var(--line); }.received-charge-line span { color:var(--muted); }
.my-request-route { display:flex; align-items:center; flex-wrap:wrap; gap:7px; min-width:310px; }.my-request-route img { width:27px; height:18px; object-fit:cover; }.my-request-route>strong { color:var(--blue); }
.request-quotation-actions { display:flex; align-items:center; gap:8px; white-space:nowrap; }.request-cancel { color:var(--red); border-color:#e8b8b8; }
.admin-freight-analytics { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }.admin-ranking-card { min-width:0; }.admin-rank-row,.admin-deal-row { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:11px 0; border-bottom:1px solid var(--line); }.admin-rank-row:last-child,.admin-deal-row:last-child { border-bottom:0; }.admin-rank-row span { min-width:0; }.admin-rank-row span>strong { display:inline-grid; place-items:center; width:24px; height:24px; margin-right:7px; border-radius:50%; background:var(--blue-soft); color:var(--blue); }.admin-rank-row b,.admin-deal-row b { white-space:nowrap; }.admin-deal-row { display:grid; grid-template-columns:50px 1fr auto; }
.quote-decision-actions { display:flex; gap:10px; margin-top:20px; }.quote-reject { color:var(--red); border-color:#e8b8b8; }
.submitted-quotes>p { margin-bottom:18px; }.submitted-quote-card { padding:0; margin-top:14px; overflow:hidden; border:1px solid var(--line); border-radius:14px; background:#fafcfd; }.submitted-quote-summary { width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:20px; border:0; background:#fafcfd; color:var(--navy); text-align:left; cursor:pointer; }.submitted-quote-summary:hover { background:#f2f7f9; }.submitted-summary-main { min-width:0; }.submitted-mode { display:block; margin:4px 0 8px; text-transform:lowercase; }.submitted-summary-result { display:flex; align-items:center; gap:12px; flex:none; }.submitted-summary-result .received-total { margin:0; white-space:nowrap; }.submitted-quote-details { padding:20px; border-top:1px solid var(--line); background:#fff; }.awarded-contact-card { padding:18px; margin-top:20px; border-radius:12px; background:var(--green-soft); color:#17694f; }.awarded-contact-card h3 { margin:5px 0; }.awarded-contact-card p { color:#397765; margin-bottom:8px; }.awarded-contact-card a { display:block; width:max-content; max-width:100%; margin:6px 0; color:#11684e; font-weight:700; overflow-wrap:anywhere; }
.submitted-quote-route { display:flex; align-items:center; flex-wrap:wrap; gap:8px; margin-top:9px; color:var(--muted); }.submitted-quote-route img { width:28px; height:19px; object-fit:cover; }.submitted-quote-route>span { color:var(--blue); font-size:19px; font-weight:800; }.submitted-charge-breakdown { margin-top:20px; padding-top:18px; border-top:1px solid var(--line); }.submitted-charge-breakdown>h4 { margin-bottom:12px; }.submitted-charge-section { margin-top:14px; }.submitted-charge-section h4 { color:var(--muted); margin-bottom:5px; }.submitted-charge-subtotal,.submitted-charge-total { display:flex; justify-content:space-between; gap:16px; padding:10px 0; }.submitted-charge-subtotal { border-bottom:1px solid var(--line); }.submitted-charge-total { margin-top:12px; padding:15px; border-radius:10px; background:var(--navy); color:white; font-size:17px; }
.empty { padding:55px 20px; text-align:center; color:var(--muted); background:white; border:1px dashed #c9d6de; border-radius:16px; }
.legal-document { max-width:940px; }.legal-document h2 { margin:32px 0 10px; font-size:24px; }.legal-document h3 { margin:22px 0 8px; font-size:17px; }.legal-document p,.legal-document li { color:var(--muted); line-height:1.75; }.legal-document ul { margin:10px 0; padding-left:24px; }.legal-document li { margin:6px 0; }.legal-document a { color:var(--blue); font-weight:700; overflow-wrap:anywhere; }.legal-document .notice { color:#175a7f; }
.blurred-website { overflow:hidden; padding:13px 16px; color:var(--navy); background:#eef3f6; border:1px solid var(--line); border-radius:10px; font-weight:800; filter:blur(5px); user-select:none; pointer-events:none; }
.toast { position:fixed; right:24px; bottom:24px; z-index:50; padding:13px 18px; color:white; background:var(--navy); border-radius:10px; box-shadow:var(--shadow); animation:pop .22s ease; }
@keyframes pop { from { opacity:0; transform:translateY(8px); } }
.footer { background:#071d30; color:#b5c9d5; padding:45px 0 24px; }.footer-grid { display:grid; grid-template-columns:2fr repeat(3,1fr); gap:30px; }.footer h4 { color:white; margin-bottom:12px; }.footer a { display:block; margin:6px 0; }.footer-socials a { display:flex; align-items:center; gap:9px; width:max-content; max-width:100%; }.footer-socials a:hover { color:white; }.footer-socials span { display:inline-grid; place-items:center; width:24px; height:24px; flex:none; border:1px solid rgba(255,255,255,.22); border-radius:50%; color:white; font-size:11px; font-weight:800; }.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:30px; padding-top:20px; font-size:12px; display:flex; justify-content:space-between; }

@media (max-width: 860px) {
  .service-checkbox-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }.admin-freight-analytics,.public-exchange-card,.pricing-hero-grid { grid-template-columns:1fr; }.pricing-benefit-grid,.pricing-steps { grid-template-columns:repeat(2,1fr); }.footer-grid { grid-template-columns:repeat(2,1fr); }
  .nav-links { display:none; }.mobile-menu { display:block; }.hero-grid,.auth-wrap,.profile-grid,.dash-grid { grid-template-columns:1fr; }.world-card { display:none; }.hero { padding:55px 0; }.stats-grid,.metric-grid { grid-template-columns:repeat(2,1fr); }.directory-layout,.dashboard { grid-template-columns:1fr; }.filters,.sidebar { position:static; }.sidebar { padding:15px; }.side-nav { display:flex; overflow:auto; }.side-nav button { width:auto; white-space:nowrap; }.profile-title { grid-template-columns:70px 1fr; }.profile-actions { grid-column:1/-1; justify-content:flex-start; text-align:left; }.step-grid { grid-template-columns:1fr; }.auth-aside { padding:45px 30px; }.auth-form { padding:45px 30px; }
}
@media (max-width: 560px) {
  .service-checkbox-grid,.public-exchange-rules,.pricing-plan-grid,.pricing-benefit-grid,.pricing-steps { grid-template-columns:1fr; }.pricing-hero { padding:52px 0; }.pricing-hero h1 { font-size:40px; }.pricing-hero-actions .btn { width:100%; }.pricing-plan-badge { position:static; width:max-content; margin-bottom:14px; }.public-exchange-actions .btn { width:100%; }.exchange-card-head { display:block; }.exchange-summary { width:100%; align-items:flex-start; padding:18px; }.exchange-card-action { padding:0 18px 18px; }.exchange-card-action .btn { width:100%; }.exchange-expanded { padding:0 18px 20px; }.exchange-cargo-line { display:block; }.exchange-cargo-line span { display:block; margin-top:5px; text-align:left; }.submitted-quote-summary { display:block; }.submitted-summary-result { margin-top:14px; flex-wrap:wrap; }.submitted-summary-result .exchange-chevron { margin-left:auto; }
  .brand-logo { width:170px; max-height:46px; }.footer-brand .brand-logo { width:210px; }
  .container { width:min(100% - 24px,1180px); }.topbar { display:none; }.nav-inner { height:66px; gap:8px; }.nav .btn-primary { display:none; }.nav .btn-light { padding:8px 12px; font-size:12px; }.brand { min-width:0; }.brand-mark { width:38px;height:38px;flex:none; }.brand strong { font-size:17px; }.brand small { font-size:7px; }.hero h1 { font-size:39px; }.search-panel { display:block; background:transparent; box-shadow:none; padding:0; }.search-panel input { width:100%; border-radius:10px; margin-bottom:8px; padding:14px; }.search-panel .btn { width:100%; }.trust-row { display:block; }.trust-row span { display:block; margin:8px 0; }.stats-grid,.metric-grid,.detail-grid,.form-row { grid-template-columns:1fr; }.company-card { grid-template-columns:52px 1fr; }.company-card .logo { width:50px;height:50px; }.card-action { grid-column:1/-1; display:flex; justify-content:space-between; align-items:center; }.section-head,.cta-band { display:block; }.cta-band .btn { margin-top:18px; }.profile-title { grid-template-columns:1fr; }.footer-grid { grid-template-columns:1fr; }.footer-bottom { display:block; }.directory-layout { padding-top:18px; }.dash-main { padding:22px 14px; }.admin-table { display:block; overflow:auto; }
}
