/* ==========================================================================
   American Logistix — site styles
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face{font-family:'Poppins';src:url('../assets/poppins-400.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Poppins';src:url('../assets/poppins-600.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'Poppins';src:url('../assets/poppins-700.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Poppins';src:url('../assets/poppins-800.woff2') format('woff2');font-weight:800;font-style:normal;font-display:swap}

/* ---------- Tokens ---------- */
:root{
  --blue:#0866b3;
  --blue-dark:#065a9e;
  --blue-bright:#0b7dda;
  --blue-soft:#3b9ede;
  --blue-alt:#0a7fd4;
  --navy:#0a1628;
  --navy-2:#0f2847;
  --navy-3:#0b3a6b;
  --ink:#0f172a;
  --body:#334155;
  --slate:#475569;
  --muted:#64748b;
  --border:#e2e8f0;
  --border-soft:#e8ecf1;
  --bg-soft:#f8fafc;
  --bg-hover:#f1f5f9;
  --orange-a:#f59e0b;
  --orange-b:#ef6c00;
  --green:#16a34a;
  --yellow:#facc15;
  --font:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;background:#fff;color:var(--body);
  font-family:var(--font);font-size:16px;font-weight:400;line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,h5,h6{margin:0 0 .5rem;line-height:1.2;color:var(--ink);text-wrap:balance}
p{margin:0 0 1rem}
img,svg{vertical-align:middle}
img{max-width:100%;height:auto}
a{color:var(--blue);text-decoration:none}
ul{margin:0 0 1rem;padding-left:2rem}
button{font-family:inherit;font-size:inherit;border-radius:0;cursor:pointer}
input{font-family:inherit;font-size:inherit;margin:0}
table{border-collapse:collapse;caption-side:bottom}
iframe{border:0}
:focus-visible{outline:2px solid var(--blue);outline-offset:2px;border-radius:4px}
a:focus:not(:focus-visible),button:focus:not(:focus-visible){outline:none}
.hidden{display:none !important}
.text-center{text-align:center}
.fw-bold{font-weight:700}
.mt-3{margin-top:1rem}.mt-4{margin-top:1.5rem}.mt-5{margin-top:3rem}
.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1.5rem}.mb-5{margin-bottom:3rem}

