/* NexPort — Public marketing site */

.site-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    background: #fff;
}

.site-container {
    width: min(1140px, 100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    --site-header-h: 84px;
}

.site-header.scrolled {
    border-bottom-color: #e2e8f0;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--site-header-h);
    gap: 1rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand img {
    display: block;
}

.site-brand-icon {
    display: none;
}

.site-brand-wordmark {
    height: 40px;
    width: auto;
    max-width: none;
}

.site-nav-toggle {
    width: 50px;
    height: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    font-size: 1.55rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav-link {
    padding: 0.65rem 1.1rem;
    font-size: 1.02rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}

.site-nav-link:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.site-nav-link.active {
    color: #4f46e5;
    background: rgba(99, 102, 241, 0.08);
}

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid #e2e8f0;
}

.site-btn-ghost {
    padding: 0.62rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    transition: all 0.15s;
}

.site-btn-ghost:hover {
    border-color: #cbd5e1;
    color: #0f172a;
}

.site-btn-primary {
    padding: 0.62rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    transition: transform 0.15s, box-shadow 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
    color: #fff;
}

.site-btn-outline {
    padding: 0.65rem 1.35rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #4f46e5;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #4f46e5;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.15s;
}

.site-btn-outline:hover {
    background: #4f46e5;
    color: #fff;
}

.site-btn-white {
    padding: 0.65rem 1.35rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #4f46e5;
    text-decoration: none;
    border-radius: 10px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

@media (max-width: 991.98px) {
    .site-nav {
        position: fixed;
        top: var(--site-header-h);
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.25s ease;
    }

    .site-nav-link {
        font-size: 1.1rem;
        padding: 0.85rem 1rem;
    }

    .site-nav.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav-actions {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        flex-direction: column;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid #e2e8f0;
    }

    .site-btn-ghost,
    .site-btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.65rem;
    }
}

/* ── Hero ── */
.site-hero {
    padding: 3.5rem 0 4rem;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    overflow: hidden;
}

.site-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .site-hero {
        padding: 4.5rem 0 5rem;
    }
    .site-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.site-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4f46e5;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.site-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.15rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

.site-hero-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 1.75rem;
    max-width: 48ch;
}

.site-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.site-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.82rem;
    color: #64748b;
}

.site-hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.site-hero-trust i {
    color: #10b981;
}

.site-hero-visual {
    position: relative;
}

.site-hero-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.site-hero-float {
    position: absolute;
    bottom: -1rem;
    left: -0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.85rem 1.1rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 260px;
}

@media (max-width: 575.98px) {
    .site-hero-float {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

.site-hero-float .float-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.site-hero-float strong {
    display: block;
    font-size: 0.85rem;
    color: #0f172a;
}

.site-hero-float small {
    font-size: 0.72rem;
    color: #64748b;
}

/* Page hero (inner pages) */
.site-page-hero {
    padding: 3rem 0;
    background: #0f172a;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.site-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.site-page-hero .site-container {
    position: relative;
    z-index: 1;
}

.site-page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.site-page-hero p {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 52ch;
    margin: 0;
    line-height: 1.6;
}

.site-breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: #64748b;
}

.site-breadcrumb a {
    color: #a5b4fc;
    text-decoration: none;
}

/* ── Stats strip ── */
.site-stats {
    background: #0f172a;
    padding: 2rem 0;
}

.site-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .site-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.site-stat-item {
    text-align: center;
}

.site-stat-item .num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.site-stat-item .label {
    font-size: 0.78rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Sections ── */
.site-section {
    padding: 4.5rem 0;
}

.site-section-alt {
    background: #f8fafc;
}

.site-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.site-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.site-section-header p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Service cards */
.site-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .site-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.site-card-grid.two-col {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .site-card-grid.two-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.site-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.site-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.site-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #e2e8f0;
}

.site-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.site-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.site-card-icon.visa {
    background: rgba(99, 102, 241, 0.12);
    color: #4f46e5;
}

.site-card-icon.grant {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.site-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.site-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.site-card-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: #4f46e5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.site-card-link:hover {
    color: #4338ca;
}

/* Steps */
.site-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.site-step {
    text-align: center;
    padding: 0 1rem;
}

.site-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4f46e5;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.site-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.site-step p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Split content + image */
.site-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .site-split {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .site-split.reverse .site-split-img {
        order: -1;
    }
}

.site-split-img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.site-split h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.site-split p {
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.site-check-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.site-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: #475569;
    margin-bottom: 0.65rem;
}

.site-check-list i {
    color: #10b981;
    margin-top: 3px;
}

/* Testimonial */
.site-testimonial {
    background: #0f172a;
    border-radius: 20px;
    padding: 2.5rem;
    color: #e2e8f0;
    position: relative;
}

.site-testimonial::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(99, 102, 241, 0.3);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.site-testimonial blockquote {
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0 0 1.5rem;
    padding-top: 1rem;
    color: #cbd5e1;
}

.site-testimonial cite {
    font-style: normal;
    font-size: 0.88rem;
}

.site-testimonial cite strong {
    display: block;
    color: #fff;
}

/* CTA band */
.site-cta {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #7c3aed 100%);
    padding: 3.5rem 0;
    text-align: center;
    color: #fff;
}

.site-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.site-cta p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.site-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Values grid */
.site-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .site-values {
        grid-template-columns: repeat(3, 1fr);
    }
}

.site-value-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
}

