/* Absolute Accountant — shared content system (modern editorial) */
:root {
    --aa-navy: #1a2980;
    --aa-blue: #4665BB;
    --aa-ink: #12142a;
    --aa-muted: #5a6078;
    --aa-soft: #f4f6fc;
    --aa-line: rgba(70, 101, 187, 0.12);
    --aa-orange: #ff6b35;
    --aa-radius: 18px;
    --aa-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --aa-sticky-offset: 140px;
}

html {
    scroll-padding-top: var(--aa-sticky-offset);
}

@keyframes aaHeroZoom {
    from { transform: scale(1.04); }
    to { transform: scale(1.1); }
}

@keyframes aaFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Shared page hero ---------- */
.page-hero {
    position: relative;
    margin-top: 80px;
    min-height: min(68vh, 640px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 0;
    background: transparent;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 16, 64, 0.82) 0%, rgba(26, 41, 128, 0.78) 55%, rgba(26, 41, 128, 0.72) 100%),
        url('/assets/images/pexels-tima-miroshnichenko-6694543.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: aaHeroZoom 18s var(--aa-ease) infinite alternate;
    z-index: 0;
}

.page-hero.hero-about::before {
    background-image:
        linear-gradient(180deg, rgba(10, 16, 64, 0.82) 0%, rgba(26, 41, 128, 0.78) 55%, rgba(26, 41, 128, 0.72) 100%),
        url('/assets/images/aboutus.jpg');
}

.page-hero.hero-services::before {
    background-image:
        linear-gradient(180deg, rgba(10, 16, 64, 0.82) 0%, rgba(26, 41, 128, 0.78) 55%, rgba(26, 41, 128, 0.72) 100%),
        url('/assets/images/our services.jpg');
}

.page-hero.hero-tax::before {
    background-image:
        linear-gradient(180deg, rgba(10, 16, 64, 0.82) 0%, rgba(26, 41, 128, 0.78) 55%, rgba(26, 41, 128, 0.72) 100%),
        url('/assets/images/pexels-tima-miroshnichenko-6694543.jpg');
}

.page-hero.hero-advisory::before {
    background-image:
        linear-gradient(180deg, rgba(10, 16, 64, 0.82) 0%, rgba(26, 41, 128, 0.78) 55%, rgba(26, 41, 128, 0.72) 100%),
        url('/assets/images/consultation title.jpg');
}

.page-hero.hero-outsourced::before {
    background-image:
        linear-gradient(180deg, rgba(10, 16, 64, 0.82) 0%, rgba(26, 41, 128, 0.78) 55%, rgba(26, 41, 128, 0.72) 100%),
        url('/assets/images/pexels-mizunokozuki-12903285.jpg');
}

.page-hero.hero-contact::before {
    background-image:
        linear-gradient(180deg, rgba(10, 16, 64, 0.82) 0%, rgba(26, 41, 128, 0.78) 55%, rgba(26, 41, 128, 0.72) 100%),
        url('/assets/images/contact us.jpg');
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 40px 72px;
    text-align: center;
    animation: aaFadeUp 0.9s var(--aa-ease) both;
}

.thanks-hero {
    min-height: min(62vh, 560px);
}

.thanks-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 26px;
}

.thanks-page .page-hero-inner {
    max-width: 680px;
}

.thanks-page .lead {
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.aa-kicker,
.page-hero .page-kicker,
.page-hero .aa-kicker {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.78);
}

.page-kicker {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--aa-blue);
    margin-bottom: 12px;
}

.page-hero h1 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 700;
    margin: 0 0 18px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.page-hero .lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.65;
    margin: 0 auto 28px;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.aa-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.aa-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Jump nav */
.aa-jump {
    position: sticky;
    top: 80px;
    z-index: 40;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--aa-line);
}

.aa-jump-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.aa-jump-inner::-webkit-scrollbar { display: none; }

.aa-jump a {
    flex: 0 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--aa-muted);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.aa-jump a:hover {
    background: rgba(70, 101, 187, 0.1);
    color: var(--aa-blue);
}

.content-section,
.band-cta {
    scroll-margin-top: var(--aa-sticky-offset);
}

/* ---------- Sections ---------- */
.content-section {
    padding: 88px 90px;
}

.content-section.alt {
    background: transparent;
}

.content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.content-wrap.narrow {
    max-width: 820px;
}

img {
    max-width: 100%;
    height: auto;
}

.content-section h2 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--aa-navy);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.content-section h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    color: var(--aa-navy);
    margin: 28px 0 12px;
}

.content-section p,
.content-section li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--aa-muted);
}

.content-section p {
    margin: 0 0 16px;
}

