/* ==================================================================
   XXL CARGO TRANSPORT — SEO landing pages (shared)
   Works with navbar.css + footer.css. Dark navy + orange, Inter.
   ================================================================== */
:root {
  --lp-bg: #061221;
  --lp-bg2: #0a1b31;
  --lp-orange: #ff6b00;
  --lp-line: rgba(255, 255, 255, .12);
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }
body { margin: 0; background: var(--lp-bg); color: #fff; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; line-height: 1.7 }
a { text-decoration: none; color: inherit }
img { display: block; max-width: 100% }
/* unified site container: same 1400 / 40px grid as the navbar, homepage and footer.
   Inner text keeps its own readable max-widths (h1/lead/p below). */
.lp-wrap { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px }

.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 0 24px; border-radius: 13px; font-weight: 800; border: 1px solid transparent; transition: .22s ease }
.lp-btn-primary { background: var(--lp-orange); color: #fff; box-shadow: 0 16px 42px rgba(255, 107, 0, .28) }
.lp-btn-primary:hover { background: #ff8422; transform: translateY(-2px) }
.lp-btn-ghost { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .2); color: #fff }
.lp-btn-ghost:hover { border-color: var(--lp-orange); transform: translateY(-2px) }

/* hero */
.lp-hero { padding: 132px 0 60px; background: radial-gradient(circle at 82% 12%, rgba(255, 107, 0, .14), transparent 30%), linear-gradient(135deg, #071425 0%, #0a1a30 55%, #050d18 100%); border-bottom: 1px solid var(--lp-line) }
.lp-breadcrumb { font-size: 13px; color: #8fa3bb; margin-bottom: 18px }
.lp-breadcrumb a:hover { color: var(--lp-orange) }
.lp-breadcrumb span[aria-current] { color: #cdd9e8 }
.lp-kicker { display: inline-flex; align-items: center; gap: 12px; color: var(--lp-orange); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em }
.lp-kicker:before { content: ""; width: 30px; height: 2px; background: var(--lp-orange); border-radius: 9px }
.lp-hero h1 { font-size: clamp(30px, 4.2vw, 48px); line-height: 1.08; letter-spacing: -.035em; margin: 16px 0 16px; max-width: 800px; font-weight: 800 }
.lp-hero h1 span { color: var(--lp-orange) }
.lp-lead { font-size: 19px; color: #d4deeb; max-width: 720px; margin: 0 0 28px }
.lp-actions { display: flex; gap: 14px; flex-wrap: wrap }

/* body sections */
.lp-section { padding: 64px 0 }
.lp-section.alt { background: var(--lp-bg2) }
.lp-section h2 { font-size: clamp(24px, 3vw, 34px); line-height: 1.12; letter-spacing: -.03em; margin: 0 0 16px; font-weight: 800 }
.lp-section h3 { font-size: 19px; margin: 26px 0 8px; font-weight: 700; letter-spacing: -.01em }
.lp-section p { color: #c4d0e0; max-width: 760px; margin: 0 0 14px }
.lp-section ul { color: #c4d0e0; max-width: 760px; padding-left: 20px; margin: 0 0 14px }
.lp-section ul li { margin-bottom: 7px }
.lp-section a { color: var(--lp-orange); font-weight: 600 }
.lp-section a:hover { text-decoration: underline }

/* feature cards */
.lp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px }
.lp-card { padding: 24px; border-radius: 16px; background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)); border: 1px solid var(--lp-line) }
.lp-card .ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(255, 107, 0, .12); border: 1px solid rgba(255, 107, 0, .35); color: var(--lp-orange); display: grid; place-items: center; font-size: 20px; margin-bottom: 14px }
.lp-card h3 { margin: 0 0 6px; font-size: 17px }
.lp-card p { margin: 0; font-size: 14px; color: #b9c6d6 }

/* internal link block */
.lp-related { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px }
.lp-related a { padding: 9px 14px; border-radius: 999px; background: rgba(255, 255, 255, .05); border: 1px solid var(--lp-line); color: #d5dfec; font-weight: 700; font-size: 13px }
.lp-related a:hover { border-color: var(--lp-orange); color: #fff; text-decoration: none }

/* FAQ accordion */
.lp-faq { max-width: 820px }
.lp-faq details { border: 1px solid var(--lp-line); border-radius: 14px; padding: 4px 18px; margin-bottom: 12px; background: rgba(255, 255, 255, .03) }
.lp-faq summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; font-size: 16px; display: flex; justify-content: space-between; gap: 16px; align-items: center }
.lp-faq summary::-webkit-details-marker { display: none }
.lp-faq summary:after { content: "+"; color: var(--lp-orange); font-size: 22px; font-weight: 800; line-height: 1 }
.lp-faq details[open] summary:after { content: "\2013" }
.lp-faq details p { color: #c4d0e0; margin: 0 0 16px; max-width: none }

/* CTA */
.lp-cta { padding: 64px 0; background: linear-gradient(135deg, #ff6b00, #ff7a00); text-align: center }
.lp-cta h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 34px); font-weight: 800 }
.lp-cta p { color: #fff; margin: 0 auto 24px; max-width: 560px }
.lp-cta .lp-btn-primary { background: #fff; color: #071322; box-shadow: none }
.lp-cta .lp-btn-ghost { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .4) }

/* match the navbar's mobile gutter (20px) so the logo and content stay aligned */
/* legal / policy pages */
.legal { max-width: 900px }
.legal h2 { font-size: clamp(19px, 2.3vw, 25px); margin: 36px 0 12px; letter-spacing: -.02em; scroll-margin-top: 120px }
.legal h3 { font-size: 16px; margin: 22px 0 8px; color: #fff; font-weight: 700 }
.legal p { color: #c4d0e0; margin: 0 0 14px; max-width: none }
.legal ul { color: #c4d0e0; margin: 0 0 16px; padding-left: 22px }
.legal li { margin-bottom: 6px }
.legal a { color: var(--lp-orange); font-weight: 600 }
.legal a:hover { text-decoration: underline }
.legal strong { color: #fff }
.legal p:first-of-type strong { color: #cdd9e8 }

@media (max-width: 1024px) {
  .lp-wrap { padding: 0 20px }
}

@media (max-width: 860px) {
  .lp-cards { grid-template-columns: 1fr }
  .lp-hero { padding: 110px 0 48px }
}