.site-value-card i {
    font-size: 1.5rem;
    color: #4f46e5;
    margin-bottom: 0.75rem;
    display: block;
}

.site-value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #0f172a;
}

.site-value-card p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

/* Timeline */
.site-timeline {
    border-left: 2px solid #e2e8f0;
    margin-left: 0.5rem;
    padding-left: 1.75rem;
}

.site-timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.site-timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4f46e5;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e2e8f0;
}

.site-timeline-item .year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0.25rem;
}

.site-timeline-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.site-timeline-item p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

/* Contact */
.site-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .site-contact-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 3rem;
    }
}

.site-contact-info {
    display: grid;
    gap: 1rem;
}

.site-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.site-info-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.site-info-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.site-info-card p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.site-contact-form {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
}

.site-contact-form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #0f172a;
}

.site-contact-form .sub {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.site-form-row {
    margin-bottom: 1.1rem;
}

.site-form-row label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}

.site-form-row .form-control,
.site-form-row .form-select,
.site-form-row textarea {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
}

.site-form-row .form-control:focus,
.site-form-row textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.site-map-img {
    width: 100%;
    border-radius: 16px;
    height: 280px;
    object-fit: cover;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.site-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.15rem 1.25rem;
    margin-bottom: 0.75rem;
    background: #fff;
}

.site-faq-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.site-faq-item p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

/* Service detail blocks */
.site-service-block {
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.site-service-block:last-child {
    border-bottom: none;
}

.site-service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.site-service-meta span {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    background: #f1f5f9;
    color: #475569;
}

/* Footer */
.site-footer {
    background: #0c1222;
    color: #94a3b8;
    padding: 3.5rem 0 0;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .site-footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }
}

.site-footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.site-footer h6 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e2e8f0;
    font-weight: 700;
    margin-bottom: 1rem;
}

.site-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-links li {
    margin-bottom: 0.5rem;
}

.site-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.15s;
}

.site-footer-links a:hover {
    color: #fff;
}

.site-footer-contact li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.site-footer-contact i {
    color: #6366f1;
    margin-top: 2px;
}

.site-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0 1.75rem;
    font-size: 0.8rem;
}

.site-footer-legal {
    display: flex;
    gap: 1.25rem;
}

.site-footer-legal a {
    color: #64748b;
    text-decoration: none;
}

.site-footer-legal a:hover {
    color: #a5b4fc;
}

.site-success-msg {
    text-align: center;
    padding: 2rem;
}

.site-success-msg i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
    display: block;
}

/* ═══ Home page — hero & showcase sliders ═══ */
.home-hero-slider {
    position: relative;
    background: #0f172a;
}

.home-hero-slider .carousel {
    max-height: min(72vh, 640px);
    min-height: 380px;
}

.home-hero-slider .carousel-inner,
.home-hero-slider .carousel-item {
    height: min(72vh, 640px);
    min-height: 380px;
}