.check-list,
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.check-list li,
.bullet-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--aa-blue);
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--aa-blue);
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--aa-orange) 0%, #ff8c42 100%);
    color: #fff !important;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 22px rgba(255, 107, 53, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
    color: #fff !important;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff !important;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    color: #fff !important;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 8px;
}

.page-hero .cta-row {
    justify-content: center;
}

/* ---------- Cards (light chrome) ---------- */
.feature-grid,
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.card-grid--4 {
    margin-top: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.highlight-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    padding: 26px 22px;
}

.highlight-card h3 {
    margin: 0;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--aa-navy);
    letter-spacing: -0.01em;
}

@media screen and (max-width: 1024px) {
    .card-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 640px) {
    .card-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ---------- Service page layout system ---------- */
.svc-section-intro {
    max-width: 680px;
    margin: 0 auto 44px;
    text-align: center;
}

.svc-section-intro .page-kicker {
    text-align: center;
}

.svc-section-intro h2 {
    margin-bottom: 14px;
}

.svc-section-intro p {
    margin: 0;
}

.svc-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.svc-split-panel {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--aa-line);
    border-radius: var(--aa-radius);
    padding: 36px 32px;
}

.svc-split-panel--accent {
    background: linear-gradient(160deg, #1a2980 0%, #4665BB 100%);
    border-color: transparent;
    color: #fff;
}

.svc-split-panel--accent .page-kicker {
    color: rgba(255, 255, 255, 0.78);
}

.svc-split-panel--accent h2,
.svc-split-panel--accent p,
.svc-split-panel--accent .svc-split-note {
    color: #fff !important;
}

.svc-split-panel--accent .svc-split-note {
    border-top-color: rgba(255, 255, 255, 0.22);
}

.svc-split-panel h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 16px;
}

.svc-split-note {
    margin-bottom: 0 !important;
    padding-top: 8px;
    border-top: 1px solid var(--aa-line);
    font-weight: 500;
    color: var(--aa-blue) !important;
}

.svc-support-grid {
    margin-top: 0;
}

.svc-support-grid .feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.svc-support-grid .feature-card p:last-child {
    margin-bottom: 0;
}

.svc-duo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.svc-duo-panel {
    background: #fff;
    border: 1px solid var(--aa-line);
    border-radius: var(--aa-radius);
    padding: 32px 28px;
}

.svc-duo-panel--soft {
    background: linear-gradient(165deg, #1a2980 0%, #4665BB 100%);
    border-color: transparent;
    color: #fff;
}

.svc-duo-panel--soft h3 {
    color: #fff;
}

.svc-duo-panel--soft .check-list li {
    color: rgba(255, 255, 255, 0.92);
}

.svc-duo-panel--soft .check-list li::before {
    color: #ffb38a;
}

.svc-duo-panel h3 {
    margin: 0 0 18px;
    font-size: 22px;
}

.svc-duo-panel .check-list {
    margin-bottom: 0;
}

.svc-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.svc-industry-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px;
    border-radius: var(--aa-radius);
    border: 1px solid var(--aa-line);
    background: #fff;
    text-decoration: none;
    transition: border-color 0.25s ease, transform 0.25s var(--aa-ease), box-shadow 0.25s ease;
}

.svc-industry-card:hover {
    border-color: rgba(70, 101, 187, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(26, 41, 128, 0.07);
}

.svc-industry-label {
    font-family: 'Lexend', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--aa-blue);
}

.svc-industry-card strong {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--aa-navy);
    letter-spacing: -0.02em;
}

.svc-industry-go {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--aa-blue);
}

.svc-process {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    position: relative;
}

.svc-process::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(70, 101, 187, 0.35), transparent);
    pointer-events: none;
}

.svc-process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 6px;
}

.svc-process-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 50%;
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--aa-navy);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(70, 101, 187, 0.22);
    box-shadow: 0 10px 28px rgba(26, 41, 128, 0.08);
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.svc-process-step:hover .svc-process-num {
    transform: translateY(-3px);
    color: #fff;
    background: linear-gradient(135deg, var(--aa-blue), var(--aa-navy));
    border-color: transparent;
}

.svc-process-step h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.svc-process-step p {
    margin: 0;
    max-width: 220px;
    font-size: 15px;
    line-height: 1.65;
}

