@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');

:root {
  /* Apex DA: Orange & Deep Blue */
  --brand-orange: #FF6200;
  --brand-orange-dark: #CC4E00;
  --brand-blue: #002D72;
  --brand-blue-mid: #0042A5;
  --brand-blue-light: #005CE6;
  --brand-blue-dark: #001A42;
  --brand-dark: #1A1A1A;
  --brand-gray: #4A4A4A;
  --brand-light-gray: #E5E5E5;
  --bg-color: #F7F7F7;
  --bg-panel: #FFFFFF;
  --border-color: #D1D1D1;
  
  --success: #0A8B38;
  --warning: #F5A623;
  --info: #005CE6;
  --error: #D0021B;
  
  --radius: 8px; /* Slightly rounded, modern but professional */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  --font: 'Mona Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--brand-dark); background: var(--bg-color); min-height: 100vh; display: flex; flex-direction: column; font-size: 16px; line-height: 1.6; font-weight: 400; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: var(--brand-blue); transition: color 0.2s; }
a:hover { text-decoration: underline; color: var(--brand-blue-light); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; }

/* ── UTILS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-orange { color: var(--brand-orange); }
.text-blue { color: var(--brand-blue); }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* ── TOP BAR ── */
.topbar { background: var(--brand-blue-dark); color: #fff; font-size: 0.8rem; padding: 0.5rem 0; font-weight: 500; letter-spacing: 0.02em; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 0.3rem; opacity: 0.8; }
.topbar a:hover { opacity: 1; text-decoration: none; }
.topbar-links { display: flex; gap: 1.5rem; align-items: center; }

/* ── NAV ── */
nav { background: #fff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: stretch; min-height: 80px; gap: 2rem; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 900; font-size: 1.8rem; color: var(--brand-blue); letter-spacing: -0.04em; margin-right: 1rem; text-decoration: none; text-transform: uppercase; font-stretch: expanded; }
.nav-logo:hover { text-decoration: none; }
.nav-logo-icon { width: 44px; height: 44px; background: var(--brand-orange); display: flex; align-items: center; justify-content: center; color: #fff; border-radius: 8px 2px 8px 2px; }
.nav-logo img { height: 44px; width: auto; display: block; transition: height 0.2s; }
.nav-logo-sub { font-size: 0.65rem; font-weight: 700; color: var(--brand-gray); text-transform: uppercase; letter-spacing: 0.15em; display: block; line-height: 1; margin-top: 2px; font-stretch: normal; }

/* Mobile Toggle */
.mobile-menu-toggle { display: none; background: none; border: none; color: var(--brand-blue); cursor: pointer; padding: 0.5rem; transition: transform 0.2s; }
.mobile-menu-toggle:hover { color: var(--brand-orange); }
.mobile-menu-toggle svg { width: 28px; height: 28px; display: block; }
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); z-index: 10000; display: none; opacity: 0; transition: opacity 0.3s; }
.mobile-sidebar { position: fixed; top: 0; right: -300px; width: 300px; height: 100%; background: #fff; z-index: 10001; transition: right 0.3s ease; display: flex; flex-direction: column; padding: 2rem; }
.mobile-sidebar.active { right: 0; }
.mobile-sidebar-close { align-self: flex-end; background: none; border: none; color: var(--brand-blue); cursor: pointer; margin-bottom: 2rem; }
.mobile-sidebar-nav { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-sidebar-link { font-size: 1.2rem; font-weight: 700; color: var(--brand-blue); text-decoration: none; display: flex; align-items: center; gap: 1rem; }
.mobile-sidebar-link.active { color: var(--brand-orange); }
.mobile-overlay.active { display: block; opacity: 1; }
.nav-links { display: flex; align-items: stretch; flex: 1; gap: 0; }
.nav-link { display: flex; align-items: center; padding: 0 1rem; font-size: 1rem; font-weight: 600; color: var(--brand-gray); border-bottom: 4px solid transparent; transition: all 0.2s; white-space: nowrap; margin-top: 4px; }
.nav-link:hover { color: var(--brand-blue); border-bottom-color: var(--brand-orange); text-decoration: none; background: rgba(0, 45, 114, 0.03); }
.nav-link.active { color: var(--brand-blue); border-bottom-color: var(--brand-orange); }
.nav-actions { display: flex; align-items: center; gap: 1rem; margin-left: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem 1.75rem; border-radius: var(--radius); font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.2s; border: none; font-family: inherit; text-align: center; }
.btn-outline { background: transparent; border: 2px solid var(--brand-blue); color: var(--brand-blue); }
.btn-outline:hover { background: var(--brand-blue); color: #fff; text-decoration: none; }
.btn-primary { background: var(--brand-orange); color: #fff; }
.btn-primary:hover { background: var(--brand-orange-dark); color: #fff; text-decoration: none; }
.btn-blue { background: var(--brand-blue); color: #fff; }
.btn-blue:hover { background: var(--brand-blue-mid); color: #fff; text-decoration: none; }

/* ── HERO ── */
.hero { background: linear-gradient(to right, rgba(0,45,114,1) 0%, rgba(0,45,114,0.85) 45%, rgba(0,45,114,0.1) 100%), url('/img/hero-bg.jpg') center/cover no-repeat; padding: 6rem 0 8rem; position: relative; color: #fff; }
.hero-container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.hero-eyebrow { color: var(--brand-orange); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.hero h1 { font-size: 4.5rem; font-weight: 900; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 2rem; color:#fff; max-width:600px; }
.hero-sub { font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2.5rem; font-weight: 400; line-height: 1.5; max-width: 500px; }
.hero-features { display: flex; gap: 1rem; margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem; align-items: center; flex-wrap: wrap; }
.hero-features span { background: rgba(255,255,255,0.15); padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.85rem; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 0.5rem; backdrop-filter: blur(4px); }
.hero-features span svg { color: var(--brand-orange); }

/* ── TRACK WIDGET ── */
.track-widget { background: #fff; padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow-xl); color: var(--brand-dark); border: 1px solid var(--border-color); }
.track-widget-tabs { display: flex; gap: 1rem; margin-bottom: 1.5rem; border-bottom: 2px solid var(--border-color); padding-bottom: 1rem; }
.track-tab { font-size: 0.95rem; font-weight: 700; color: var(--brand-gray); cursor: pointer; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.track-tab.active { color: var(--brand-blue); }
.track-tab.active svg { color: var(--brand-orange); }
.track-input-group { display: flex; flex-direction: column; gap: 1rem; }
.track-input-wrapper { position: relative; }
.track-input-wrapper svg { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); color: var(--brand-gray); }
.track-input { width: 100%; padding: 1.25rem 1.25rem 1.25rem 3.5rem; border: 2px solid var(--border-color); border-radius: var(--radius); font-size: 1.1rem; font-family: inherit; font-weight: 600; color: var(--brand-dark); transition: border-color 0.2s; }
.track-input:focus { outline: none; border-color: var(--brand-blue); }
.track-btn { width: 100%; }
.track-hint { font-size: 0.8rem; color: var(--brand-gray); margin-top: 1rem; font-weight: 500; }

/* ── QUICK ACTIONS ── */
.quick-actions { padding: 3rem 0; background: #fff; border-bottom: 1px solid var(--border-color); }
.qa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.qa-item { padding: 1.5rem; border-radius: var(--radius); transition: all 0.2s; border: 1px solid transparent; }
.qa-item:hover { border-color: var(--border-color); background: var(--bg-color); transform: translateY(-3px); }
.qa-icon { width: 64px; height: 64px; margin: 0 auto 1rem; background: rgba(0, 45, 114, 0.05); color: var(--brand-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.qa-icon svg { width: 32px; height: 32px; }
.qa-item h3 { font-size: 1.1rem; color: var(--brand-blue); margin-bottom: 0.5rem; }
.qa-item p { font-size: 0.9rem; color: var(--brand-gray); margin-bottom: 1rem; }
.qa-link { font-size: 0.9rem; font-weight: 700; color: var(--brand-orange); display: inline-flex; align-items: center; gap: 0.3rem; }
.qa-link:hover { color: var(--brand-orange-dark); text-decoration: none; gap: 0.5rem; }

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-gray { background: var(--bg-color); }
.section-blue { background: var(--brand-blue); color: #fff; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.section-header.left { text-align: left; margin-left: 0; }
.section-label { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-orange); margin-bottom: 1rem; display: block; }
.section-title { font-size: 3rem; color: var(--brand-blue); font-weight: 900; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.section-blue .section-title { color: #fff; }
.section-sub { font-size: 1.15rem; color: var(--brand-gray); }
.section-blue .section-sub { color: rgba(255,255,255,0.8); }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.service-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 2.5rem; transition: all 0.3s; display: flex; flex-direction: column; height: 100%; border-top: 4px solid transparent; }
.service-card:hover { box-shadow: var(--shadow-lg); border-top-color: var(--brand-orange); transform: translateY(-5px); }
.service-icon { width: 56px; height: 56px; color: var(--brand-blue); margin-bottom: 1.5rem; }
.service-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.service-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--brand-blue); margin-bottom: 1rem; }
.service-card p { font-size: 1rem; color: var(--brand-gray); margin-bottom: 1.5rem; flex: 1; }

.expertise-card { padding: 2rem; background: #fff; border-radius: 12px; border: 1px solid var(--border-color); text-align: left; transition: all 0.3s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.expertise-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--brand-blue); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.expertise-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,45,114,0.08); border-color: transparent; }
.expertise-card:hover::before { transform: scaleX(1); }
.expertise-icon-wrap { width: 56px; height: 56px; background: rgba(0,45,114,0.05); color: var(--brand-blue); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }

.freight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }

@media (max-width: 992px) {
  .freight-grid { grid-template-columns: 1fr; margin-top: 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── SPLIT CONTENT ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-content h2 { font-size: 2.2rem; color: var(--brand-blue); margin-bottom: 1.5rem; font-weight: 900; }
.split-content p { font-size: 1.1rem; color: var(--brand-gray); margin-bottom: 1.5rem; }
.split-list { list-style: none; margin-bottom: 2rem; }
.split-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; font-size: 1.05rem; font-weight: 500; }
.split-list li svg { color: var(--brand-orange); flex-shrink: 0; margin-top: 0.2rem; }
.split-image { border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; position: relative; }
.split-image img { width: 100%; height: auto; display: block; }
.split-image::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); border-radius: var(--radius); }

/* ── STATS / TRUST STRIP ── */
.trust-strip { background: #fff; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 4rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.trust-stat { position: relative; }
.trust-stat::after { content: ''; position: absolute; right: -1rem; top: 10%; bottom: 10%; width: 1px; background: var(--border-color); }
.trust-stat:last-child::after { display: none; }
.trust-num { font-size: 3rem; font-weight: 900; color: var(--brand-orange); line-height: 1; margin-bottom: 0.5rem; font-stretch: expanded; }
.trust-lbl { font-size: 1rem; font-weight: 700; color: var(--brand-blue); text-transform: uppercase; letter-spacing: 0.05em; }
.trust-sub { font-size: 0.85rem; color: var(--brand-gray); margin-top: 0.5rem; display: block; }

/* ── TRACKING PAGE SPECIFIC ── */
.page-header { background: var(--brand-blue); color: #fff; padding: 4rem 0 3rem; border-bottom: 6px solid var(--brand-orange); }
.page-title { font-size: 3.5rem; font-weight: 900; margin-bottom: 0.5rem; font-stretch: expanded; letter-spacing: -0.03em; }
.breadcrumb { font-size: 0.9rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--brand-orange); }

.tracking-wrap { max-width: 900px; margin: -2rem auto 4rem; position: relative; z-index: 10; }
.track-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; margin-bottom: 2rem; border: 1px solid var(--border-color); }
.track-card-header { background: #f8fafc; padding: 2rem; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.track-code-block { display: flex; flex-direction: column; gap: 0.25rem; }
.track-code-lbl { font-size: 0.85rem; font-weight: 700; color: var(--brand-gray); text-transform: uppercase; letter-spacing: 0.05em; }
.track-code-val { font-size: 2rem; font-weight: 900; color: var(--brand-blue); font-family: monospace; letter-spacing: 0.02em; }
.status-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; font-size: 1rem; font-weight: 800; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em; }
.status-preparing { background: rgba(245, 166, 35, 0.15); color: #B37100; border: 1px solid rgba(245, 166, 35, 0.3); }
.status-in_transit { background: rgba(0, 92, 230, 0.1); color: var(--brand-blue-light); border: 1px solid rgba(0, 92, 230, 0.2); }
.status-held { background: rgba(208, 2, 27, 0.1); color: var(--error); border: 1px solid rgba(208, 2, 27, 0.2); }
.status-delivered { background: rgba(10, 139, 56, 0.1); color: var(--success); border: 1px solid rgba(10, 139, 56, 0.2); }

.track-details-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 2rem; gap: 1.5rem; background: #fff; }
.track-detail-item { display: flex; flex-direction: column; gap: 0.25rem; }
.detail-lbl { font-size: 0.8rem; font-weight: 700; color: var(--brand-gray); text-transform: uppercase; letter-spacing: 0.05em; }
.detail-val { font-size: 1.1rem; font-weight: 700; color: var(--brand-dark); }

/* Tracking Progress Bar */
.track-progress { padding: 2rem 2rem 1.5rem; background: #fff; border-bottom: 1px solid var(--border-color); }
.progress-bar-wrap { position: relative; height: 8px; background: var(--bg-color); border-radius: 4px; margin: 2rem 0 1rem; }
.progress-bar-fill { position: absolute; left: 0; top: 0; height: 100%; background: var(--brand-orange); border-radius: 4px; transition: width 0.5s ease; }
.progress-steps { display: flex; justify-content: space-between; position: relative; top: -12px; }
.progress-step { width: 32px; height: 32px; background: #fff; border: 3px solid var(--bg-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; transition: all 0.3s; }
.progress-step svg { width: 14px; height: 14px; color: transparent; }
.progress-step.done { border-color: var(--brand-orange); background: var(--brand-orange); }
.progress-step.done svg { color: #fff; }
.progress-step.active { border-color: var(--brand-orange); background: #fff; box-shadow: 0 0 0 4px rgba(255, 98, 0, 0.15); }
.progress-step.active svg { display: none; }
.progress-step.active::after { content: ''; width: 10px; height: 10px; background: var(--brand-orange); border-radius: 50%; }
.progress-labels { display: flex; justify-content: space-between; margin-top: 0.5rem; font-size: 0.85rem; font-weight: 700; color: var(--brand-gray); text-transform: uppercase; }
.progress-label { flex: 1; text-align: center; }
.progress-label:first-child { text-align: left; }
.progress-label:last-child { text-align: right; }
.progress-label.active { color: var(--brand-blue); }

/* Timeline */
.timeline-section { padding: 2rem; border-top: 1px solid var(--border-color); background: #fff; }
.timeline-title { font-size: 1.25rem; font-weight: 800; color: var(--brand-blue); margin-bottom: 2rem; display: flex; align-items: center; gap: 0.5rem; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 11px; width: 2px; background: var(--border-color); }
.tl-item { position: relative; margin-bottom: 2.5rem; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: -2rem; top: 0.15rem; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--border-color); z-index: 2; display: flex; align-items: center; justify-content: center; }
#tl-dot svg { width: 12px; height: 12px; stroke-width: 3; color: var(--brand-gray); }
.tl-item.done .tl-dot { background: var(--success); border-color: var(--success); box-shadow: 0 0 0 4px rgba(10, 139, 56, 0.1); }
.tl-item.done .tl-dot svg { color: #fff; }
.tl-item.active .tl-dot { background: var(--brand-orange); border-color: var(--brand-orange); box-shadow: 0 0 0 4px rgba(255, 98, 0, 0.15); width: 28px; height: 28px; transform: translateX(-2px); }
.tl-item.active .tl-dot svg { color: #fff; width: 14px; height: 14px; }
.tl-content { padding-left: 1rem; }
.tl-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.25rem; }
.tl-status { font-size: 1.1rem; font-weight: 800; color: var(--brand-dark); text-transform: uppercase; }
.tl-date { font-size: 0.9rem; font-weight: 600; color: var(--brand-gray); background: var(--bg-color); padding: 0.2rem 0.6rem; border-radius: 4px; }
.tl-desc { font-size: 0.95rem; color: var(--brand-gray); }

/* ── FAQ & ACCORDION ── */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.accordion { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-item { border-bottom: 1px solid var(--border-color); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn { width: 100%; text-align: left; padding: 1.5rem; background: #fff; border: none; font-size: 1.1rem; font-weight: 700; color: var(--brand-blue); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; font-family: inherit; }
.accordion-btn:hover { background: var(--bg-color); }
.accordion-icon { width: 24px; height: 24px; color: var(--brand-orange); transition: transform 0.3s; flex-shrink: 0; }
.accordion-item.active .accordion-icon { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: #fff; }
.accordion-inner { padding: 0 1.5rem 1.5rem; color: var(--brand-gray); font-size: 1rem; line-height: 1.7; }

/* ── ALERT BOXES ── */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); display: flex; align-items: flex-start; gap: 0.75rem; font-weight: 600; margin-bottom: 1.5rem; font-size: 0.95rem; }
.alert svg { flex-shrink: 0; margin-top: 0.1rem; }
.alert-info { background: #E6F0FF; color: var(--brand-blue-mid); border: 1px solid #B3D1FF; }
.alert-error { background: #FDECEC; color: var(--error); border: 1px solid #F8CACC; }

/* ── FORMS ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--border-color); border-radius: var(--radius); font-size: 1rem; font-family: inherit; transition: all 0.2s; }
.form-control:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(0, 45, 114, 0.1); }

/* ── PROSE (Policies) ── */
.prose { max-width: 800px; margin: 0 auto; background: #fff; padding: 3rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
.prose h2 { font-size: 1.75rem; color: var(--brand-blue); margin: 2.5rem 0 1rem; border-bottom: 2px solid var(--bg-color); padding-bottom: 0.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.25rem; color: var(--brand-dark); margin: 1.5rem 0 0.75rem; }
.prose p { margin-bottom: 1.25rem; color: var(--brand-gray); }
.prose ul { padding-left: 1.5rem; margin-bottom: 1.5rem; color: var(--brand-gray); }
.prose li { margin-bottom: 0.5rem; }

/* Policy Content */
.policy-content { background: #fff; padding: 3rem 4rem; border-radius: var(--radius); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
@media (max-width: 768px) {
  .policy-content { padding: 1.5rem; }
}

/* ── FOOTER ── */
footer { background: var(--brand-dark); color: var(--brand-light-gray); padding: 5rem 0 0; margin-top: auto; border-top: 6px solid var(--brand-orange); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand { margin-bottom: 1.5rem; }
.footer-logo { font-size: 1.5rem; font-weight: 900; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-logo img { height: 32px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-logo-icon { width: 32px; height: 32px; background: var(--brand-orange); display: flex; align-items: center; justify-content: center; border-radius: 6px 2px 6px 2px; }
.footer-desc { font-size: 0.95rem; line-height: 1.6; opacity: 0.8; margin-bottom: 1.5rem; max-width: 300px; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: #fff; background: rgba(255,255,255,0.1); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.2s; }
.footer-social a:hover { background: var(--brand-orange); transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a { color: var(--brand-light-gray); transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-orange); text-decoration: none; }
.footer-bottom { background: #111; padding: 1.5rem 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: #fff; }

/* ── SERVICE PORTFOLIO SECTION ── */
.portfolio-section { padding: 6rem 0; background: #fff; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.portfolio-card { border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; background: #fff; }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.portfolio-card-header { padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.portfolio-sla { padding: 0.25rem 0.75rem; border-radius: 4px; font-weight: 800; }

.card-blue .portfolio-card-header { background: var(--brand-blue); color: #fff; }
.card-blue .portfolio-sla { background: rgba(255,255,255,0.2); color: #fff; }

.card-white .portfolio-card-header { background: #fff; color: var(--brand-gray); border-bottom: 1px solid var(--border-color); border-top: 5px solid var(--brand-orange); }
.card-white .portfolio-sla { background: var(--bg-color); color: var(--brand-gray); }

.card-dark .portfolio-card-header { background: #2A2A2A; color: #fff; }
.card-dark .portfolio-sla { background: rgba(255,255,255,0.15); color: #fff; }

.portfolio-card-body { padding: 2.5rem 2rem; flex: 1; }
.portfolio-icon { width: 52px; height: 52px; background: rgba(0,45,114,0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--brand-blue); margin-bottom: 1.5rem; }
.portfolio-icon svg { width: 24px; height: 24px; stroke-width: 2.5; }

.portfolio-badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 4px; background: var(--brand-orange); color: #fff; font-size: 0.75rem; font-weight: 900; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; }

.portfolio-card h3 { font-size: 1.5rem; color: var(--brand-blue); margin-bottom: 1rem; font-weight: 900; letter-spacing: -0.02em; }
.portfolio-card p { font-size: 0.95rem; color: var(--brand-gray); line-height: 1.6; margin-bottom: 0; }

.portfolio-card-footer { padding: 2rem; border-top: 1px solid var(--bg-color); background: #fff; }
.portfolio-list { list-style: none; }
.portfolio-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--brand-gray); margin-bottom: 0.75rem; font-weight: 600; }
.portfolio-list li:last-child { margin-bottom: 0; }
.portfolio-list li svg { color: var(--success); flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  .hero h1 { font-size: 3.5rem; }
  .hero-features { justify-content: center; }
  .qa-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { order: -1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .trust-stat::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-toggle { display: flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .nav-inner { justify-content: space-between; align-items: center; min-height: 70px; width: 100%; }
  .nav-logo img { height: 38px; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .hero { padding: 4rem 0 6rem; }
  .hero h1 { font-size: 2.8rem; }
  .section { padding: 4rem 0; }
  .section-title { font-size: 2.2rem; }
  
  .track-widget { padding: 1.5rem; }
  .track-code-val { font-size: 1.5rem; }
  .track-details-grid { grid-template-columns: 1fr 1fr; padding: 1.5rem; gap: 1rem; }
  
  .timeline { padding-left: 1.5rem; }
  .tl-header { flex-direction: column; gap: 0.5rem; }
  .tl-date { text-align: left !important; align-self: flex-start; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  
  .prose { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-features { flex-direction: column; align-items: center; width: 100%; }
  .hero-features span { width: 100%; justify-content: center; }
  
  .qa-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  
  .track-card-header { padding: 1.25rem; flex-direction: column; align-items: flex-start; }
  .track-details-grid { grid-template-columns: 1fr; }
  
  .progress-labels { font-size: 0.7rem; }
  .progress-step { width: 28px; height: 28px; }
  
  .accordion-btn { padding: 1rem; font-size: 1rem; }
  .accordion-inner { padding: 0 1rem 1rem; font-size: 0.9rem; }
  .track-widget-tabs { flex-wrap: wrap; }
}

@keyframes spin { 100% { transform: rotate(360deg); } }