.home-hero-slider .carousel-item {
    position: relative;
}

.home-hero-slider .carousel-item:not(.active) .home-slide-caption,
.home-hero-slider .carousel-item:not(.active) .home-slide-overlay {
    visibility: hidden;
    pointer-events: none;
}

.home-slide-media {
    position: absolute;
    inset: 0;
    background: #0f172a;
}

.home-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(15, 23, 42, 0.55) 45%,
        rgba(15, 23, 42, 0.25) 100%
    );
    pointer-events: none;
}

.home-slide-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 2rem 0;
}

.home-slide-caption-inner {
    max-width: 560px;
    color: #fff;
}

.home-slide-caption .slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #a5b4fc;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(165, 180, 252, 0.25);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.home-slide-caption h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
}

.home-slide-caption p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1.35rem;
    max-width: 46ch;
}

.home-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.home-hero-slider .carousel-control-prev,
.home-hero-slider .carousel-control-next {
    display: none !important;
}

.home-hero-slider .carousel-indicators {
    margin-bottom: 1.25rem;
    gap: 0.35rem;
}

.home-hero-slider .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    opacity: 1;
    transition: all 0.2s ease;
}

.home-hero-slider .carousel-indicators .active {
    background: #fff;
    border-color: #fff;
    width: 28px;
    border-radius: 100px;
}

/* Intro bar below hero */
.home-intro-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.75rem 0;
}

.home-intro-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.home-intro-bar h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}

.home-intro-bar p {
    margin: 0;
    font-size: 0.92rem;
    color: #64748b;
}

.home-intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.home-intro-pills span {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    background: #f1f5f9;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.home-intro-pills i {
    color: #10b981;
}

/* Showcase gallery slider */
.home-showcase-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.home-showcase-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 992px) {
    .home-showcase-wrap {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 2rem;
        align-items: stretch;
    }
}

.home-showcase-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0f172a;
    aspect-ratio: 16 / 10;
    min-height: 260px;
    max-height: 480px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    border: 1px solid #e2e8f0;
}

.home-showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.35s ease;
}

.home-showcase-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.home-showcase-badge .badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.12);
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.home-showcase-badge strong {
    display: block;
    font-size: 0.88rem;
    color: #0f172a;
}

.home-showcase-badge small {
    font-size: 0.75rem;
    color: #64748b;
}

.home-showcase-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

@media (min-width: 480px) {
    .home-showcase-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .home-showcase-thumbs {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        height: 100%;
        max-height: 480px;
    }
}

.home-showcase-thumb {
    position: relative;
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    background: #e2e8f0;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    min-height: 90px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.home-showcase-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-showcase-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    transition: opacity 0.2s;
}

.home-showcase-thumb.active {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    transform: scale(1.02);
}

.home-showcase-thumb.active::after {
    opacity: 0;
}

.home-showcase-thumb span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0.4rem 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    text-align: left;
}

/* Image marquee strip */
.home-marquee {
    padding: 2.5rem 0;
    background: #0f172a;
    overflow: hidden;
}

.home-marquee-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.home-marquee-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.home-marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: homeMarquee 40s linear infinite;
}

.home-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes homeMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.home-marquee-item {
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Card images — enforced in .site-card-img above */

.site-split-img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
    background: #e2e8f0;
}

/* ═══ Home page — editorial layout (less template, more detail) ═══ */
.home-page {
    --home-navy: #1e3a5f;
    --home-navy-dark: #152a45;
    --home-amber: #b45309;
    --home-amber-light: #fef3c7;
    --home-border: #e2e8f0;
    --home-muted: #64748b;
}

.home-page .site-btn-primary {
    background: var(--home-navy);
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.25);
}

.home-page .site-nav-link.active {
    color: var(--home-navy);
    background: rgba(30, 58, 95, 0.07);
}

.home-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--home-amber);
    margin-bottom: 0.5rem;
}

.home-section-head {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.home-section-head h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.home-section-head p {
    color: var(--home-muted);
    margin: 0;
    line-height: 1.65;
}

/* Hero refinements */
.home-page .home-hero-slider {
    background: var(--home-navy-dark);
}

.home-slide-caption .slide-eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fcd34d;
    margin-bottom: 0.65rem;
    padding-left: 0.85rem;
    border-left: 3px solid var(--home-amber);
}

