/* =====================================================
   INNER PAGES
===================================================== */
.page-hero {
    padding: 140px 0 72px;
    background: #f7fafd;
    border-bottom: 1px solid rgba(15,25,41,0.06);
}

.page-hero-inner {
    max-width: 760px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7a90;
    margin-bottom: 20px;
}

.page-breadcrumb a {
    color: #6b7a90;
    transition: color 0.2s;
}

.page-breadcrumb a:hover { color: #e86725; }

.page-h1 {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #0f1929;
    margin: 16px 0 18px;
}

.page-h1 .h2-accent,
.page-h1 em {
    color: #e86725;
    font-style: normal;
}

.page-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6780;
    max-width: 640px;
    margin-bottom: 32px;
}

.page-hero-ctas {
    justify-content: flex-start;
    margin-bottom: 0;
}

.page-section {
    padding: 88px 0;
    background: #f7fafd;
}

.page-section-alt {
    background: #ffffff;
    border-top: 1px solid rgba(15,25,41,0.06);
    border-bottom: 1px solid rgba(15,25,41,0.06);
}

.page-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.page-feature-card {
    background: #ffffff;
    border: 1px solid rgba(15,25,41,0.08);
    border-radius: 18px;
    padding: 32px 28px;
    transition: border-color 0.25s, transform 0.25s;
}

.page-feature-card:hover {
    border-color: rgba(232,103,37,0.4);
    transform: translateY(-4px);
}

.page-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0 10px;
    color: #0f1929;
}

.page-feature-card p {
    font-size: 14.5px;
    color: #5a6780;
    line-height: 1.65;
    margin: 0;
}

.page-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.page-includes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.page-includes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    color: #2d3748;
    background: #f7fafd;
    border: 1px solid rgba(15,25,41,0.06);
    border-radius: 12px;
    padding: 14px 16px;
}

.page-includes .ck {
    flex: none;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(232,103,37,0.12);
    color: #e86725;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.page-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.page-related-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f7fafd;
    border: 1px solid rgba(15,25,41,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.25s, transform 0.25s;
}

.page-related-card:hover {
    border-color: rgba(232,103,37,0.45);
    transform: translateY(-3px);
}

.page-related-card i:first-child {
    font-size: 28px;
    color: #e86725;
}

.page-related-card strong {
    font-size: 17px;
    color: #0f1929;
}

.page-related-card span {
    font-size: 14px;
    font-weight: 600;
    color: #e86725;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Legal / simple content pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    margin: 36px 0 14px;
    color: #0f1929;
}

.legal-content p,
.legal-content li {
    font-size: 15.5px;
    color: #5a6780;
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 8px;
}

/* Contact / audit form page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-list {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.contact-info-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-info-list .ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(232,103,37,0.12);
    color: #e86725;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex: none;
}

.contact-info-list strong {
    display: block;
    font-size: 15px;
    color: #0f1929;
    margin-bottom: 2px;
}

.contact-info-list span {
    font-size: 14px;
    color: #5a6780;
}

/* Blog cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid rgba(15,25,41,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}

.blog-card:hover {
    border-color: rgba(232,103,37,0.4);
    transform: translateY(-4px);
}

.blog-card-img {
    height: 160px;
    background: #e86725;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    font-size: 12px;
    color: #6b7a90;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f1929;
}

.blog-card p {
    font-size: 14px;
    color: #5a6780;
    line-height: 1.6;
    margin-bottom: 14px;
}

.blog-card a {
    font-size: 14px;
    font-weight: 700;
    color: #e86725;
}

/* Sitemap list */
.sitemap-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.sitemap-cols h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7a90;
    margin-bottom: 16px;
}

.sitemap-cols a {
    display: block;
    color: #2d3748;
    font-size: 15px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.sitemap-cols a:hover { color: #e86725; }

/* Nav active state */
.nav-links > li > a.is-active,
.nav-links > li.has-dropdown.is-active > a {
    color: #e86725;
}

@media (max-width: 991px) {
    .page-feature-grid,
    .page-related-grid,
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .page-split,
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .sitemap-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .page-hero { padding: 120px 0 48px; }
    .page-feature-grid,
    .page-related-grid,
    .blog-grid,
    .sitemap-cols { grid-template-columns: 1fr; }
    .page-hero-ctas { flex-direction: column; align-items: stretch; }
}