.svc-reasons {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.svc-reason {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid var(--aa-line);
    background: rgba(255, 255, 255, 0.88);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-reason:hover {
    border-color: rgba(70, 101, 187, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(26, 41, 128, 0.06);
}

.svc-reason-num {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--aa-blue);
}

.svc-reason p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: var(--aa-ink);
}

.svc-page .internal-links {
    justify-content: center;
}

/* ---------- Home: Industries We Serve ---------- */
.home-industries-cards {
    margin-top: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media screen and (max-width: 1200px) {
    .home-industries-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.home-industries-cards .home-industry-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    min-height: 180px;
    cursor: pointer;
}

.home-industries-cards .home-industry-card:focus-visible {
    outline: 2px solid var(--aa-blue);
    outline-offset: 3px;
}

.home-industries-cards .home-industry-card h3 {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.35;
}

.home-industry-learn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(70, 101, 187, 0.28);
    border-radius: 10px;
    background: rgba(70, 101, 187, 0.08);
    color: var(--aa-blue);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-industry-learn:hover {
    background: var(--aa-blue);
    border-color: var(--aa-blue);
    color: #fff;
    transform: translateY(-1px);
}

.home-industries-cta {
    max-width: 720px;
    margin: 40px auto 0;
    padding: 36px 32px;
    text-align: center;
    border-radius: var(--aa-radius);
    background: linear-gradient(160deg, #1a2980 0%, #4665BB 100%);
    color: #fff;
    box-shadow: 0 18px 40px rgba(26, 41, 128, 0.16);
}

.home-industries-cta h3 {
    margin: 0 0 12px;
    font-family: 'Lexend', sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    color: #fff;
    letter-spacing: -0.02em;
}

.home-industries-cta p {
    margin: 0 auto 22px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.7;
}

.industry-modal[hidden] {
    display: none !important;
}

.industry-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.industry-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 20, 42, 0.48);
    backdrop-filter: blur(6px);
}

.industry-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(540px, 100%);
    max-height: min(90vh, 760px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(70, 101, 187, 0.14);
    box-shadow: 0 28px 64px rgba(18, 20, 42, 0.2);
    animation: industryModalIn 0.3s var(--aa-ease) both;
    scrollbar-width: thin;
}

@keyframes industryModalIn {
    from { opacity: 0; transform: translateY(14px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.industry-modal-header {
    position: relative;
    margin: 0;
    padding: 28px 56px 26px 28px;
    background: linear-gradient(135deg, #1a2980 0%, #4665BB 100%);
    color: #fff;
}

.industry-modal-header h3,
.industry-modal-dialog h3 {
    margin: 0;
    font-family: 'Lexend', sans-serif;
    font-size: clamp(22px, 3.2vw, 28px);
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.02em;
    max-width: none;
}

.industry-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.industry-modal-close:hover {
    background: rgba(255, 255, 255, 0.24);
}

.industry-modal-content {
    padding: 24px 28px 24px;
}

.industry-modal-body {
    margin: 0 0 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--aa-muted);
}

.industry-modal-why {
    margin: 0 0 18px;
}

.industry-modal-why > p:last-child {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: var(--aa-ink);
}

.industry-modal-types {
    margin: 0 0 16px;
}

.industry-modal-types-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-modal-types-list li {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(70, 101, 187, 0.2);
    background: rgba(70, 101, 187, 0.06);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--aa-navy);
    line-height: 1.3;
}

.industry-modal-services {
    margin: 0 0 22px;
    padding: 16px 16px 14px;
    border-radius: 14px;
    background: rgba(70, 101, 187, 0.05);
}

.industry-modal-services-label {
    margin: 0 0 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--aa-navy);
}

.industry-modal-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.industry-modal-services-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--aa-ink);
    line-height: 1.35;
}

.industry-modal-services-list li::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--aa-blue);
    box-shadow: 0 0 0 3px rgba(70, 101, 187, 0.15);
}