.home-slide-caption h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.65rem, 3.8vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 0.85rem;
    color: #fff;
}

.home-page .home-slide-overlay {
    background: linear-gradient(100deg, rgba(21, 42, 69, 0.92) 0%, rgba(21, 42, 69, 0.6) 50%, rgba(21, 42, 69, 0.2) 100%);
}

.home-page .home-slide-caption {
    justify-content: center;
    align-items: center;
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
}

.home-page .home-slide-caption .site-container {
    width: min(1140px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.home-page .home-slide-caption-inner {
    max-width: 580px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.home-page .home-slide-actions {
    justify-content: flex-start;
}

.home-btn-solid {
    padding: 0.7rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    background: var(--home-amber);
    display: inline-flex;
    align-items: center;
    transition: background 0.15s;
}

.home-btn-solid:hover {
    background: #92400e;
    color: #fff;
}

.home-btn-solid.home-btn-dark {
    background: var(--home-navy);
}

.home-btn-solid.home-btn-dark:hover {
    background: var(--home-navy-dark);
}

.home-btn-line {
    padding: 0.68rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
    transition: border-color 0.15s, background 0.15s;
}

.home-btn-line:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.home-btn-line-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.home-link-arrow {
    font-weight: 700;
    color: var(--home-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.home-link-arrow:hover {
    color: var(--home-amber);
}

/* Facts bar */
.home-facts-bar {
    background: var(--home-navy);
    padding: 1.5rem 0;
    border-bottom: 3px solid var(--home-amber);
}

.home-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
}

.home-fact {
    min-width: 0;
}

@media (min-width: 768px) {
    .home-facts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-fact-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.home-fact-label {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Welcome */
.home-welcome-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .home-welcome-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

.home-welcome-copy h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 1.95rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.home-welcome-copy p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.home-page .site-check-list li i {
    color: var(--home-navy);
}

.home-welcome-figure {
    margin: 0;
}

.home-welcome-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
    background: #e2e8f0;
    border: 1px solid var(--home-border);
}

.home-welcome-figure figcaption {
    font-size: 0.78rem;
    color: var(--home-muted);
    margin-top: 0.6rem;
    font-style: italic;
}

/* Program cards */
.home-program-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .home-program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .home-program-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-program-card {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-program-img-wrap {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #e2e8f0;
}

.home-program-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-program-body {
    padding: 1.25rem 1.35rem 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-program-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.home-program-body p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.home-program-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    font-size: 0.8rem;
    color: var(--home-muted);
}

.home-program-body ul li {
    padding: 0.2rem 0;
    padding-left: 1rem;
    position: relative;
}

.home-program-body ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--home-amber);
}

.home-program-body > a {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--home-navy);
    text-decoration: none;
}

.home-program-body > a:hover {
    color: var(--home-amber);
}

/* Process steps */
.home-process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--home-border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.home-process-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid var(--home-border);
    align-items: flex-start;
}

.home-process-step:last-child {
    border-bottom: none;
}

.home-process-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--home-amber);
    flex-shrink: 0;
    width: 2rem;
}

.home-process-step h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.home-process-step p {
    font-size: 0.88rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* Split block */
.home-split-block {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .home-split-block {
        grid-template-columns: 1fr 1fr;
    }
}

.home-split-figure {
    margin: 0;
}

.home-split-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: none;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--home-border);
}

.home-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.home-checklist-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--home-border);
}

.home-checklist-item i {
    font-size: 1.15rem;
    color: var(--home-navy);
    margin-top: 0.1rem;
}

.home-checklist-item strong {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
}

.home-checklist-item span {
    font-size: 0.8rem;
    color: var(--home-muted);
}

/* Processing table */
.home-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--home-border);
    border-radius: 10px;
    background: #fff;
}

.home-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.home-table th,
.home-table td {
    padding: 0.85rem 1.15rem;
    text-align: left;
    border-bottom: 1px solid var(--home-border);
}

.home-table th {
    background: #f8fafc;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-table tbody tr:last-child td {
    border-bottom: none;
}

