/*
  site.css — Shared styles for Beyond Transport site-wide redesign
  Supplements main.css (does not replace it)
*/

/* ──────────────────────────────────────────
   DROPDOWN NAVIGATION
────────────────────────────────────────── */
.has-dropdown { position: relative; }

.nav-dd-trigger {
    display: flex !important;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.nav-dd-trigger .dd-arrow {
    font-size: 11px;
    transition: transform 0.2s;
    display: inline-block;
    opacity: 0.7;
}
.has-dropdown:hover .dd-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(49,52,80,.16), 0 2px 8px rgba(49,52,80,.06);
    padding: 10px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.20s ease, transform 0.20s ease, visibility 0.20s;
    z-index: 1000;
    border: 1px solid rgba(112,67,159,.10);
}
.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nd-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: background 0.15s;
    color: inherit;
}
.nd-item:hover { background: var(--purple-50, #f8f5fb); }
.nd-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: #fff; flex-shrink: 0;
}
.nd-text strong {
    display: block;
    font-size: 13.5px; font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}
.nd-text span {
    display: block;
    font-size: 12px; color: #6b7280;
    margin-top: 2px;
}
.nd-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 6px 12px;
}

/* Start Free Trial nav CTA */
.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #a145fe 0%, #7c3aed 100%);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px; font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    margin-left: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(161,69,254,.30);
    letter-spacing: -0.01em;
}
.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(161,69,254,.45);
    color: #fff !important;
    background: linear-gradient(135deg, #b060ff 0%, #8b5cf6 100%);
}
.navbar-area.sticky .btn-nav-cta {
    background: linear-gradient(135deg, #70439f 0%, #a145fe 100%);
    box-shadow: 0 2px 12px rgba(112,67,159,.25);
}

/* Mobile: show dropdown items stacked */
@media (max-width: 991px) {
    .nav-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        padding: 0 0 0 16px;
        min-width: auto;
        display: none;
    }
    .has-dropdown.open .nav-dropdown { display: block; }
    .has-dropdown:hover .nav-dropdown,
    .has-dropdown.open .nav-dropdown {
        transform: none;
        opacity: 1;
        visibility: visible;
    }
    /* Override main.css `#nav .nav-item a { display:block }` so icon + text stay inline */
    #nav .nav-item .nd-item { display: flex; align-items: center; padding: 7px 8px; }
    .nd-icon { width: 28px; height: 28px; font-size: 13px; border-radius: 6px; }
    .nd-text strong { font-size: 12px; }
    .nd-text span { display: none; }
    .btn-nav-cta { margin: 12px 0 0 0; display: block; text-align: center; }
}