.industry-modal-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.industry-modal-dismiss {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid var(--aa-line);
    background: #fff;
    color: var(--aa-navy);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.industry-modal-dismiss:hover {
    border-color: rgba(70, 101, 187, 0.35);
    background: rgba(70, 101, 187, 0.06);
}

body.industry-modal-open {
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .home-industries-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 640px) {
    .home-industries-cards {
        grid-template-columns: 1fr;
    }

    .home-industries-cta {
        margin-top: 28px;
        padding: 28px 22px;
    }

    .industry-modal-dialog {
        padding: 0;
    }

    .industry-modal-header {
        padding: 24px 52px 22px 22px;
    }

    .industry-modal-content {
        padding: 22px 20px 20px;
    }

    .industry-modal-actions {
        justify-content: stretch;
    }

    .industry-modal-dismiss {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- Industry pages ---------- */
.ind-page .page-hero.hero-industry {
    min-height: min(72vh, 680px);
    text-align: left;
    justify-content: center;
}

.ind-page .page-hero.hero-industry .page-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding-left: 90px;
    padding-right: 90px;
    text-align: left;
}

.ind-page .page-hero.hero-industry .page-kicker {
    color: rgba(255, 255, 255, 0.78);
}

.ind-page .page-hero.hero-industry h1 {
    max-width: 18ch;
}

.ind-page .page-hero.hero-industry .lead {
    max-width: 40ch;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(16px, 2vw, 18px);
}

.page-hero.hero-industry::before {
    background-image:
        linear-gradient(105deg, rgba(10, 16, 64, 0.92) 0%, rgba(26, 41, 128, 0.72) 48%, rgba(26, 41, 128, 0.35) 100%),
        url('/assets/images/consultation hero.jpg');
    background-position: center;
    background-size: cover;
}

.page-hero.hero-industry--construction::before {
    background-image:
        linear-gradient(105deg, rgba(10, 16, 64, 0.92) 0%, rgba(26, 41, 128, 0.72) 48%, rgba(26, 41, 128, 0.35) 100%),
        url('/assets/images/pexels-construction.jpg');
}

.page-hero.hero-industry--restaurant::before {
    background-image:
        linear-gradient(105deg, rgba(10, 16, 64, 0.92) 0%, rgba(26, 41, 128, 0.72) 48%, rgba(26, 41, 128, 0.35) 100%),
        url('/assets/images/pexels-restaurant.jpg');
}

.page-hero.hero-industry--medical::before {
    background-image:
        linear-gradient(105deg, rgba(10, 16, 64, 0.92) 0%, rgba(26, 41, 128, 0.72) 48%, rgba(26, 41, 128, 0.35) 100%),
        url('/assets/images/pexels-medical.jpg');
}

.page-hero.hero-industry--nonprofit::before {
    background-image:
        linear-gradient(180deg, rgba(10, 16, 64, 0.88) 0%, rgba(26, 41, 128, 0.78) 55%, rgba(26, 41, 128, 0.62) 100%),
        url('/assets/images/pexels-nonprofit-volunteers.jpg');
}

/* Nonprofit page: centered hero + refined layout */
.ind-page--nonprofit .page-hero.hero-industry {
    min-height: min(58vh, 560px);
    text-align: center;
    justify-content: center;
}

.ind-page--nonprofit .page-hero.hero-industry .page-hero-inner {
    align-items: center;
    text-align: center;
    max-width: 760px;
    padding-left: 40px;
    padding-right: 40px;
}

.ind-page--nonprofit .page-hero.hero-industry h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(36px, 5.2vw, 58px);
    line-height: 1.08;
}

.ind-page--nonprofit .page-hero.hero-industry .lead {
    max-width: 38ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(17px, 2.2vw, 20px);
}

.ind-hero-actions {
    margin-top: 6px;
}

.ind-hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.ind-hero-pills li {
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.ind-page--nonprofit .ind-spotlight--icons .ind-spotlight-item {
    text-align: center;
    padding: 32px 22px;
}

.ind-page--nonprofit .ind-spotlight--icons .ind-spotlight-item i {
    display: block;
    margin: 0 auto 12px;
    font-size: 22px;
    color: var(--aa-blue);
}

.ind-page--nonprofit .ind-service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.ind-page--nonprofit .ind-service-card {
    flex: 1 1 280px;
    max-width: 340px;
    grid-column: auto;
    border-top: 3px solid var(--aa-blue);
    box-shadow: 0 10px 32px rgba(26, 41, 128, 0.06);
    transition: transform 0.25s var(--aa-ease), box-shadow 0.25s ease;
}

.ind-page--nonprofit .ind-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(26, 41, 128, 0.1);
}

.ind-page--nonprofit .ind-service-card--wide {
    grid-column: auto;
}

.ind-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(70, 101, 187, 0.1);
    color: var(--aa-blue);
    font-size: 18px;
}

.ind-page--nonprofit .svc-section-intro.text-center p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.np-services {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.np-service {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 8px 20px;
    align-items: start;
    padding: 24px 26px;
    background: #fff;
    border: 1px solid var(--aa-line);
    border-radius: var(--aa-radius);
}

.np-service-num {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--aa-blue);
    padding-top: 6px;
}

.np-service-body h3 {
    margin: 0 0 12px;
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    color: var(--aa-navy);
}

.np-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.np-tags li {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--aa-soft);
    border: 1px solid var(--aa-line);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: var(--aa-ink);
}

.np-grant-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.np-grant-points li {
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--aa-line);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--aa-navy);
}

.content-section .np-grant-note {
    max-width: 680px;
    margin: 0 auto 36px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: var(--aa-muted);
}

.np-grant-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.np-grant-panel {
    padding: 32px 28px;
    border-radius: var(--aa-radius);
    background: #fff;
    border: 1px solid var(--aa-line);
}

.np-grant-panel h3 {
    margin: 0 0 14px;
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    color: var(--aa-navy);
}

.np-grant-panel p {
    margin: 0 0 16px;
    color: var(--aa-muted);
    line-height: 1.7;
}

.np-org-list {
    display: grid;
    gap: 10px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.np-org-list li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--aa-ink);
}

.np-org-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aa-blue);
}