.home-table tbody tr:hover {
    background: #fafbfc;
}

/* Offices */
.home-office-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .home-office-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.home-office-card {
    border: 1px solid var(--home-border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.home-office-card > img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #e2e8f0;
}

.home-office-body {
    padding: 1.25rem 1.35rem;
}

.home-office-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.home-office-body p {
    font-size: 0.88rem;
    color: #475569;
    margin-bottom: 0.75rem;
}

.home-office-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.82rem;
    color: var(--home-muted);
}

.home-office-body ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

/* Reviews */
.home-review-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .home-review-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-review {
    margin: 0;
    padding: 1.35rem;
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-review p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 1rem;
    flex: 1;
}

.home-review footer {
    font-size: 0.78rem;
    color: var(--home-muted);
    border-top: 1px solid var(--home-border);
    padding-top: 0.85rem;
}

.home-review footer strong {
    color: #0f172a;
}

/* FAQ */
.home-faq-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 992px) {
    .home-faq-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 3rem;
        align-items: start;
    }
}

.home-accordion .accordion-item {
    border: 1px solid var(--home-border);
    border-radius: 8px !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.home-accordion .accordion-button {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    background: #fff;
    box-shadow: none;
}

.home-accordion .accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: var(--home-navy);
}

.home-accordion .accordion-body {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.65;
}

/* CTA */
.home-cta {
    background: var(--home-navy);
    padding: 3rem 0;
}

.home-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.home-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
}

.home-cta p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.92rem;
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

/* Showcase badge color tweak */
.home-page .home-showcase-badge .badge-icon {
    background: rgba(30, 58, 95, 0.1);
    color: var(--home-navy);
}

.home-page .home-showcase-thumb.active {
    border-color: var(--home-navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}

.home-page .home-marquee {
    background: var(--home-navy-dark);
}

/* Global image safety on home page */
.home-page :where(section, article, figure) img {
    max-width: 100%;
    height: auto;
}

.home-page .site-header .site-brand-wordmark,
.home-page .site-footer-brand > img {
    max-width: none;
}

.home-page .site-header .site-brand-wordmark {
    height: 40px;
    width: auto;
}

.home-page .site-footer-brand > img {
    height: 36px;
    width: auto;
}

.home-page .home-slide-media img,
.home-page .home-showcase-main img,
.home-page .home-showcase-thumb img,
.home-page .home-marquee-item img,
.home-page .site-card-img,
.home-page .home-program-img-wrap img,
.home-page .home-office-card > img,
.home-page .home-welcome-img {
    height: 100%;
}

@media (max-width: 575.98px) {
    .home-hero-slider .carousel,
    .home-hero-slider .carousel-inner,
    .home-hero-slider .carousel-item {
        min-height: 420px;
        max-height: 520px;
    }

    .home-page .home-slide-caption .site-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .home-slide-caption p {
        font-size: 0.9rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — team, certifications, testimonials
   ═══════════════════════════════════════════════════════════ */
.about-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .about-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .about-team-grid { grid-template-columns: repeat(4, 1fr); }
}

.about-team-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px -14px rgba(15, 23, 42, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px -20px rgba(15, 23, 42, 0.3);
}

.about-team-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    display: block;
    background: #e2e8f0;
}

.about-team-body {
    padding: 1.15rem 1.3rem 1.4rem;
}

.about-team-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.15rem;
}

.about-team-role {
    font-size: 0.8rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0.55rem;
}

.about-team-body p:last-child {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.about-cert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .about-cert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .about-cert-grid { grid-template-columns: repeat(4, 1fr); }
}

.about-cert {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cert:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px -18px rgba(15, 23, 42, 0.28);
}

.about-cert i {
    font-size: 1.7rem;
    color: #059669;
    flex-shrink: 0;
}

.about-cert strong {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
}

.about-cert span {
    font-size: 0.78rem;
    color: #64748b;
}

.about-quote-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-quote-grid { grid-template-columns: repeat(3, 1fr); }
}