/* ---------- Container ---------- */
.container{width:100%;padding-right:12px;padding-left:12px;margin-right:auto;margin-left:auto}
@media(min-width:576px){.container{max-width:540px}}
@media(min-width:768px){.container{max-width:720px}}
@media(min-width:992px){.container{max-width:960px}}
@media(min-width:1200px){.container{max-width:1140px}}
@media(min-width:1400px){.container{max-width:1320px}}
.row{display:flex;flex-wrap:wrap;margin-right:-12px;margin-left:-12px}
.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:12px;padding-left:12px}
section{margin-bottom:0}

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.bn-bar{background:#0b1220;color:#f8fafc;font-size:12px;font-weight:500;padding:6px 16px;text-align:center;letter-spacing:.3px}
.bn-inner{display:flex;align-items:center;justify-content:center;gap:8px;flex-wrap:nowrap;overflow:hidden;max-width:1200px;margin:0 auto}
.bn-icon{color:var(--yellow);font-size:14px}
.bn-sep{color:#cbd5e1;font-size:10px}
.bn-phone{color:#fff;font-weight:700;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:2px;white-space:nowrap}
.bn-phone:hover{color:#fef3c7}

/* ==========================================================================
   Header
   ========================================================================== */
.bh{position:sticky;top:0;z-index:200;background:#fff;border-bottom:1px solid var(--border);box-shadow:0 1px 8px rgba(0,0,0,.04)}
.bh-inner{max-width:1280px;margin:0 auto;display:flex;align-items:center;padding:0 24px;height:64px;gap:32px}
.bh-logo{flex-shrink:0;display:flex;align-items:center;min-height:44px}

.bh-nav{display:flex;align-items:center;gap:4px;flex:1}
/* On the reference homepage the generic anchor colour wins over the nav link
   colour, so plain nav links read blue while the dropdown <button>s stay dark. */
.bh-link{font-size:14px;font-weight:600;color:var(--body);padding:8px 14px;border-radius:8px;transition:all .15s;background:none;border:none;font-family:inherit;display:flex;align-items:center;gap:5px}
a.bh-link{color:var(--blue)}
.bh-link:hover{background:var(--bg-hover);color:var(--blue-bright)}
.bh-link svg{transition:transform .2s}
.bh-drop{position:relative}
.bh-panel{display:none;position:absolute;top:100%;left:0;min-width:240px;padding:8px 0;margin-top:4px;background:#fff;border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,.12);border:1px solid var(--border);z-index:50}
.bh-drop.open .bh-panel{display:block}
.bh-drop.open .bh-link svg{transform:rotate(180deg)}
.bh-panel a{display:block;padding:10px 18px;font-size:13px;font-weight:500;color:var(--body);transition:all .1s}
.bh-panel a:hover{background:var(--bg-hover);color:var(--blue-bright)}
.bh-right{display:flex;align-items:center;gap:12px;margin-left:auto;flex-shrink:0}
.bh-phone{display:flex;align-items:center;justify-content:center;gap:6px;min-width:44px;min-height:44px;font-size:14px;font-weight:600;color:var(--blue);padding:6px 12px;border-radius:8px;transition:all .15s}
.bh-phone:hover{background:#e8f4fd}
.bh-cta{display:inline-flex;align-items:center;padding:10px 22px;border-radius:10px;background:var(--blue);color:#fff;font-size:14px;font-weight:700;transition:all .2s;box-shadow:0 2px 10px rgba(8,102,179,.25)}
.bh-cta:hover{background:var(--blue-dark);color:#fff;transform:translateY(-1px)}
.bh-burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:44px;height:44px;background:none;border:none;padding:8px}
.bh-burger span{display:block;width:100%;height:2px;background:var(--ink);border-radius:2px;transition:all .25s}
.bh-burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.bh-burger.active span:nth-child(2){opacity:0}
.bh-burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- Mobile drawer ---------- */
.md-overlay{position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:299;opacity:0;pointer-events:none;transition:opacity .3s}
.md-overlay.open{opacity:1;pointer-events:auto}
.md{position:fixed;top:0;right:-320px;bottom:0;width:320px;max-width:85vw;background:#fff;z-index:300;display:flex;flex-direction:column;transition:right .3s cubic-bezier(.4,0,.2,1);box-shadow:-8px 0 30px rgba(0,0,0,.1);overflow-y:auto}
.md.open{right:0}
.md-head{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid var(--border);flex-shrink:0}

.md-close{width:32px;height:32px;border-radius:8px;border:1px solid var(--border);background:#fff;font-size:22px;color:var(--muted);display:flex;align-items:center;justify-content:center;transition:all .15s;line-height:1}
.md-close:hover{background:var(--bg-hover);color:var(--ink)}
.md-quote-btn{display:block;margin:16px 20px;padding:14px;background:var(--blue);color:#fff;border-radius:12px;font-size:15px;font-weight:700;text-align:center;transition:all .2s;box-shadow:0 4px 14px rgba(8,102,179,.28)}
.md-quote-btn:hover{background:var(--blue-dark);color:#fff}
.md-nav{flex:1;padding:8px 0}
.md-link{display:block;padding:14px 20px;font-size:15px;font-weight:600;color:var(--ink);border-bottom:1px solid var(--bg-hover);transition:all .1s}
.md-link:hover{background:var(--bg-soft);color:var(--blue-bright)}
.md-acc{display:flex;align-items:center;justify-content:space-between;width:100%;padding:14px 20px;font-size:15px;font-weight:600;color:var(--ink);border:none;background:none;border-bottom:1px solid var(--bg-hover);font-family:inherit;transition:all .15s}
.md-acc:hover{background:var(--bg-soft);color:var(--blue-bright)}
.md-acc svg{transition:transform .25s;color:#94a3b8}
.md-acc.open svg{transform:rotate(180deg)}
.md-acc-panel{display:none;background:var(--bg-soft);border-bottom:1px solid var(--bg-hover)}
.md-acc-panel.open{display:block}
.md-acc-panel a{display:block;padding:12px 20px 12px 36px;font-size:14px;font-weight:500;color:var(--body);border-bottom:1px solid var(--bg-hover);transition:all .1s}
.md-acc-panel a:last-child{border-bottom:none}
.md-acc-panel a:hover{color:var(--blue-bright);background:#e8f4fd}
.md-trust{flex-shrink:0;padding:16px 20px;border-top:1px solid var(--border);background:var(--bg-soft)}
.md-trust-row{display:flex;align-items:center;justify-content:center;gap:8px;font-size:12px;font-weight:600;color:var(--muted);margin-bottom:12px}
.md-call{display:flex;align-items:center;justify-content:center;gap:8px;padding:12px;border-radius:10px;background:#15803d;color:#fff;font-size:14px;font-weight:700;box-shadow:0 2px 10px rgba(22,163,74,.25);transition:all .2s}
.md-call:hover{background:#116b33;color:#fff}

/* ==========================================================================
   Hero
   ========================================================================== */
/* The hero backdrop is decorative line-art, not a photo, so the gradient sits
   on the section itself and the artwork layers over it — no scrim needed. */
.home-banner{
  padding:100px 70px;position:relative;overflow:hidden;
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-2) 42%,var(--navy-3) 100%)
}
.home-banner-bg{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none}
.home-banner-bg img{width:100%;height:100%;object-fit:cover;object-position:center right;display:block}
.home-banner>.container{position:relative;z-index:1}
.home-banner .row{justify-content:space-between;align-items:flex-start}
.hero-col-text{width:100%}
.hero-col-calc{width:100%}
@media(min-width:992px){.hero-col-text{width:50%}.hero-col-calc{width:50%}}
@media(min-width:1200px){.hero-col-text{width:50%}.hero-col-calc{width:41.6667%}}
.home-title{position:relative;text-align:left}
.home-title h1{color:#fff;font-size:52px;font-weight:700;line-height:1.12;letter-spacing:-.02em;margin:0 0 20px}
.home-title p{color:rgba(255,255,255,.85);font-size:1rem;margin:0 0 20px;max-width:80%}
.home-rating{display:flex;align-items:center;gap:8px;margin:16px 0}
.home-rating-text{color:rgba(255,255,255,.9);font-size:16px;font-weight:500;line-height:28px}
.home-benefits{list-style:none;padding:0;margin:24px 0 0}
.home-benefits li{color:rgba(255,255,255,.95);font-size:16px;font-weight:500;padding:4px 0}
.hero-calc-nudge{display:flex;align-items:center;justify-content:center;gap:10px;margin-top:24px;color:rgba(255,255,255,.85);font-size:15px;font-weight:600;transition:all .2s;letter-spacing:.01em}
.hero-calc-nudge:hover{color:#fff}
.hero-hand-arrow{flex-shrink:0;transition:transform .3s}
.hero-calc-nudge:hover .hero-hand-arrow{transform:translate(4px,-3px)}
.hero-fineprint{margin-top:14px;font-size:12px;color:rgba(255,255,255,.65)}

/* ---------- Calculator card ---------- */
.calculator-wrapper{border-radius:16px;overflow:hidden}
.step-wrapper{background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:0 8px 32px rgba(0,0,0,.12);overflow:hidden}
.calc-tabs{display:flex;border-bottom:1px solid var(--border)}
.calc-tab{flex:1;display:flex;align-items:center;justify-content:center;gap:6px;padding:14px 16px;font-size:14px;line-height:1.5;font-weight:600;color:var(--muted);background:var(--bg-soft);border:none;transition:all .15s}
.calc-tab:first-child{border-right:1px solid var(--border)}
.calc-tab.active{background:#fff;color:var(--ink);box-shadow:inset 0 -2px 0 var(--blue)}
.calc-tab svg{flex-shrink:0;color:currentColor}
.step-1-form{padding:24px 24px 20px}
.calc-heading{font-size:18px;font-weight:700;color:var(--ink);margin:0 0 20px;text-align:center;line-height:1.4}
.calc-sub{font-size:13px;color:var(--muted);text-align:center;margin:0 0 20px;line-height:1.5}
.calc-input-label{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:var(--body);margin-bottom:6px}
.calc-input-label svg{flex-shrink:0}
.input-groups{margin-bottom:10px;padding:6px 0;position:relative}
.form-control{font-size:15px;font-weight:500;line-height:28px;border:1px solid var(--border);border-radius:8px;padding:14px 16px;width:100%;display:block;height:auto;color:var(--ink);background:#fff}
.form-control::placeholder{color:var(--muted);font-weight:400}
.form-control:focus{border-color:var(--blue);outline:none;box-shadow:0 0 0 3px rgba(8,102,179,.12)}
.btn-continue{margin-top:12px;background:linear-gradient(135deg,var(--orange-a) 0%,var(--orange-b) 100%);border-radius:8px;font-weight:700;font-size:16px;line-height:34px;color:#fff;padding:12px;width:100%;border:none;display:flex;align-items:center;justify-content:center;gap:8px;letter-spacing:.3px;position:relative;box-shadow:0 2px 8px rgba(239,108,0,.3)}
.btn-continue::after{content:"";position:absolute;inset:-4px;border-radius:14px;box-shadow:0 4px 20px rgba(239,108,0,.5),0 0 40px rgba(245,158,11,.15);opacity:0;pointer-events:none;animation:cta-glow 2.5s ease-in-out infinite}
@keyframes cta-glow{0%,100%{opacity:0}50%{opacity:1}}
.btn-continue svg{flex-shrink:0;transition:transform .2s}
.btn-continue:hover svg{transform:translateX(4px)}
.btn-track{background:var(--blue) !important}
.btn-track::after{animation:none}
.calc-cta-sub{text-align:center;font-size:12px;color:var(--muted);margin:8px 0 0}
.calc-trust-row{display:flex;align-items:center;justify-content:center;gap:18px;margin-top:16px;padding:14px 16px;background:var(--bg-soft);border-radius:10px;border:1px solid var(--border)}
.calc-trust-item{display:flex;align-items:center;gap:5px;font-size:13px;color:var(--body);font-weight:500}
.calc-trust-item svg,.calc-trust-item img{flex-shrink:0}
a.calc-trust-item{color:inherit}
.calc-license-row{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap;margin-top:14px;padding:14px 18px;background:#eef2f7;border-radius:10px;border:1px solid #dde3ec}
.calc-license-row>div{display:flex;align-items:center;gap:8px}
.calc-license-row span{font-size:14px;font-weight:800;color:var(--ink)}
.calc-license-row img{height:28px;width:28px}
.calc-guarantee{display:flex;align-items:center;justify-content:center;gap:6px;margin-top:12px;font-size:12px;color:var(--green);font-weight:500}
.calc-guarantee svg{color:var(--green);flex-shrink:0}
.calc-footnote{margin:16px 0 0;text-align:center;font-size:13px;line-height:1.6;color:rgba(255,255,255,.6)}
.track-success{text-align:center;padding:20px 0}
.track-success svg{margin:0 auto 8px}
.track-success p{margin:0;font-size:15px;color:var(--ink)}
.track-success-sub{font-size:13px;color:var(--muted);margin-top:6px}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip{display:flex;align-items:center;justify-content:center;gap:32px;flex-wrap:wrap;padding:24px 20px;background:var(--bg-soft);border-radius:12px;border:1px solid var(--border)}
.trust-strip__item{display:flex;align-items:center;gap:8px}
.trust-strip__item b{font-size:14px;font-weight:700;color:var(--ink)}
.trust-strip__item span{font-size:13px;color:var(--muted)}
.trust-strip__div{width:1px;height:24px;background:var(--border)}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-wrapper{padding:60px 0 0}
.reviews-wrapper__header{text-align:center;margin-bottom:24px}
.reviews-wrapper__badge{display:inline-flex;align-items:center;gap:8px;background:#fffbeb;border:1px solid #fde68a;border-radius:100px;padding:8px 20px;margin-bottom:16px}
.reviews-wrapper__badge span{font-weight:700;font-size:14px;color:#92400e}
.reviews-wrapper__count{font-weight:500;color:#b45309;padding-left:8px;border-left:1px solid #fde68a}
.reviews-wrapper__title{font-weight:800;font-size:32px;line-height:1.25;color:var(--ink);letter-spacing:-.02em;margin:0}
.arrows{display:flex;justify-content:flex-start;gap:10px}
.arrows img{cursor:pointer;width:52px;height:52px;transition:transform .2s,opacity .2s}
.arrows img:hover{transform:scale(1.06)}
.reviews{display:flex;flex-wrap:nowrap;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;padding-bottom:4px;margin-bottom:50px;-ms-overflow-style:none;scrollbar-width:none}
.reviews::-webkit-scrollbar{display:none}
.review{position:relative;flex:0 0 calc(33.3333% - 13.34px);min-width:calc(33.3333% - 13.34px);height:500px;scroll-snap-align:start;border:1px solid var(--border-soft);border-radius:16px;padding:32px;background:#fff;transition:all .3s cubic-bezier(.4,0,.2,1);overflow:hidden;display:flex;flex-direction:column}
.review::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#FFBB0E,var(--orange-a));opacity:0;transition:opacity .3s ease}
.review:hover{border-color:rgba(255,187,14,.3);box-shadow:0 12px 32px rgba(0,0,0,.06);transform:translateY(-3px)}
.review:hover::before{opacity:1}
.review__quote{position:absolute;top:16px;right:20px;opacity:.6}
.review-texts{flex:1;overflow:hidden}
.stars{color:var(--ink);font-size:15px;letter-spacing:2px}
.review-title{margin-bottom:16px}
.review-title span{font-weight:800;font-size:26px;line-height:1.2;color:var(--ink);letter-spacing:-.01em}
.review-text p{font-size:14.5px;line-height:1.7;color:var(--slate);margin:0}
.review-from{background:var(--bg-soft);border-radius:12px;padding:14px 16px;margin-top:20px;border:1px solid #edf0f3;display:flex;align-items:center;justify-content:space-between;gap:12px}
.review-from .name span{font-weight:700;font-size:15px;color:var(--ink)}
.review-from .logo img{width:85px;height:auto}
.see-more{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;border-radius:14px;font-weight:700;font-size:15px;background:var(--blue);color:#fff;transition:all .3s cubic-bezier(.4,0,.2,1);box-shadow:0 4px 16px rgba(8,102,179,.2)}
.see-more svg{transition:transform .3s ease}
.see-more:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(8,102,179,.3);color:#fff;background:var(--blue-dark)}
.see-more:hover svg{transform:translateX(4px)}

/* ==========================================================================
   Inline CTA
   ========================================================================== */
.inline-cta{background:linear-gradient(135deg,var(--navy) 0%,var(--navy-2) 100%);border-radius:20px;padding:48px 56px;text-align:center;position:relative;overflow:hidden}
.inline-cta::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 20% 50%,rgba(56,182,255,.12) 0%,transparent 50%),radial-gradient(circle at 80% 50%,rgba(245,158,11,.1) 0%,transparent 50%);z-index:0}
.inline-cta>*{position:relative;z-index:1}
.inline-cta-content{margin-bottom:28px}
.inline-cta-content h2{font-weight:700;font-size:32px;line-height:1.3;color:#fff;margin-bottom:12px}
.inline-cta-content p{font-size:16px;color:rgba(255,255,255,.8);margin:0 auto;max-width:600px}
.inline-cta-actions{display:flex;align-items:center;justify-content:center;gap:20px;margin-bottom:24px;flex-wrap:wrap}
.inline-cta-btn{display:inline-flex;align-items:center;padding:16px 36px;background:linear-gradient(135deg,var(--orange-a) 0%,var(--orange-b) 100%);border-radius:30px;color:#fff;font-size:18px;font-weight:700;transition:all .25s ease;box-shadow:0 4px 20px rgba(239,108,0,.4);letter-spacing:.02em}
.inline-cta-btn:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(239,108,0,.55);color:#fff}
.inline-cta-phone{display:inline-flex;align-items:center;gap:8px;color:rgba(255,255,255,.9);font-size:15px;font-weight:600;transition:color .2s}
.inline-cta-phone svg{color:#5eead4}
.inline-cta-phone:hover{color:#fff}
.inline-cta-trust{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap}
.inline-cta-trust span{font-size:13px;font-weight:500;color:rgba(255,255,255,.6)}

/* ==========================================================================
   SEO content block
   ========================================================================== */
.seo-content{padding:60px 24px}
.seo-content__inner{max-width:880px;margin:0 auto}
.seo-content__heading{font-size:1.65rem;font-weight:800;color:var(--ink);margin-bottom:20px;letter-spacing:-.02em;line-height:1.3;position:relative;padding-bottom:16px}
.seo-content__heading::after{content:"";position:absolute;bottom:0;left:0;width:60px;height:3px;background:linear-gradient(90deg,var(--blue),var(--blue-soft));border-radius:2px}
.seo-content__subheading{font-size:1.35rem;font-weight:800;color:var(--ink);margin:40px 0 16px;letter-spacing:-.01em;line-height:1.3}
.seo-content__text{font-size:15px;line-height:1.8;color:var(--slate);margin-bottom:16px}
.seo-content__text a{color:var(--blue);font-weight:600;border-bottom:1px solid transparent;transition:border-color .2s ease}
.seo-content__text a:hover{border-bottom-color:var(--blue)}
.seo-content__text strong{color:var(--ink)}
.seo-content__card{background:linear-gradient(180deg,var(--bg-soft) 0%,#fff 100%);border:1px solid var(--border-soft);border-radius:20px;padding:36px 32px;margin:32px 0;position:relative}
.seo-content__card::before{content:"";position:absolute;top:0;left:24px;right:24px;height:3px;background:linear-gradient(90deg,var(--blue),var(--blue-soft));border-radius:0 0 3px 3px}
.seo-content__card .seo-content__subheading{margin-top:0}
.seo-content__table-wrap{overflow-x:auto;margin:20px 0}
.seo-content__table{width:100%;border-collapse:separate;border-spacing:0;font-size:14px;border-radius:12px;overflow:hidden;border:1px solid var(--border-soft)}
.seo-content__table thead tr{background:linear-gradient(135deg,var(--blue) 0%,var(--blue-alt) 100%)}
.seo-content__table thead th{padding:14px 20px;text-align:left;font-weight:700;color:#fff;font-size:13px;text-transform:uppercase;letter-spacing:.05em}
.seo-content__table tbody tr{transition:background .2s ease}
.seo-content__table tbody tr:hover{background:#f0f7ff}
.seo-content__table tbody td{padding:14px 20px;border-bottom:1px solid var(--bg-hover);color:var(--body)}
.seo-content__table tbody tr:last-child td{border-bottom:none}
.seo-content__two-col{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin:32px 0}
.seo-content__col-card{background:#fff;border:1px solid var(--border-soft);border-radius:16px;padding:28px 24px;transition:all .3s ease}
.seo-content__col-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.06)}
.seo-content__col-icon{display:flex;align-items:center;justify-content:center;width:48px;height:48px;background:#f0f7ff;border-radius:12px;margin-bottom:16px}
.seo-content__col-title{font-size:1.1rem;font-weight:800;margin-bottom:12px}
.seo-content__col-title a{color:var(--ink);transition:color .2s ease}
.seo-content__col-title a:hover{color:var(--blue)}
.seo-content__steps{display:flex;flex-direction:column;gap:16px;margin:20px 0 32px}
.seo-content__step{display:flex;align-items:flex-start;gap:16px;padding:20px;background:#fff;border:1px solid var(--border-soft);border-radius:14px;transition:all .25s ease}
.seo-content__step:hover{border-color:rgba(8,102,179,.2);box-shadow:0 4px 12px rgba(0,0,0,.04)}
.seo-content__step strong{display:block;font-size:15px;color:var(--ink);margin-bottom:4px}
.seo-content__step p{font-size:14px;line-height:1.7;color:var(--muted);margin:0}
.seo-content__step-num{display:flex;align-items:center;justify-content:center;min-width:36px;height:36px;border-radius:10px;background:linear-gradient(135deg,var(--blue),var(--blue-soft));color:#fff;font-weight:800;font-size:14px;flex-shrink:0}
.seo-content__features{display:flex;flex-direction:column;gap:12px;margin:16px 0 24px}
.seo-content__features--grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.seo-content__feature{display:flex;align-items:flex-start;gap:14px;padding:16px 20px;background:var(--bg-soft);border-radius:12px;font-size:14.5px;line-height:1.7;color:var(--slate);transition:background .2s ease}
.seo-content__feature:hover{background:#f0f7ff}
.seo-content__feature svg{flex-shrink:0;margin-top:2px}
.seo-content__feature strong{color:var(--ink)}
.seo-content__feature a{color:var(--blue)}

/* ==========================================================================
   How it works widget
   ========================================================================== */
.section-heading{font-weight:700;font-size:32px;line-height:1.25;color:var(--ink);margin:0}
.how-it-works-widget{border-radius:30px}
.how-it-works-widget .bg-gray{border-radius:30px;background:#fafafa}
.how-it-works-widget .wrapper{border-radius:28px;margin-bottom:20px}
.img-text-wrapper{display:flex;justify-content:space-between;align-items:center;padding:40px;gap:50px}
.img-text-wrapper .img-wrapper{flex-basis:calc(50% - 25px);position:relative}
.img-text-wrapper .text-wrapper{flex-basis:calc(50% - 25px)}
.img-text-wrapper .text-wrapper>span{font-weight:700;font-size:32px;line-height:42px;color:#000;display:block}
.img-text-wrapper .text-wrapper .text{margin-top:30px}
.img-text-wrapper .text-wrapper .text p{font-weight:400;font-size:16px;line-height:1.84;color:#6c6c6c;margin:0}
.dotted-icon-1,.dotted-icon-2{display:none}
@media(min-width:1400px){
  .dotted-icon-1{display:block;position:absolute;left:200px;top:82%}
  .dotted-icon-2{display:block;position:absolute;right:136px;top:99%}
}

/* ==========================================================================
   Transport process
   ========================================================================== */
.transport-process{padding:80px 0;background:var(--bg-soft);border-radius:20px;background-image:url('../assets/img/map-bg.svg');background-repeat:no-repeat;background-position:center center;position:relative;overflow:hidden}
.transport-process .stroke-img{position:absolute;left:0;bottom:0}
.transport-process .img-text{display:flex;align-items:center;justify-content:center;gap:40px}
.transport-process .img-text .img{flex-basis:36%}
.transport-process .img-text .img img{border-radius:16px}
.transport-process .img-text .text{flex-basis:43%}
.transport-process .img-text.w-100 .text{flex-basis:100%;max-width:820px;text-align:center}
.transport-process .img-text.w-100 .info-button{justify-content:center;display:flex}
.transport-process .titles span{font-weight:700;font-size:14px;line-height:34px;color:var(--blue)}
.transport-process .titles h3{margin-top:10px;font-weight:700;font-size:32px;line-height:1.15;color:#000}
.transport-process .content{margin-top:36px}
.transport-process .content p{font-size:15px;line-height:1.8;color:#4a5568;margin:0}
.transport-process .info-button{margin-top:48px}

/* Arrow button */
.arrow-button{display:inline-flex}
.arrow-button a{display:inline-flex;align-items:center;gap:8px;background:var(--blue);border-radius:12px;padding:14px 28px;font-weight:700;font-size:15px;line-height:1.6;letter-spacing:.01em;color:#fff;transition:all .25s ease;box-shadow:0 2px 8px rgba(8,102,179,.2)}
.arrow-button a:hover{background:var(--blue-dark);transform:translateY(-2px);box-shadow:0 6px 20px rgba(8,102,179,.3);color:#fff}
.arrow-button svg{margin-left:4px;width:22px;height:22px;flex-shrink:0;transition:transform .25s ease}
.arrow-button a:hover svg{transform:translateX(3px)}

/* ==========================================================================
   Page banners
   ========================================================================== */
.page-banners{margin:30px 0}
.banner-wrapper{background-size:cover;background-position:center center;background-repeat:no-repeat;padding:48px;border-radius:20px;position:relative;overflow:hidden}
.banner-wrapper::before{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(0,0,0,.55) 0%,rgba(0,0,0,.3) 100%);z-index:0}
.banner-wrapper .titles,.banner-wrapper .buttons{position:relative;z-index:1}
.banner-wrapper .titles{margin-bottom:32px}
.banner-wrapper .titles .main{margin-bottom:12px}
.banner-wrapper .titles .main span{color:#fff;font-weight:700;font-size:36px;line-height:1.3}
.banner-wrapper .titles .sub span{color:rgba(255,255,255,.9);font-weight:500;font-size:18px;line-height:1.6}
.banner-wrapper .buttons{display:flex;gap:16px;flex-wrap:wrap}
.btn-banner{display:inline-flex;align-items:center;justify-content:center;min-width:180px;background:linear-gradient(135deg,var(--orange-a) 0%,var(--orange-b) 100%);border:none;border-radius:30px;padding:14px 28px;font-weight:700;font-size:17px;line-height:1.5;letter-spacing:.03em;color:#fff;transition:all .25s ease;box-shadow:0 4px 14px rgba(239,108,0,.35)}
.btn-banner:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(239,108,0,.5);color:#fff}
.btn-banner.call{background:#fff;color:#000;box-shadow:0 4px 14px rgba(0,0,0,.15);border:2px solid #fff}
.btn-banner.call:hover{background:linear-gradient(135deg,var(--orange-a) 0%,var(--orange-b) 100%);color:#fff;border-color:transparent;box-shadow:0 6px 20px rgba(239,108,0,.5)}

/* ==========================================================================
   Made easier
   ========================================================================== */
.made-easier{position:relative;border-radius:20px;background-image:url('../assets/img/truck-bg.webp');background-repeat:no-repeat;background-size:cover;background-position:center;padding:80px;overflow:hidden}
.made-easier::before{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(10,22,40,.88) 0%,rgba(15,40,71,.82) 60%,rgba(11,58,107,.78) 100%);border-radius:20px;z-index:0}
.made-easier>*{position:relative;z-index:1}
.made-easier .route-img{position:absolute;right:10px;bottom:-40px;opacity:.6}
.made-easier .texts{max-width:66.6667%;margin:0 auto}
.made-easier .texts .title{margin-bottom:40px}
.made-easier .texts .title h2{font-weight:700;font-size:36px;line-height:1.3;text-align:center;color:#fff;letter-spacing:-.01em}
.made-easier .texts .text p{font-weight:400;font-size:16px;line-height:1.8;text-align:center;color:rgba(255,255,255,.85);max-width:700px;margin:0 auto 1rem}

/* ==========================================================================
   Shipping cost (01 / 02 / 03)
   ========================================================================== */
.shipping-cost{background:linear-gradient(180deg,var(--bg-soft) 0%,#fff 100%);border-radius:20px;padding:60px 40px;position:relative;overflow:hidden;border-top:1px solid #edf0f3}
.shipping-cost::before{content:"";position:absolute;top:0;left:50%;transform:translateX(-50%);width:80px;height:4px;background:linear-gradient(90deg,var(--blue),var(--blue-soft));border-radius:2px}
.shipping-cost .titles{margin-bottom:52px;text-align:center}
.shipping-cost .titles span{font-weight:800;font-size:12px;line-height:34px;letter-spacing:.12em;text-transform:uppercase;background:linear-gradient(135deg,var(--blue),var(--blue-soft));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.shipping-cost .titles h2{margin:12px auto 0;font-weight:800;font-size:32px;line-height:1.25;color:var(--ink);letter-spacing:-.02em;max-width:540px}
.costs{display:flex;justify-content:center;margin-bottom:48px;position:relative;align-items:stretch}
.cost{flex:1;max-width:340px;background:#fff;border-radius:20px;padding:40px 32px 36px;border:1px solid var(--border-soft);position:relative;text-align:center;transition:all .3s cubic-bezier(.4,0,.2,1);margin:0 12px}
.cost::before{content:"";position:absolute;top:0;left:24px;right:24px;height:3px;background:linear-gradient(90deg,var(--blue),var(--blue-soft));border-radius:0 0 3px 3px;opacity:0;transition:opacity .3s ease}
.cost:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(8,102,179,.1),0 8px 16px rgba(0,0,0,.04);border-color:rgba(8,102,179,.2)}
.cost:hover::before{opacity:1}
.cost:hover .cost__step-num{background:linear-gradient(135deg,var(--blue),var(--blue-soft));color:#fff;transform:scale(1.05)}
.cost:hover .cost__icon-wrap{transform:scale(1.08)}
.cost__step-num{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:10px;background:#f0f7ff;color:var(--blue);font-weight:800;font-size:13px;margin-bottom:20px;transition:all .3s ease;letter-spacing:.02em}
.cost__icon-wrap{display:flex;align-items:center;justify-content:center;width:88px;height:88px;margin:0 auto 24px;background:linear-gradient(145deg,#f0f7ff 0%,#e8f4fd 100%);border-radius:50%;transition:transform .3s ease}
.cost__icon-wrap img{max-height:52px;max-width:52px;object-fit:contain}
.cost-text .title{margin-bottom:12px}
.cost-text .title span{font-weight:800;font-size:19px;line-height:1.3;color:var(--ink);letter-spacing:-.01em}
.cost-text .text p{font-weight:400;font-size:14px;line-height:1.75;color:var(--muted);margin:0}
.cost__connector{position:absolute;right:-24px;top:50%;transform:translateY(-50%);z-index:2;display:flex;align-items:center;justify-content:center;width:36px;height:36px;background:#fff;border-radius:50%;border:1px solid var(--border-soft);box-shadow:0 2px 8px rgba(0,0,0,.04)}
.shipping-cost__cta{display:inline-flex;align-items:center;gap:10px;padding:16px 36px;background:linear-gradient(135deg,var(--blue) 0%,var(--blue-alt) 100%);color:#fff;font-weight:700;font-size:16px;border-radius:14px;transition:all .3s cubic-bezier(.4,0,.2,1);box-shadow:0 4px 16px rgba(8,102,179,.25),0 2px 4px rgba(0,0,0,.08);letter-spacing:-.01em}
.shipping-cost__cta svg{transition:transform .3s ease}
.shipping-cost__cta:hover{background:linear-gradient(135deg,var(--blue-dark) 0%,#0871be 100%);transform:translateY(-2px);box-shadow:0 8px 24px rgba(8,102,179,.3);color:#fff}
.shipping-cost__cta:hover svg{transform:translateX(4px)}

/* ==========================================================================
   Why book (alternating text / image)
   ========================================================================== */
.why-book{background:#fff;border-radius:20px;padding:60px 40px;border:1px solid var(--border)}
.text-img{display:flex;justify-content:space-between;align-items:center}
.text-img:not(:last-child){margin-bottom:48px;padding-bottom:48px;border-bottom:1px solid var(--bg-hover)}
.text-img .text{flex-basis:47%;min-width:0}
.text-img .image{flex-basis:47%;min-width:0}
.text-img .image img{border-radius:16px;width:100%}
.text-img .title h2{font-weight:700;font-size:26px;line-height:1.3;color:var(--ink);margin-bottom:16px}
.text-img .content p{font-size:15px;line-height:1.75;color:#555}
.text-img .content a{color:var(--blue);font-weight:600}
ul.checks{list-style:none;padding:0;margin:24px 0 8px}
ul.checks li{display:flex;align-items:center;margin-bottom:20px;gap:16px}
ul.checks li span{font-weight:400;font-size:16px;line-height:1.84;color:#6c6c6c}
ul.checks li img{width:36px;height:36px;flex-shrink:0}

/* ==========================================================================
   States
   ========================================================================== */
.main-state-text{text-align:center;margin-bottom:25px}
.main-state-text .state-top{font-size:32px;font-weight:600;margin-bottom:12px;color:var(--ink)}
.car-transport{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;padding:50px 0}
.state-transport{background:#f3f7f8;display:flex;align-items:center;justify-content:space-between;padding:12px;border-radius:6px;gap:10px;transition:background .15s ease}
.state-transport:hover{background:#e8f1f4}
.state-text{display:flex;align-items:center;gap:10px}
.state-text img{width:30px;height:20px;object-fit:cover;border-radius:2px;flex-shrink:0}
.state-text span a{color:#467791;font-size:18px;font-weight:600}
.state-text span a:hover{color:var(--blue)}

/* ==========================================================================
   B services
   ========================================================================== */
.b-services{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:32px;margin-bottom:40px}
.b-service{background:#f9fafc;border:2px solid #f0f0f0;border-radius:14px;padding:28px;transition:all .3s ease}
.b-service:hover{border-color:var(--blue);transform:translateY(-4px);box-shadow:0 12px 24px rgba(0,0,0,.08)}
.b-service .service-title h3{font-size:18px;font-weight:700;color:#000;margin-bottom:12px;line-height:1.4}
.b-service .service-desc p{font-size:14px;line-height:1.7;color:#555;margin:0}
.b-service a{color:var(--blue)}
.b-service a:hover{color:var(--blue-dark)}

/* ==========================================================================
   Recent articles
   ========================================================================== */
.recent-articles{padding:40px}
.recent-top{display:flex;justify-content:space-between;align-items:flex-end;gap:24px}
.recent-top .left .titles span{font-weight:700;font-size:16px;line-height:41px;color:var(--blue)}
.recent-top .left .titles h4{font-weight:700;font-size:32px;line-height:41px;color:#000;margin:0}
.articles{margin-top:56px;display:flex;flex-wrap:nowrap;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;-ms-overflow-style:none;scrollbar-width:none;padding-bottom:60px}
.articles::-webkit-scrollbar{display:none}
.article{flex:0 0 calc(33.3333% - 13.34px);min-width:calc(33.3333% - 13.34px);scroll-snap-align:start;padding:20px;border:3px solid #f0f0f0;border-radius:35px;position:relative;color:inherit;background:#fff;transition:border-color .25s ease}
.article:hover{border-color:var(--blue-bright)}
.article:hover .article-content .title{color:var(--blue)}
.article:hover .article-button{display:block}
.article-cover{margin-bottom:24px}
.article-cover img{border-radius:24px;width:100%;height:300px;object-fit:cover;display:block}
.article-content{margin-bottom:40px}
.article-content .title{font-weight:700;font-size:18px;line-height:1.5;color:#000;margin-bottom:12px;transition:color .2s}
.article-content .summary{font-weight:400;font-size:16px;line-height:1.84;color:#6c6c6c}
.article-button{display:none;position:absolute;bottom:-25px;left:calc(50% - 58px)}
.btn-read{display:flex;justify-content:space-between;align-items:center;padding:10px 20px;background:var(--blue-bright);border-radius:36px}
.btn-read span{font-weight:400;font-size:12.5px;line-height:15px;color:#fff}
.btn-read img{margin-left:10px;width:20px;height:20px}

/* States CTA block */
.states-cta p{color:var(--muted);font-size:14px;max-width:640px;margin:8px auto 16px}
.states-cta a{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;background:var(--blue);color:#fff;border-radius:8px;font-weight:700;font-size:15px}
.states-cta a:hover{background:var(--blue-dark);color:#fff}

/* ==========================================================================
   Footer
   ========================================================================== */
.bf-footer{background:#0c1929;color:#c8cdd2;font-size:14px;line-height:1.6;position:relative;margin-top:30px}
.bf-footer::before{content:'';display:block;height:2px;background:linear-gradient(90deg,transparent 0%,#0ea5e9 30%,#38bdf8 60%,transparent 100%)}
.bf-inner{max-width:1280px;margin:0 auto;padding:0 40px}
.bf-cta-strip{border-bottom:1px solid rgba(255,255,255,.07);padding:32px 0}
.bf-cta-strip .bf-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.bf-cta-headline{font-size:clamp(18px,2vw,22px);font-weight:700;color:#fff;margin:0;letter-spacing:-.3px}
.bf-cta-sub{font-size:14px;color:#bfc5cb;margin:2px 0 0}
.bf-cta-btn{display:inline-flex;align-items:center;gap:8px;background:#005f94;color:#fff;font-size:15px;font-weight:700;padding:13px 28px;border-radius:10px;white-space:nowrap;transition:background .2s ease,transform .15s ease;flex-shrink:0}
.bf-cta-btn:hover{background:#004b75;color:#fff;transform:translateY(-1px)}
.bf-main{padding:56px 0 48px;border-bottom:1px solid rgba(255,255,255,.07)}
.bf-main .bf-inner{display:grid;grid-template-columns:280px 1fr 1fr 1fr 220px;gap:48px;align-items:start}
.bf-brand-logo{display:block;margin-bottom:16px}

.bf-brand-tagline{font-size:13px;color:#bfc5cb;line-height:1.65;margin:0 0 24px}
.bf-trust-badges{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;width:100%}
.bf-trust-badge{display:flex;align-items:center;justify-content:center;min-width:0;min-height:54px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:8px;padding:9px 12px;transition:background .15s ease}
.bf-trust-badge:hover{background:rgba(255,255,255,.1)}
.bf-trust-badge img{max-width:100%;max-height:32px;height:auto;width:auto;object-fit:contain;display:block}
.bf-nav-heading{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1.2px;color:#fff;margin:0 0 18px}
.bf-nav-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.bf-nav-col ul li a{font-size:13px;color:#bfc5cb;transition:color .15s ease;display:block}
.bf-nav-col ul li a:hover{color:#0096d6}
.bf-contact-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:14px}
.bf-contact-item svg{flex-shrink:0;color:#0096d6;margin-top:2px}
.bf-contact-item a,.bf-contact-item span{font-size:13px;color:#bfc5cb;line-height:1.5;transition:color .15s ease}
.bf-contact-item a:hover{color:#0096d6}
.bf-compliance{margin-top:20px;padding-top:16px;border-top:1px solid rgba(255,255,255,.08)}
.bf-compliance-text{font-size:11px;color:#a8aeb4;line-height:1.6;margin:0}
.bf-specialty{border-top:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb;padding:28px 0;background:#fafbfc}
.bf-specialty .bf-inner{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:28px}
.bf-specialty .bf-nav-heading{color:var(--ink)}
.bf-specialty .bf-nav-col ul li a{color:var(--slate)}
.bf-specialty .bf-nav-col ul li a:hover{color:var(--blue)}
.bf-middle{padding:28px 0;border-bottom:1px solid rgba(255,255,255,.07)}
.bf-middle .bf-inner{display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}
.bf-newsletter{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.bf-newsletter-label{font-size:14px;font-weight:600;color:#d8dce0;white-space:nowrap}
.bf-newsletter-form{display:flex;border-radius:10px;overflow:hidden;border:1px solid rgba(255,255,255,.12)}
.bf-newsletter-input{background:rgba(255,255,255,.06);border:none;outline:none;padding:10px 16px;font-size:13px;color:#fff;width:220px}
.bf-newsletter-input::placeholder{color:#a8aeb4}
.bf-newsletter-input:focus{background:rgba(255,255,255,.09)}
.bf-newsletter-btn{background:#0077b6;border:none;padding:10px 18px;font-size:13px;font-weight:700;color:#fff;transition:background .15s ease;white-space:nowrap}
.bf-newsletter-btn:hover{background:#005f94}
.bf-social{display:flex;align-items:center;gap:10px}
.bf-social-link{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;transition:background .15s ease,border-color .15s ease;color:#0096d6}
.bf-social-link:hover{background:rgba(14,165,233,.15);border-color:rgba(14,165,233,.35);color:#fff}
.bf-bottom{padding:20px 0}
.bf-bottom .bf-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.bf-copyright{font-size:12px;color:#a8aeb4}
.bf-legal{display:flex;align-items:center;gap:20px}
.bf-legal a{font-size:12px;color:#a8aeb4;transition:color .15s ease}
.bf-legal a:hover{color:#c8cdd2}

/* ==========================================================================
   Sticky bottom bar + floating CTA
   ========================================================================== */
.sb-bar{position:fixed;bottom:0;left:0;right:0;z-index:190;background:#fff;border-top:1px solid var(--border);box-shadow:0 -4px 24px rgba(0,0,0,.12);padding:12px 16px;padding-bottom:calc(12px + env(safe-area-inset-bottom,0px));transform:translateY(100%);transition:transform .35s cubic-bezier(.4,0,.2,1)}
.sb-bar.visible{transform:translateY(0)}
.sb-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;gap:12px}
.sb-call{display:flex;align-items:center;gap:6px;padding:12px 18px;border-radius:12px;border:2px solid var(--green);background:#fff;color:var(--green);font-size:14px;font-weight:700;transition:all .2s;white-space:nowrap}
.sb-call svg{color:var(--green)}
.sb-call:hover{background:var(--green);color:#fff}
.sb-call:hover svg{color:#fff}
.sb-quote-btn{flex:1;display:flex;align-items:center;justify-content:center;padding:14px 24px;border-radius:12px;background:linear-gradient(135deg,var(--orange-a) 0%,var(--orange-b) 100%);color:#fff;font-size:16px;font-weight:700;letter-spacing:.02em;transition:all .25s;box-shadow:0 4px 14px rgba(239,108,0,.35)}
.sb-quote-btn:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(239,108,0,.45);color:#fff}
.float-cta{position:fixed;right:20px;bottom:90px;z-index:180;display:flex;align-items:center;gap:8px;padding:14px 20px;border-radius:30px;background:linear-gradient(135deg,var(--orange-a) 0%,var(--orange-b) 100%);color:#fff;font-size:14px;font-weight:700;letter-spacing:.02em;box-shadow:0 6px 24px rgba(239,108,0,.4);transition:all .3s cubic-bezier(.4,0,.2,1);opacity:0;transform:translateX(100px);pointer-events:none}
.float-cta.visible{opacity:1;transform:translateX(0);pointer-events:auto}
.float-cta:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(239,108,0,.55);color:#fff}
.float-cta svg{flex-shrink:0}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media(min-width:992px){
  .shipping-cost,.why-book{padding:80px 60px}
  .made-easier{padding:80px}
}
@media(max-width:1199px){
  .review{flex-basis:calc(50% - 10px);min-width:calc(50% - 10px)}
  .bf-main .bf-inner{grid-template-columns:1fr 1fr 1fr;gap:36px}
  .bf-brand{grid-column:1/-1;display:grid;grid-template-columns:minmax(200px,280px) minmax(260px,320px);gap:10px 36px;align-items:start}
  .bf-brand-logo,.bf-brand-tagline{grid-column:1;margin-bottom:0}
  .bf-trust-badges{grid-column:2;grid-row:1/span 2}
}
@media(max-width:1024px){
  .bh-nav{gap:0}
  .bh-link{padding:8px 10px;font-size:13px}
  .article{flex-basis:calc(50% - 10px);min-width:calc(50% - 10px)}
  .bf-footer{margin-bottom:80px}
  .float-cta{display:none !important}
}
@media(min-width:1025px){.sb-bar{display:none}}
@media(max-width:991px){
  .home-banner{padding:60px}
  .home-title h1{font-size:40px}
  .home-title p{max-width:100%}
  .hero-col-calc{order:-1;margin-bottom:32px}
  .seo-content__two-col{grid-template-columns:1fr}
  .img-text-wrapper{flex-direction:column;padding:60px 40px;gap:40px}
  .img-text-wrapper.reverse{flex-direction:column-reverse}
  .img-text-wrapper .img-wrapper,.img-text-wrapper .text-wrapper{flex-basis:auto;width:100%}
  .img-text-wrapper .text-wrapper>span{font-size:26px;line-height:1.3}
  .transport-process .img-text{flex-direction:column;gap:32px}
  .transport-process .img-text .img,.transport-process .img-text .text{flex-basis:auto;width:100%}
  .transport-process .titles h3{font-size:26px}
  .costs{flex-direction:column;align-items:center;gap:20px}
  .cost{max-width:100%;width:100%;margin:0}
  .cost__connector{display:none}
  .text-img{flex-direction:column;gap:32px}
  .text-img.reverse{flex-direction:column-reverse}
  .text-img .text,.text-img .image{flex-basis:auto;width:100%}
  .made-easier .texts{max-width:100%}
  .car-transport{grid-template-columns:1fr 1fr}
  .b-services{grid-template-columns:1fr 1fr}
  .made-easier .texts .title h2{font-size:28px}
}
@media(max-width:900px){
  .bh-nav{display:none}
  .bh-burger{display:flex}
  .bh-inner{height:56px;padding:0 16px;gap:16px}
  .bh-logo img{height:32px}
  .bh-phone-num{display:none}
  .bh-phone{padding:8px}
  .bh-cta{padding:8px 16px;font-size:13px;border-radius:8px}
}
@media(max-width:767px){
  body{font-size:15px}
  .home-banner{padding:24px 16px 40px}
  .home-title h1{font-size:30px;line-height:1.15;letter-spacing:-.015em}
  .home-rating-text{font-size:14px}
  .home-benefits,.hero-calc-nudge{display:none}
  .reviews-wrapper{padding:32px 0 0}
  .reviews-wrapper__title{font-size:26px}
  .review{flex-basis:calc(100% - 0px);min-width:100%;padding:24px;height:auto;min-height:420px}
  .arrows{justify-content:center}
  .inline-cta{padding:32px 24px}
  .inline-cta-content h2{font-size:26px}
  .inline-cta-actions{flex-direction:column;gap:16px}
  .inline-cta-btn{font-size:16px}
  .inline-cta-trust{gap:8px 16px}
  .seo-content{padding:40px 16px}
  .seo-content__heading{font-size:1.4rem}
  .seo-content__card{padding:24px 20px}
  .seo-content__step{padding:16px}
  .section-heading{font-size:24px}
  .img-text-wrapper{padding:32px}
  .banner-wrapper{padding:32px 24px}
  .banner-wrapper .titles .main span{font-size:26px}
  .banner-wrapper .titles .sub span{font-size:16px}
  .banner-wrapper .buttons{flex-direction:column;gap:12px}
  .banner-wrapper .buttons .banner-button{width:100%}
  .btn-banner{width:100%;min-width:0}
  .made-easier{padding:40px 24px}
  .made-easier .route-img{display:none}
  .shipping-cost{padding:40px 20px}
  .shipping-cost .titles h2{font-size:26px}
  .shipping-cost .cost{padding:32px 24px 28px}
  .shipping-cost__cta{width:100%;justify-content:center;padding:16px 24px}
  .why-book{padding:40px 20px}
  .text-img .title h2{font-size:24px}
  .main-state-text .state-top{font-size:24px}
  .car-transport{grid-template-columns:1fr;padding:28px 0}
  .b-services{grid-template-columns:1fr}
  .recent-articles{padding:32px}
  .recent-top{flex-direction:column;align-items:flex-start;gap:12px}
  .recent-top .right{align-self:flex-end}
  .recent-top .left .titles h4{font-size:26px;line-height:1.3}
  .articles{margin-top:32px}
  .article{flex-basis:100%;min-width:100%}
  .bf-inner{padding:0 20px}
  .bf-cta-strip .bf-inner{flex-direction:column;align-items:flex-start;gap:16px}
  .bf-main .bf-inner{grid-template-columns:1fr 1fr;gap:28px}
  .bf-brand{grid-column:1/-1;grid-template-columns:1fr;gap:16px}
  .bf-brand-logo,.bf-brand-tagline,.bf-trust-badges{grid-column:1;grid-row:auto}
  .bf-trust-badges{max-width:280px}
  .bf-middle .bf-inner{flex-direction:column;align-items:flex-start;gap:20px}
  .bf-newsletter{flex-direction:column;align-items:flex-start;gap:12px}
  .bf-newsletter-input{width:180px}
}
@media(max-width:600px){
  .bn-bar{font-size:11px;padding:5px 12px}
  .bn-inner{gap:5px;flex-wrap:wrap}
  .bh-inner{height:52px;padding:0 12px}
  .bh-logo img{height:28px}
  .bh-cta{display:none}
  .sb-call-text{display:none}
  .trust-strip{gap:16px}
  .trust-strip__div{display:none}
}
@media(max-width:500px){
  .bf-main .bf-inner{grid-template-columns:1fr}
  .bf-brand{grid-template-columns:1fr}
  .bf-bottom .bf-inner{flex-direction:column;align-items:flex-start;gap:8px}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
}

/* ==========================================================================
   Brand lockup — supplied artwork, served as an image
   Two files: logo.png (navy wordmark) and logo-white.png (white wordmark with
   the red wing kept). Height is set here; width follows the aspect ratio.
   ========================================================================== */
.brand{display:block;width:auto;height:44px;max-width:100%}

/* Header */
.bh-logo{flex-shrink:0;display:flex;align-items:center;min-height:44px}
.bh-logo .brand{height:42px}

/* Mobile drawer */
.md-logo{display:flex;align-items:center}
.md-logo .brand{height:32px}

/* Footer */
.bf-brand-logo{display:inline-block;margin-bottom:16px}
.bf-brand-logo .brand{height:44px}

@media(max-width:900px){.bh-logo .brand{height:36px}}
@media(max-width:600px){.bh-logo .brand{height:31px}}
@media(max-width:400px){.bh-logo .brand{height:27px}}