@media screen and (max-width: 768px) {
    .np-service {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 22px 20px;
    }

    .np-grant-split {
        grid-template-columns: 1fr;
    }
}

.ind-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ind-service-card {
    padding: 28px 24px;
    border: 1px solid var(--aa-line);
    border-radius: var(--aa-radius);
    background: #fff;
}

.ind-service-card h3 {
    margin: 0 0 16px;
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    color: var(--aa-navy);
}

.ind-service-card .check-list {
    margin: 0;
}

.ind-inline-cta {
    margin: 28px 0 0;
    text-align: center;
}

.content-wrap > .ind-inline-cta:first-child {
    margin: 0 0 28px;
}

.np-card--blue {
    background: linear-gradient(160deg, #1a2980 0%, #4665BB 100%) !important;
    border-color: transparent !important;
    color: #fff;
}

.np-card--blue .page-kicker,
.np-card--blue h3,
.np-card--blue p,
.np-card--blue .ind-note,
.np-card--blue .check-list li,
.np-card--blue .np-org-list li {
    color: #fff;
}

.np-card--blue p,
.np-card--blue .ind-note {
    color: rgba(255, 255, 255, 0.92);
}

.np-card--blue .check-list li::before,
.np-card--blue .np-org-list li::before {
    background: #fff;
    color: #fff;
}

.np-card--blue .check-list li::before {
    background: transparent;
    color: #fff;
}

.ind-note {
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--aa-muted);
}

.ind-process.ind-process--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ind-spotlight {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--aa-line);
    border-radius: var(--aa-radius);
    overflow: hidden;
    background: #fff;
}

.ind-spotlight-item {
    padding: 28px 24px;
    border-right: 1px solid var(--aa-line);
}

.ind-spotlight-item:last-child {
    border-right: none;
}

.ind-spotlight-item strong {
    display: block;
    margin-bottom: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--aa-navy);
    letter-spacing: -0.01em;
}

.ind-spotlight-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--aa-muted);
}

.ind-story {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.ind-story-main h2,
.ind-story-side h2 {
    margin-bottom: 14px;
}

.ind-story-main p,
.ind-story-side p {
    margin: 0 0 14px;
    color: var(--aa-muted);
    line-height: 1.7;
}

.ind-story-side {
    padding: 28px 26px;
    border-radius: var(--aa-radius);
    background: linear-gradient(160deg, #1a2980 0%, #4665BB 100%);
    color: #fff;
}

.ind-story-side .page-kicker,
.ind-story-side h2,
.ind-story-side p {
    color: #fff;
}

.ind-story-side p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
}

.ind-duo {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.ind-duo-panel {
    padding: 32px 28px;
    border-radius: var(--aa-radius);
    border: 1px solid var(--aa-line);
    background: #fff;
}

.ind-duo-panel h3 {
    margin: 0 0 18px;
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    color: var(--aa-navy);
}

.ind-duo-panel.np-card--blue h3,
.ind-duo-panel.np-card--blue .page-kicker {
    color: #fff;
}

.ind-duo-panel .check-list {
    margin: 0;
}

.ind-audience {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ind-audience li {
    position: relative;
    padding-left: 22px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--aa-ink);
}

.ind-audience li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aa-blue);
}

.ind-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: ind-step;
}

.ind-process li {
    counter-increment: ind-step;
    padding-top: 8px;
}

.ind-process li::before {
    content: counter(ind-step, decimal-leading-zero);
    display: block;
    margin-bottom: 12px;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--aa-blue);
}

.ind-process h3 {
    margin: 0 0 8px;
    font-size: 17px;
    color: var(--aa-navy);
}

.ind-process p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--aa-muted);
}

.ind-page .internal-links {
    justify-content: flex-start;
}

@media screen and (max-width: 1024px) {
    .ind-spotlight,
    .ind-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ind-spotlight-item:nth-child(2) {
        border-right: none;
    }

    .ind-spotlight-item:nth-child(1),
    .ind-spotlight-item:nth-child(2) {
        border-bottom: 1px solid var(--aa-line);
    }

    .ind-story,
    .ind-duo {
        grid-template-columns: 1fr;
    }

    .ind-page .page-hero.hero-industry .page-hero-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 768px) {
    .ind-page .page-hero.hero-industry {
        min-height: min(58vh, 520px);
    }

    .ind-page .page-hero.hero-industry .page-hero-inner {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 72px;
        padding-bottom: 48px;
    }

    .ind-page .page-hero.hero-industry h1 {
        max-width: none;
        font-size: clamp(28px, 8vw, 40px);
    }

    .ind-duo-panel {
        padding: 26px 22px;
    }

    .ind-spotlight-item {
        padding: 22px 20px;
    }

    .band-cta {
        padding: 64px 20px;
    }
}