.about-quote {
    margin: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem 1.6rem 1.5rem;
    position: relative;
    box-shadow: 0 8px 24px -14px rgba(15, 23, 42, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-quote::before {
    content: '\201C';
    position: absolute;
    top: 0.4rem;
    right: 1.1rem;
    font-family: Georgia, serif;
    font-size: 3.25rem;
    line-height: 1;
    color: rgba(79, 70, 229, 0.18);
}

.about-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px -20px rgba(15, 23, 42, 0.28);
}

.about-quote p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 1rem;
}

.about-quote footer {
    font-size: 0.8rem;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
    padding-top: 0.85rem;
}

.about-quote footer strong {
    display: block;
    color: #0f172a;
    margin-bottom: 0.1rem;
}

/* ═══════════════════════════════════════════════════════════
   HOME PAGE — DESIGN POLISH LAYER
   Consistent rhythm, refined spacing, premium section design
   ═══════════════════════════════════════════════════════════ */

.home-page {
    --home-gold: #d97706;
    --home-soft: #f1f5f9;
    --home-ink: #0f172a;
    --home-shadow: 0 18px 50px -20px rgba(15, 23, 42, 0.28);
    --home-shadow-sm: 0 8px 24px -12px rgba(15, 23, 42, 0.22);
    scroll-behavior: smooth;
}

/* ── Consistent vertical rhythm across every section ── */
.home-page .site-section {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.home-page .site-section-alt {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

/* Subtle hairline divider between stacked light sections */
.home-page .site-section + .site-section:not(.site-section-alt) {
    border-top: 1px solid #eef1f5;
}

/* ── Section heads: centered, with kicker pill + accent rule ── */
.home-page .home-section-head {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
    text-align: center;
}

.home-page .home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--home-amber);
    background: rgba(217, 119, 6, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.home-page .home-kicker::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--home-amber);
}

.home-page .home-section-head h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    line-height: 1.15;
}

.home-page .home-section-head h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--home-amber), #fbbf24);
    margin: 1rem auto 0;
}

.home-page .home-section-head p {
    font-size: 1.02rem;
}

/* Heads that sit beside content (split/faq) stay left aligned */
.home-page .home-faq-grid .home-section-head,
.home-page .home-split-block .home-section-head {
    text-align: left;
    margin-left: 0;
}

/* ── Facts bar: dividers + breathing room ── */
.home-page .home-facts-bar {
    padding: clamp(1.5rem, 3vw, 2.25rem) 0;
}

.home-page .home-facts-grid {
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .home-page .home-fact {
        padding-left: 1.75rem;
        border-left: 1px solid rgba(255, 255, 255, 0.14);
    }
    .home-page .home-fact:first-child {
        padding-left: 0;
        border-left: none;
    }
}