/* ──────────────────────────────────────────
   INNER PAGE HERO (shared across feature/resource pages)
────────────────────────────────────────── */
.page-hero {
    padding: 130px 0 72px;
    background: linear-gradient(160deg, var(--purple-950,#291540) 0%, var(--purple-800,#4d2e6e) 60%, #1a1040 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(161,69,254,.15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(228,78,131,.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.page-hero .breadcrumb-trail {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin-bottom: 16px;
}
.page-hero .breadcrumb-trail a { color: rgba(255,255,255,.6); text-decoration: none; }
.page-hero .breadcrumb-trail a:hover { color: #fff; }
.page-hero .breadcrumb-trail span { margin: 0 6px; }
.page-hero .ph-badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    font-size: 12px; font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .7px;
    border: 1px solid rgba(255,255,255,.15);
}
.page-hero h1 {
    font-size: 48px; font-weight: 800;
    color: #fff; line-height: 1.1;
    margin-bottom: 20px;
}
.page-hero h1 .accent { color: #c084fc; }
.page-hero p.lead {
    font-size: 18px; color: rgba(255,255,255,.75);
    line-height: 1.7; max-width: 580px;
    margin: 0 auto 32px;
}
.ph-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-ph-primary {
    display: inline-flex; align-items: center;
    background: linear-gradient(135deg, #a145fe 0%, #7c3aed 100%);
    color: #fff !important; padding: 12px 26px;
    border-radius: 10px; font-size: 15px; font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-ph-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(161,69,254,.4); }
.btn-ph-secondary {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff !important; padding: 12px 24px;
    border-radius: 10px; font-size: 15px; font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s;
}
.btn-ph-secondary:hover { background: rgba(255,255,255,.18); }

@media (max-width: 767px) {
    .page-hero { padding: 110px 0 52px; }
    .page-hero h1 { font-size: 30px; }
    .page-hero p.lead { font-size: 16px; }
}

/* ──────────────────────────────────────────
   FEATURE DETAIL PAGES — SHARED SECTIONS
────────────────────────────────────────── */
.feat-section { padding: 72px 0; }
.feat-section.bg-soft { background: var(--purple-50, #f8f5fb); }
/* Columns stack below lg — the large g-5 gutter's negative margins exceed the
   container padding and overflow the viewport. Shrink the gutter when stacked. */
@media (max-width: 991px) {
    .feat-section .row.g-5 { --bs-gutter-x: 1.5rem; }
    .feat-section .post-card-img { width: 100%; max-width: 100%; }
}
/* Featured image uses a fixed inline height:280px — shrink it on phones so it
   doesn't dominate the screen (!important overrides the inline style). */
@media (max-width: 575px) {
    .feat-section .post-card-img { height: 180px !important; }
}
.feat-section.bg-dark {
    background: linear-gradient(160deg, #1a1040 0%, var(--purple-950,#291540) 100%);
    color: #fff;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--purple-600, #70439f);
    margin-bottom: 10px;
}
.section-eyebrow.light { color: rgba(192,132,252,.9); }

.feat-heading {
    font-size: 34px; font-weight: 800;
    color: #1f2937; line-height: 1.2;
    margin-bottom: 16px;
}
.feat-heading.light { color: #fff; }
.feat-subheading {
    font-size: 16px; color: #6b7280;
    line-height: 1.7; max-width: 560px;
    margin: 0 auto 32px;
}
.feat-subheading.light { color: rgba(255,255,255,.7); }

/* Feature list */
.feat-list { list-style: none; padding: 0; margin: 24px 0; }
.feat-list li {
    display: flex; align-items: flex-start;
    gap: 12px; padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 15px;
}
.feat-list li:last-child { border-bottom: none; }
.feat-list .fi-icon {
    width: 26px; height: 26px; flex-shrink: 0;
    background: var(--purple-100,#f0e9f6);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
}
.feat-list .fi-icon i { font-size: 13px; color: var(--purple-600,#70439f); }
.feat-list .fi-body strong { display: block; font-weight: 700; color: #1f2937; font-size: 14px; }
.feat-list .fi-body span { font-size: 13px; color: #6b7280; }

/* Feature img card */
.feat-img-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(49,52,80,.15);
}
.feat-img-card img { width: 100%; display: block; }

/* Image placeholder */
.img-ph {
    background: linear-gradient(135deg, var(--purple-50,#f8f5fb) 0%, #eee8f8 100%);
    border: 2px dashed var(--purple-200,#e0d1ee);
    border-radius: 16px;
    aspect-ratio: 16 / 9;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 24px;
}
.img-ph i { font-size: 40px; color: var(--purple-300,#c9afe1); margin-bottom: 12px; }
.img-ph p { color: var(--purple-400,#ab83cf); font-size: 13px; font-style: italic; margin: 0; line-height: 1.5; }

/* Pain vs solution blocks */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vs-card { border-radius: 14px; padding: 24px; }
.vs-card.pain { background: #fff5f5; border: 1.5px solid #fecaca; }
.vs-card.solution { background: #f0fdf4; border: 1.5px solid #86efac; }
.vs-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 14px; }
.vs-card.pain h4 { color: #dc2626; }
.vs-card.solution h4 { color: #16a34a; }
.vs-card ul { list-style: none; padding: 0; margin: 0; }
.vs-card ul li { font-size: 13px; color: #374151; padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.vs-card.pain ul li::before { content: '✗'; color: #ef4444; font-weight: 700; flex-shrink: 0; }
.vs-card.solution ul li::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }
@media (max-width: 600px) { .vs-grid { grid-template-columns: 1fr; } }

/* Feature icon boxes grid */
.icon-boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 32px; }
.tools-grid { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
@media (max-width: 991px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .tools-grid { grid-template-columns: 1fr; } }
.ib-card {
    background: #fff; border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 2px 16px rgba(49,52,80,.06);
    border: 1px solid #f3f4f6;
}
.ib-card.dark { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.ib-icon {
    width: 46px; height: 46px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 14px;
    color: #fff;
}
.ib-card h5 { font-size: 15px; font-weight: 700; color: #1f2937; margin-bottom: 6px; }
.ib-card.dark h5 { color: #fff; }
.ib-card p { font-size: 13px; color: #6b7280; line-height: 1.6; margin: 0; }
.ib-card.dark p { color: rgba(255,255,255,.6); }

/* ──────────────────────────────────────────
   COMPARISON PAGE
────────────────────────────────────────── */
.comp-advantages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.comp-adv-card {
    background: linear-gradient(135deg, var(--purple-50,#f8f5fb) 0%, #fff 100%);
    border: 1px solid var(--purple-100,#f0e9f6);
    border-radius: 14px; padding: 24px;
}
.comp-adv-card .ca-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 14px; color: #fff;
}
.comp-adv-card h4 { font-size: 16px; font-weight: 800; color: #1f2937; margin-bottom: 8px; }
.comp-adv-card p { font-size: 13px; color: #6b7280; line-height: 1.6; margin: 0; }
@media (max-width: 767px) { .comp-advantages { grid-template-columns: 1fr !important; } }

/* Newsletter form: stack input + button on small screens */
@media (max-width: 575px) {
    .nl-form { flex-direction: column; }
}

.comp-table-wrap { overflow-x: auto; margin: 32px 0; }
.comp-table {
    width: 100%; border-collapse: collapse;
    font-size: 14px;
}
.comp-table thead th {
    padding: 14px 20px;
    font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: .5px;
}
.comp-table thead th:first-child { text-align: left; color: #6b7280; width: 40%; }
.comp-table thead th.col-us {
    background: linear-gradient(135deg, #70439f 0%, #a145fe 100%);
    color: #fff; border-radius: 10px 10px 0 0;
    text-align: center;
}
.comp-table thead th.col-them { color: #9ca3af; text-align: center; }
.comp-table tbody tr { border-bottom: 1px solid #f3f4f6; }
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table tbody td { padding: 13px 20px; color: #374151; }
.comp-table tbody td:first-child { font-weight: 600; }
.comp-table tbody td.col-us-val {
    text-align: center; font-weight: 700;
    color: var(--purple-700,#5d3785);
    background: rgba(112,67,159,.04);
}
.comp-table tbody td.col-them-val { text-align: center; color: #9ca3af; }
.comp-table .check { color: #22c55e; font-size: 16px; }
.comp-table .cross { color: #ef4444; font-size: 16px; }
.comp-table .partial { color: #f59e0b; font-size: 13px; font-weight: 600; }
/* Small phones: tighten the comparison table so it fits without horizontal scroll */
@media (max-width: 575px) {
    .comp-table { font-size: 12px; }
    .comp-table thead th { padding: 10px 7px; font-size: 10px; letter-spacing: .2px; }
    .comp-table tbody td { padding: 10px 7px; }
    .comp-table .check, .comp-table .cross { font-size: 13px; }
    .comp-table .partial { font-size: 11px; }
}

/* ──────────────────────────────────────────
   BLOG & RESOURCE PAGES
────────────────────────────────────────── */
.resource-hero { padding: 130px 0 64px; }
.resource-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

/* ── Changelog / timeline layout ── */
.changelog { position: relative; margin-top: 40px; padding-left: 0; }
.changelog::before {
    content: ''; position: absolute;
    left: 108px; top: 8px; bottom: 8px;
    width: 2px; background: #e5e7eb;
}
.changelog-entry { display: flex; align-items: flex-start; gap: 0; margin-bottom: 32px; }
.changelog-date {
    width: 96px; min-width: 96px;
    text-align: right; padding-right: 20px; padding-top: 14px;
    font-size: 12px; font-weight: 600; color: #9ca3af; line-height: 1.3;
}
.changelog-dot {
    width: 24px; min-width: 24px;
    display: flex; justify-content: center; padding-top: 18px;
    position: relative; z-index: 1;
}
.changelog-dot::after {
    content: ''; display: block;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--purple-600, #70439f);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #d8b4fe;
}
.changelog-content {
    flex: 1; margin-left: 20px;
    background: #fff; border-radius: 12px;
    padding: 18px 22px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 12px rgba(49,52,80,.05);
}
.changelog-content h3 { font-size: 15px; font-weight: 700; color: #1f2937; margin: 6px 0 12px; }
.changelog-content ul { margin: 0; padding: 0; list-style: none; }
.changelog-content ul li {
    font-size: 13px; color: #6b7280; line-height: 1.65;
    padding: 6px 0 6px 16px; position: relative;
    border-bottom: 1px solid #f3f4f6;
}
.changelog-content ul li:last-child { border-bottom: none; padding-bottom: 0; }
.changelog-content ul li::before {
    content: ''; position: absolute; left: 0; top: 13px;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--purple-400, #a855f7);
}
@media (max-width: 575px) {
    .changelog::before { display: none; }
    .changelog-entry { flex-direction: column; gap: 6px; }
    .changelog-date { width: auto; text-align: left; padding: 0; }
    .changelog-dot { display: none; }
    .changelog-content { margin-left: 0; }
}

.post-card {
    background: #fff; border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(49,52,80,.06);
    border: 1px solid #f3f4f6;
    transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(49,52,80,.1); }
.post-card-img {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--purple-100,#f0e9f6) 0%, #e8f0ff 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
}
.post-card-body { padding: 20px; }
.post-tag {
    display: inline-block;
    background: var(--purple-100,#f0e9f6);
    color: var(--purple-600,#70439f);
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: 10px;
}
.post-card-body h3 {
    font-size: 17px; font-weight: 700;
    color: #1f2937; line-height: 1.4;
    margin-bottom: 8px;
}
.post-card-body p { font-size: 13px; color: #6b7280; line-height: 1.6; margin-bottom: 14px; }
.post-meta { font-size: 12px; color: #9ca3af; }
.post-read-more {
    font-size: 13px; font-weight: 700;
    color: var(--purple-600,#70439f);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px;
}
.post-read-more:hover { color: var(--purple-700,#5d3785); }

/* Testimonial / success story cards */
.story-card {
    background: #fff; border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 20px rgba(49,52,80,.07);
    border: 1px solid #f3f4f6;
    position: relative;
}
.story-card::before {
    content: '"';
    position: absolute;
    top: 12px; left: 24px;
    font-size: 80px; line-height: 1;
    color: var(--purple-100,#f0e9f6);
    font-family: Georgia, serif;
    pointer-events: none;
}
.story-card blockquote {
    font-size: 15px; color: #374151;
    line-height: 1.7; margin: 0 0 20px;
    padding-top: 18px;
    font-style: italic;
    position: relative;
}
.story-author { display: flex; align-items: center; gap: 12px; }
.story-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-400,#ab83cf), var(--purple-600,#70439f));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: #fff;
    flex-shrink: 0;
}
.story-author-name { font-size: 14px; font-weight: 700; color: #1f2937; }
.story-author-title { font-size: 12px; color: #9ca3af; }
.story-stat {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    display: flex; gap: 24px;
}
.story-stat-item .sv { font-size: 22px; font-weight: 800; color: var(--purple-600,#70439f); }
.story-stat-item .sl { font-size: 11px; color: #9ca3af; text-transform: uppercase; letter-spacing: .5px; }

/* ──────────────────────────────────────────
   FREE TOOLS HUB PAGE
────────────────────────────────────────── */
.tool-card {
    background: #fff; border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 20px rgba(49,52,80,.07);
    border: 1px solid #f3f4f6;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: column; height: 100%;
}
.tool-card .tc-features { flex: 1; }
.tool-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(49,52,80,.1); }
.tool-card .tc-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 16px;
    color: #fff;
}
.tool-card h3 { font-size: 19px; font-weight: 800; color: #1f2937; margin-bottom: 8px; }
.tool-card p { font-size: 14px; color: #6b7280; line-height: 1.6; margin-bottom: 20px; }
.tool-card .tc-features {
    list-style: none; padding: 0; margin: 0 0 22px;
}
.tool-card .tc-features li {
    font-size: 13px; color: #374151; padding: 4px 0;
    display: flex; align-items: center; gap: 6px;
}
.tool-card .tc-features li::before { content: '✓'; color: #22c55e; font-weight: 700; }
.btn-tool {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, #70439f, #a145fe);
    color: #fff !important; padding: 10px 22px;
    border-radius: 9px; font-size: 14px; font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-tool:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(112,67,159,.35); }
.coming-soon-badge {
    display: inline-block;
    background: #f3f4f6; color: #9ca3af;
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: .5px;
}

/* ──────────────────────────────────────────
   INDEX.HTML REDESIGN — DEPARTMENTS SECTION
────────────────────────────────────────── */
.departments-section { padding: 72px 0; background: #fff; }
.dept-card {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 30px rgba(49,52,80,.09);
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}
.dept-card:hover { transform: translateY(-4px); box-shadow: 0 12px 48px rgba(49,52,80,.13); }
.dept-card-header { padding: 28px 28px 0; }
.dept-card-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .7px;
    padding: 5px 12px;
    border-radius: 20px; margin-bottom: 16px;
}
.dept-card h3 { font-size: 22px; font-weight: 800; color: #1f2937; margin-bottom: 10px; line-height: 1.25; }
.dept-card p { font-size: 14px; color: #6b7280; line-height: 1.65; margin-bottom: 16px; }
.dept-feats { list-style: none; padding: 0; margin: 0 0 20px; }
.dept-feats li { font-size: 13px; color: #374151; padding: 4px 0; display: flex; align-items: center; gap: 7px; }
.dept-feats li::before { content: '→'; font-weight: 700; flex-shrink: 0; }
.dept-card-img { margin-top: 16px; padding: 0 16px 16px; }
.dept-card-img img { width: 100%; object-fit: cover; object-position: top; display: block; border-radius: 10px; max-height: 320px; }
.dept-card-footer {
    padding: 16px 28px 22px;
    border-top: 1px solid rgba(0,0,0,.05);
}
.dept-link {
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 5px;
    transition: gap 0.2s;
}
.dept-link:hover { gap: 8px; }

/* Dispatch */
.dept-card.dispatch .dept-card-badge { background: rgba(64,180,246,.12); color: #0284c7; }
.dept-card.dispatch .dept-feats li::before { color: #0284c7; }
.dept-card.dispatch .dept-link { color: #0284c7; }

/* Safety */
.dept-card.safety .dept-card-badge { background: rgba(98,64,200,.12); color: #6240c8; }
.dept-card.safety .dept-feats li::before { color: #6240c8; }
.dept-card.safety .dept-link { color: #6240c8; }

/* Accounting */
.dept-card.accounting .dept-card-badge { background: rgba(228,78,131,.12); color: #E44E83; }
.dept-card.accounting .dept-feats li::before { color: #E44E83; }
.dept-card.accounting .dept-link { color: #E44E83; }

/* ──────────────────────────────────────────
   HOW IT WORKS SECTION
────────────────────────────────────────── */
.how-section { padding: 72px 0; background: var(--purple-50,#f8f5fb); }
.steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.steps-row::before {
    content: '';
    position: absolute;
    top: 32px; left: 16.5%; right: 16.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple-200,#e0d1ee), transparent);
}
.step-item { text-align: center; padding: 0 20px; position: relative; }
.step-number {
    width: 64px; height: 64px;
    background: #fff;
    border: 2px solid var(--purple-200,#e0d1ee);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px; font-weight: 800;
    color: var(--purple-600,#70439f);
    position: relative; z-index: 1;
}
.step-number.active {
    background: linear-gradient(135deg, #70439f, #a145fe);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(112,67,159,.3);
}
.step-item h4 { font-size: 16px; font-weight: 800; color: #1f2937; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: #6b7280; line-height: 1.6; margin: 0; }
@media (max-width: 767px) {
    .steps-row { grid-template-columns: 1fr; gap: 28px; }
    .steps-row::before { display: none; }
}

/* ──────────────────────────────────────────
   TESTIMONIALS STRIP (on index)
────────────────────────────────────────── */
.testi-section { padding: 72px 0; background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 991px) { .testi-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────
   SECTION HEADER UTILITIES
────────────────────────────────────────── */
.sh-center { text-align: center; margin-bottom: 48px; }
.sh-center .sh-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--purple-600,#70439f);
    background: var(--purple-50,#f8f5fb);
    padding: 4px 14px; border-radius: 20px;
    margin-bottom: 12px;
}
.sh-center h2 { font-size: 36px; font-weight: 800; color: #1f2937; line-height: 1.2; margin-bottom: 14px; }
.sh-center p { font-size: 16px; color: #6b7280; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ──────────────────────────────────────────
   WHY-USE SECTION (Mobile App on index.html)
────────────────────────────────────────── */
.why-use-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-use-content > p {
    font-size: 17px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 28px;
    padding-left: 16px;
    border-left: 3px solid var(--purple-400, #ab83cf);
}

.why-use-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-use-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

.why-use-list li i {
    font-size: 18px;
    color: var(--purple-500, #8e5cba);
    flex-shrink: 0;
}

.why-use-img img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* ──────────────────────────────────────────
   BLOG ARTICLE BODY
────────────────────────────────────────── */
.article-body { font-size: 1.05rem; color: #374151; line-height: 1.8; }
.article-body h2 { font-size: 1.45rem; font-weight: 800; color: #1f2937; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: #1f2937; margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.5rem; }
.article-body ul li, .article-body ol li { margin-bottom: 0.5rem; }
.article-body strong { color: #1f2937; }
.article-body .callout { background: #f0f4ff; border-left: 4px solid #6240c8; border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem; margin: 2rem 0; }
.article-body .callout p { margin: 0; font-weight: 500; color: #1f2937; }
.article-back { display: inline-flex; align-items: center; gap: 8px; color: #6240c8; font-weight: 600; font-size: 0.95rem; margin-bottom: 2.5rem; text-decoration: none; }
.article-back:hover { color: #4f2fa3; text-decoration: none; }
.article-hero-meta { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 1rem; flex-wrap: wrap; }
.article-hero-meta .post-tag { margin: 0; }
.article-hero-meta .post-meta { margin: 0; }