@media screen and (max-width: 640px) {
    .ind-spotlight,
    .ind-process,
    .ind-audience {
        grid-template-columns: 1fr;
    }

    .ind-service-grid,
    .ind-process.ind-process--six {
        grid-template-columns: 1fr;
    }

    .ind-page--nonprofit .ind-service-card,
    .ind-page--nonprofit .ind-service-card--wide {
        grid-column: auto;
    }

    .ind-page--nonprofit .page-hero.hero-industry h1 br {
        display: none;
    }

    .ind-spotlight-item {
        border-right: none;
        border-bottom: 1px solid var(--aa-line);
    }

    .ind-spotlight-item:last-child {
        border-bottom: none;
    }

    .ind-spotlight-item:nth-child(1),
    .ind-spotlight-item:nth-child(2) {
        border-bottom: 1px solid var(--aa-line);
    }
}

/* ---------- Assessment request page ---------- */
.assess-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
}

.assess-trust {
    margin-top: 0;
}

.assess-prepare {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.assess-prepare-copy {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--aa-line);
    border-radius: var(--aa-radius);
    padding: 40px 36px;
}

.assess-prepare-copy h2 {
    margin-bottom: 14px;
}

.assess-prepare-copy .check-list {
    margin: 22px 0 20px;
}

.assess-privacy {
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--aa-line);
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.assess-prepare-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 40px 32px;
    border-radius: var(--aa-radius);
    background: linear-gradient(160deg, rgba(26, 41, 128, 0.94), rgba(70, 101, 187, 0.92));
    color: #fff;
    box-shadow: 0 18px 40px rgba(26, 41, 128, 0.18);
}

.assess-prepare-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-family: 'Lexend', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.assess-prepare-cta h3 {
    margin: 0;
    font-family: 'Lexend', sans-serif;
    font-size: clamp(24px, 3vw, 30px);
    color: #fff;
    letter-spacing: -0.02em;
}

.assess-prepare-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.65;
}

.assess-prepare-cta .cta-btn-primary {
    align-self: flex-start;
    margin-top: 6px;
}

.assess-prepare-note {
    font-size: 13px !important;
    opacity: 0.75;
}

.assess-page .svc-process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media screen and (max-width: 1024px) {
    .svc-split,
    .svc-duo,
    .svc-industry-grid {
        grid-template-columns: 1fr;
    }

    .svc-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 20px;
    }

    .svc-process::before {
        display: none;
    }

    .assess-prepare {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .svc-section-intro {
        margin-bottom: 32px;
    }

    .svc-split-panel,
    .svc-duo-panel {
        padding: 28px 22px;
    }

    .svc-process {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .svc-reason {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        padding: 16px 18px;
    }

    .home-industries-cards .home-industry-card {
        min-height: 0;
    }

    .home-industry-learn {
        width: 100%;
        justify-content: center;
    }

    .assess-prepare-copy,
    .assess-prepare-cta {
        padding: 28px 22px;
    }

    .assess-prepare-cta .cta-btn-primary {
        width: 100%;
        justify-content: center;
    }
}

.feature-card,
.info-card {
    background: #fff;
    border: 1px solid var(--aa-line);
    border-radius: var(--aa-radius);
    padding: 28px 24px;
    box-shadow: none;
    transition: border-color 0.25s ease, transform 0.25s var(--aa-ease), box-shadow 0.25s ease;
}

.feature-card:hover,
.info-card:hover {
    border-color: rgba(70, 101, 187, 0.28);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(26, 41, 128, 0.07);
}

.feature-card i,
.info-card i {
    font-size: 22px;
    color: var(--aa-blue);
    margin-bottom: 14px;
}

.feature-card h3,
.info-card h3 {
    margin-top: 0;
    font-size: 19px;
}

.feature-card a,
.info-card a {
    color: var(--aa-blue);
    font-weight: 600;
    text-decoration: none;
}

.feature-card a:hover,
.info-card a:hover {
    color: var(--aa-navy);
}

/* Soft tinted service support cards (must follow .feature-card) */
.feature-card.svc-tint {
    --svc-tint-bg: #f7f9ff;
    --svc-tint-border: rgba(70, 101, 187, 0.12);
    --svc-tint-icon: var(--aa-blue);
    background: var(--svc-tint-bg);
    border-color: var(--svc-tint-border);
}

.feature-card.svc-tint i {
    color: var(--svc-tint-icon);
}

.feature-card.svc-tint--blue {
    --svc-tint-bg: #eef2ff;
    --svc-tint-border: rgba(70, 101, 187, 0.18);
    --svc-tint-icon: #4665BB;
}

.feature-card.svc-tint--sky {
    --svc-tint-bg: #eaf6ff;
    --svc-tint-border: rgba(56, 152, 220, 0.18);
    --svc-tint-icon: #3a8fd4;
}

.feature-card.svc-tint--teal {
    --svc-tint-bg: #eaf8f5;
    --svc-tint-border: rgba(26, 140, 130, 0.18);
    --svc-tint-icon: #1a8c82;
}

.feature-card.svc-tint--mint {
    --svc-tint-bg: #ebf9f0;
    --svc-tint-border: rgba(52, 160, 110, 0.18);
    --svc-tint-icon: #2f9a68;
}

.feature-card.svc-tint--peach {
    --svc-tint-bg: #fff3eb;
    --svc-tint-border: rgba(255, 140, 66, 0.2);
    --svc-tint-icon: #e8893c;
}

.feature-card.svc-tint--coral {
    --svc-tint-bg: #ffefec;
    --svc-tint-border: rgba(232, 110, 90, 0.18);
    --svc-tint-icon: #d96a56;
}

.feature-card.svc-tint--navy {
    --svc-tint-bg: #eef1fb;
    --svc-tint-border: rgba(26, 41, 128, 0.16);
    --svc-tint-icon: #1a2980;
}

.feature-card.svc-tint--sand {
    --svc-tint-bg: #f8f3e8;
    --svc-tint-border: rgba(180, 150, 90, 0.2);
    --svc-tint-icon: #b08d45;
}

.feature-card.svc-tint--sage {
    --svc-tint-bg: #eef5eb;
    --svc-tint-border: rgba(110, 140, 100, 0.18);
    --svc-tint-icon: #6a8a5e;
}

.feature-card.svc-tint--cyan {
    --svc-tint-bg: #e8f8fb;
    --svc-tint-border: rgba(30, 180, 200, 0.18);
    --svc-tint-icon: #1aa8bc;
}

.feature-card.svc-tint--lilac {
    --svc-tint-bg: #f2effa;
    --svc-tint-border: rgba(120, 100, 180, 0.16);
    --svc-tint-icon: #6f5fad;
}

.steps {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.step-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--aa-line);
    border-radius: 14px;
    padding: 20px;
    box-shadow: none;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--aa-blue), var(--aa-navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
}