.home-page .home-fact-num {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    background: linear-gradient(180deg, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

/* ── Welcome: framed figure with accent corner ── */
.home-page .home-welcome-figure {
    position: relative;
}

.home-page .home-welcome-figure::before {
    content: '';
    position: absolute;
    inset: -0.85rem -0.85rem auto auto;
    width: 62%;
    height: 62%;
    border-top: 4px solid var(--home-amber);
    border-right: 4px solid var(--home-amber);
    border-top-right-radius: 14px;
    opacity: 0.35;
    z-index: 0;
}

.home-page .home-welcome-img {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    box-shadow: var(--home-shadow);
}

.home-page .home-welcome-copy .site-check-list li {
    background: var(--home-soft);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    margin-bottom: 0.55rem;
    align-items: center;
}

.home-page .home-link-arrow {
    gap: 0.4rem;
    margin-top: 1rem;
}

.home-page .home-link-arrow i {
    transition: transform 0.2s ease;
}

.home-page .home-link-arrow:hover i {
    transform: translateX(4px);
}

/* ── Showcase: deeper card, smoother frame ── */
.home-page .home-showcase-section {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.home-page .home-showcase-main {
    border-radius: 18px;
    box-shadow: var(--home-shadow);
}

/* ── Program cards: lift + image zoom + accent top ── */
.home-page .home-program-grid {
    gap: 1.75rem;
}

.home-page .home-program-card {
    border-radius: 14px;
    box-shadow: var(--home-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.home-page .home-program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--home-shadow);
    border-color: #cbd5e1;
}

.home-page .home-program-img-wrap img {
    transition: transform 0.5s ease;
}

.home-page .home-program-card:hover .home-program-img-wrap img {
    transform: scale(1.06);
}

.home-page .home-program-body {
    padding: 1.4rem 1.5rem 1.5rem;
}

.home-page .home-program-body > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.home-page .home-program-body > a::after {
    content: '\2192';
    transition: transform 0.2s ease;
}

.home-page .home-program-card:hover .home-program-body > a::after {
    transform: translateX(4px);
}

/* ── Process: numbered chips + connecting flow + hover ── */
.home-page .home-process-list {
    border-radius: 14px;
    box-shadow: var(--home-shadow-sm);
}

.home-page .home-process-step {
    gap: 1.5rem;
    padding: 1.6rem 1.75rem;
    transition: background 0.2s ease;
}

.home-page .home-process-step:hover {
    background: #f8fafc;
}

.home-page .home-process-num {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    color: var(--home-amber);
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.18);
}

.home-page .home-process-step:hover .home-process-num {
    background: var(--home-amber);
    color: #fff;
}

/* ── Split block: framed image + roomier copy ── */
.home-page .home-split-block {
    gap: clamp(2.5rem, 5vw, 4.5rem);
}

.home-page .home-split-figure {
    position: relative;
}

.home-page .home-split-img {
    border-radius: 14px;
    box-shadow: var(--home-shadow);
}

.home-page .home-checklist-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-page .home-checklist-item:hover {
    background: #fff;
    transform: translateX(4px);
    box-shadow: var(--home-shadow-sm);
}

/* ── Table: zebra rows + softer frame ── */
.home-page .home-table-wrap {
    border-radius: 14px;
    box-shadow: var(--home-shadow-sm);
}

.home-page .home-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.home-page .home-table tbody tr:hover {
    background: rgba(217, 119, 6, 0.05);
}

.home-page .home-table td:last-child {
    font-weight: 700;
    color: var(--home-navy);
}

/* ── Service cards: refined lift ── */
.home-page .site-card {
    border-radius: 16px;
    box-shadow: var(--home-shadow-sm);
}

.home-page .site-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--home-shadow);
}

.home-page .site-card-img {
    transition: transform 0.5s ease;
}

.home-page .site-card:hover .site-card-img {
    transform: scale(1.05);
}

.home-page .site-card-body {
    padding: 1.6rem;
}

/* ── Offices: lift + image zoom ── */
.home-page .home-office-card {
    border-radius: 14px;
    box-shadow: var(--home-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.home-page .home-office-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--home-shadow);
}

.home-page .home-office-card > img {
    transition: transform 0.5s ease;
}

.home-page .home-office-card:hover > img {
    transform: scale(1.05);
}

.home-page .home-office-body {
    padding: 1.5rem 1.6rem 1.6rem;
}

/* ── Reviews: quote mark + lift + accent ── */
.home-page .home-review-grid {
    gap: 1.5rem;
}

.home-page .home-review {
    padding: 1.75rem 1.6rem 1.5rem;
    border-radius: 14px;
    box-shadow: var(--home-shadow-sm);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .home-review::before {
    content: '\201C';
    position: absolute;
    top: 0.4rem;
    right: 1.1rem;
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(217, 119, 6, 0.18);
}

.home-page .home-review:hover {
    transform: translateY(-5px);
    box-shadow: var(--home-shadow);
}

.home-page .home-review p {
    font-size: 0.94rem;
}

/* ── FAQ: roomier accordion ── */
.home-page .home-accordion .accordion-item {
    border-radius: 10px !important;
    margin-bottom: 0.65rem;
    box-shadow: var(--home-shadow-sm);
    border-color: transparent;
}

.home-page .home-accordion .accordion-button {
    padding: 1.1rem 1.25rem;
}

.home-page .home-accordion .accordion-button:not(.collapsed) {
    box-shadow: inset 3px 0 0 var(--home-amber);
}

/* ── CTA: gradient + texture + decorative glow ── */
.home-page .home-cta {
    background: linear-gradient(120deg, var(--home-navy-dark) 0%, var(--home-navy) 55%, #24507f 100%);
    padding: clamp(2.75rem, 5vw, 4rem) 0;
    position: relative;
    overflow: hidden;
}

.home-page .home-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent 70%);
    pointer-events: none;
}

.home-page .home-cta-inner {
    position: relative;
    z-index: 1;
}

.home-page .home-cta h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
}

/* ── Marquee: a touch more height + label spacing ── */
.home-page .home-marquee {
    padding: clamp(2.25rem, 4vw, 3rem) 0;
}

.home-page .home-marquee-item {
    width: 260px;
    height: 160px;
    border-radius: 14px;
}

/* ── Buttons: a hair more presence ── */
.home-page .home-btn-solid,
.home-page .home-btn-line {
    padding: 0.78rem 1.5rem;
    border-radius: 8px;
}

.home-page .home-btn-solid {
    box-shadow: 0 8px 20px -8px rgba(217, 119, 6, 0.6);
}

/* ── Reveal-on-scroll (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .home-page .home-reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
        will-change: opacity, transform;
    }
    .home-page .home-reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — detailed program layout
   ═══════════════════════════════════════════════════════════ */
.svc-subnav {
    position: sticky;
    top: var(--site-header-h, 84px);
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
}

.svc-subnav-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.75rem 0;
}

.svc-subnav a {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    padding: 0.45rem 0.95rem;
    border-radius: 100px;
    transition: background 0.15s, color 0.15s;
}

.svc-subnav a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

/* Overview cards (two ways we help) */
.svc-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .svc-overview { grid-template-columns: 1fr 1fr; }
}

.svc-overview-card {
    display: flex;
    gap: 1.1rem;
    padding: 1.6rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.3);
}

.svc-overview-card .ic {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.svc-overview-card .ic.visa { background: rgba(99, 102, 241, 0.12); color: #4f46e5; }
.svc-overview-card .ic.grant { background: rgba(16, 185, 129, 0.12); color: #059669; }

.svc-overview-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.svc-overview-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.svc-overview-card a {
    font-size: 0.86rem;
    font-weight: 700;
    color: #4f46e5;
    text-decoration: none;
}

/* Detailed program blocks */
.svc-detail-list {
    display: flex;
    flex-direction: column;
    gap: clamp(2.75rem, 5vw, 4.5rem);
}

.svc-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .svc-detail {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 3.5rem;
    }
    .svc-detail.reverse .svc-figure { order: -1; }
}

.svc-figure {
    position: relative;
    margin: 0;
}

.svc-figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    background: #e2e8f0;
    box-shadow: 0 24px 48px -24px rgba(15, 23, 42, 0.4);
}

.svc-figure-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 10px 28px -12px rgba(15, 23, 42, 0.3);
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
}

.svc-figure-badge span {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.svc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.svc-code {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #4f46e5;
    background: rgba(99, 102, 241, 0.12);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
}

.svc-cat {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
}

.svc-detail h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.svc-detail .svc-sub {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.1rem;
}

.svc-reqs-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #94a3b8;
    margin: 1.2rem 0 0.6rem;
}

.svc-reqs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
}

@media (min-width: 480px) {
    .svc-reqs { grid-template-columns: 1fr 1fr; }
}

.svc-reqs li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.86rem;
    color: #475569;
}

.svc-reqs li i {
    color: #10b981;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.svc-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.4rem;
}

@media (min-width: 480px) {
    .svc-stats { grid-template-columns: repeat(4, 1fr); }
}

.svc-stat {
    padding: 0.8rem 0.85rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
}

.svc-stat .v {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.svc-stat .l {
    font-size: 0.68rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.svc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

/* Fee comparison table */
.svc-table-wrap {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.22);
}

.svc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 560px;
}

.svc-table th,
.svc-table td {
    padding: 0.9rem 1.15rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.svc-table thead th {
    background: #f8fafc;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f172a;
}

.svc-table tbody tr:last-child td { border-bottom: none; }
.svc-table tbody tr:nth-child(even) { background: #fafbfc; }
.svc-table tbody tr:hover { background: rgba(99, 102, 241, 0.05); }
.svc-table td:last-child { font-weight: 700; color: #0f172a; }