.faq-list {
    margin-top: 24px;
}

.faq-item {
    border: 1px solid var(--aa-line);
    border-radius: 14px;
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    color: var(--aa-navy);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    color: var(--aa-blue);
}

.faq-item[open] summary::after {
    content: '\f077';
}

.faq-item p {
    padding: 0 20px 18px;
    margin: 0;
}

.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.internal-links a {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(70, 101, 187, 0.1);
    color: var(--aa-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.internal-links a:hover {
    background: rgba(70, 101, 187, 0.18);
}

.band-cta {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--aa-navy) 0%, var(--aa-blue) 100%);
    color: #fff;
}

.band-cta h2 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.band-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto 28px;
    opacity: 0.95;
    color: #fff;
}

/* ---------- Homepage hero overrides ---------- */
.hero {
    position: relative;
    height: auto;
    min-height: min(68vh, 620px);
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 16, 64, 0.82) 0%, rgba(26, 41, 128, 0.78) 55%, rgba(26, 41, 128, 0.72) 100%),
        url('/assets/images/pexels-mikhail-nilov-8297447.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: aaHeroZoom 18s var(--aa-ease) infinite alternate;
    z-index: 0;
}

.hero .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 88px 32px 72px;
    text-align: center;
    animation: aaFadeUp 0.9s var(--aa-ease) both;
}

.hero .hero-content .pre-heading,
.hero .hero-content .aa-kicker {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin: 0 auto 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    opacity: 1;
    text-align: center;
}

.hero .hero-content h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 0;
    white-space: normal;
    overflow: visible;
    font-size: clamp(28px, 4.6vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 auto 16px;
    text-align: center;
}

.hero .hero-content h1 .hero-line {
    display: block;
    white-space: nowrap;
}

.hero .hero-content .lead {
    max-width: 34ch;
    margin: 0 auto 24px;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.55;
    letter-spacing: 0;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.hero .hero-buttons,
.hero .cta-row,
.hero .edu-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-trust {
    display: none;
}

/* ---------- Home: What We Do ---------- */
.home-do {
    position: relative;
    padding: 100px 90px;
    background: transparent;
    overflow: hidden;
}

.home-do-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.home-do-intro {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.home-do-intro h2 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 600;
    color: var(--aa-navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 14px;
}

.home-do-intro p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--aa-muted);
    margin: 0;
}

.home-do-item {
    display: grid;
    grid-template-columns: 52px 56px 1fr auto;
    gap: 18px 20px;
    align-items: center;
    padding: 28px 16px;
    margin: 0 -4px;
    border-radius: 16px;
    border-bottom: none;
    text-decoration: none;
    color: inherit;
    --do-accent: #4665BB;
    --do-accent-soft: rgba(70, 101, 187, 0.1);
    --do-accent-wash: rgba(70, 101, 187, 0.06);
    background: var(--do-accent-wash);
    transition: background 0.25s var(--aa-ease), transform 0.25s var(--aa-ease), box-shadow 0.25s ease;
}

.home-do-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: none;
}

.home-do-item--orange {
    --do-accent: #ff6b35;
    --do-accent-soft: rgba(255, 107, 53, 0.14);
    --do-accent-wash: rgba(255, 107, 53, 0.07);
}

.home-do-item--cyan {
    --do-accent: #1ec8e8;
    --do-accent-soft: rgba(30, 200, 232, 0.16);
    --do-accent-wash: rgba(30, 200, 232, 0.08);
}

.home-do-item--teal {
    --do-accent: #1a6b8a;
    --do-accent-soft: rgba(26, 107, 138, 0.14);
    --do-accent-wash: rgba(26, 107, 138, 0.07);
}

.home-do-item--purple {
    --do-accent: #7b3fe4;
    --do-accent-soft: rgba(123, 63, 228, 0.14);
    --do-accent-wash: rgba(123, 63, 228, 0.07);
}

.home-do-item--peach {
    --do-accent: #f0a06a;
    --do-accent-soft: rgba(240, 160, 106, 0.18);
    --do-accent-wash: rgba(240, 160, 106, 0.09);
}

.home-do-item:hover {
    background: color-mix(in srgb, var(--do-accent) 12%, white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px color-mix(in srgb, var(--do-accent) 16%, transparent);
    padding-left: 16px;
}

.home-do-num {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--do-accent);
}

.home-do-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--do-accent-soft);
    color: var(--do-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--aa-ease);
}

.home-do-item:hover .home-do-icon {
    background: var(--do-accent);
    color: #fff;
    transform: scale(1.06);
}

.home-do-body h3 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    color: var(--aa-ink);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.home-do-body p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--aa-muted);
    margin: 0;
    max-width: 520px;
}

.home-do-go {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--do-accent);
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.5px solid color-mix(in srgb, var(--do-accent) 28%, transparent);
    background: rgba(255, 255, 255, 0.55);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-do-go i {
    font-size: 12px;
    transition: transform 0.25s var(--aa-ease);
}

.home-do-item:hover .home-do-go {
    background: var(--do-accent);
    border-color: var(--do-accent);
    color: #fff;
}

.home-do-item:hover .home-do-go i {
    transform: translateX(3px);
}

@media screen and (max-width: 1024px) {
    .home-do {
        padding: 80px 40px;
    }
}

@media screen and (max-width: 768px) {
    .home-do {
        padding: 64px 20px;
    }

    .home-do-intro {
        margin-bottom: 36px;
        text-align: left;
    }

    .home-do-item {
        grid-template-columns: 40px 1fr;
        gap: 10px 14px;
        padding: 22px 14px;
        align-items: start;
    }

    .home-do-item:hover {
        padding-left: 14px;
        transform: none;
    }

    .home-do-num {
        padding-top: 4px;
    }

    .home-do-icon {
        grid-column: 2;
        grid-row: 1;
        width: 44px;
        height: 44px;
        font-size: 16px;
        margin-bottom: 2px;
    }

    .home-do-body {
        grid-column: 1 / -1;
    }

    .home-do-go {
        grid-column: 1 / -1;
        justify-content: center;
        width: 100%;
    }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }

@media (prefers-reduced-motion: reduce) {
    .page-hero::before,
    .hero::before,
    .page-hero-inner,
    .hero .hero-content {
        animation: none;
    }

    .home-do-item,
    .home-do-icon,
    .home-do-go,
    .home-do-go i {
        transition: none;
    }

    .home-do-item:hover {
        padding-left: 16px;
        transform: none;
        box-shadow: none;
    }

    .home-do-item:hover .home-do-icon {
        transform: none;
    }
}

@media screen and (max-width: 1024px) {
    .page-hero-inner,
    .hero .hero-content {
        padding: 80px 40px 56px;
    }

    .content-section {
        padding: 70px 40px;
    }
}

@media screen and (max-width: 768px) {
    .page-hero {
        min-height: 56vh;
    }

    .page-hero-inner,
    .hero .hero-content {
        padding: 72px 20px 48px;
    }

    .hero .hero-content h1 {
        font-size: clamp(22px, 6.4vw, 38px);
    }

    .content-section {
        padding: 56px 20px;
    }

    .step-item {
        grid-template-columns: 40px 1fr;
    }

    .aa-jump {
        top: 70px;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-row .cta-btn-primary,
    .cta-row .aa-btn-ghost {
        justify-content: center;
    }
}
