/* =========================================================
   BOTNIRA TRUST CENTER
   LIGHT ENTERPRISE DESIGN
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #172033;
    line-height: 1.7;
    font-size: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: #f7f9fc;
    border-bottom: 1px solid #e8edf3;
}

.top-bar-inner {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #667085;
}

.top-bar-inner a {
    color: #315bea;
    font-weight: 600;
}

.top-bar-inner a:hover {
    text-decoration: underline;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e7ebf1;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* BRAND */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 16px;
    color: #101828;
}

.brand-text span {
    font-size: 11px;
    color: #667085;
    margin-top: 2px;
}


/* NAVIGATION */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-navigation a {
    font-size: 13px;
    color: #667085;
    font-weight: 500;
    padding: 28px 0;
    position: relative;
    white-space: nowrap;
}

.main-navigation a:hover {
    color: #101828;
}

.main-navigation a.active {
    color: #315bea;
    font-weight: 600;
}

.main-navigation a.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #315bea;
}


/* HEADER BUTTON */

.header-button {
    border: 1px solid #d6dce5;
    padding: 10px 17px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #172033;
    white-space: nowrap;
    transition: all .2s ease;
}

.header-button:hover {
    border-color: #315bea;
    color: #315bea;
    background: #f7f9ff;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(79, 70, 229, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f9fbff 100%
        );

    padding: 95px 0 100px;
    border-bottom: 1px solid #edf0f4;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #315bea;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 22px;
}

.hero-label::before {
    content: "";
    width: 24px;
    height: 2px;
    background: #315bea;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: #101828;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero h1 span {
    color: #315bea;
}

.hero-description {
    font-size: 18px;
    color: #667085;
    max-width: 650px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}


/* BUTTONS */

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #315bea;
    color: #ffffff;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s ease;
}

.primary-button:hover {
    background: #244bd2;
    transform: translateY(-1px);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1px solid #d9dfe8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #344054;
    background: #ffffff;
}

.secondary-button:hover {
    border-color: #315bea;
    color: #315bea;
}


/* HERO INFO CARD */

.hero-panel {
    background: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 14px;
    padding: 28px;
    box-shadow:
        0 18px 50px rgba(16, 24, 40, .07);
}

.hero-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf0f4;
    margin-bottom: 8px;
}

.hero-panel-title {
    font-size: 13px;
    font-weight: 700;
    color: #101828;
}

.operational {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #16803c;
    font-size: 11px;
    font-weight: 600;
}

.operational-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #20a458;
}

.system-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f2f5;
}

.system-row:last-child {
    border-bottom: 0;
}

.system-name {
    color: #475467;
    font-size: 13px;
}

.system-status {
    color: #16803c;
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 95px 0;
}

.section-light {
    background: #ffffff;
}

.section-gray {
    background: #f8fafc;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-label {
    color: #315bea;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -0.035em;
    color: #101828;
    margin-bottom: 14px;
}

.section-heading p {
    color: #667085;
    font-size: 16px;
}


/* =========================================================
   TRUST CATEGORIES
========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.category-card {
    border: 1px solid #e3e8ef;
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    transition: all .2s ease;
}

.category-card:hover {
    border-color: #c5d1ee;
    box-shadow: 0 12px 35px rgba(16, 24, 40, .06);
    transform: translateY(-2px);
}

.category-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #f0f4ff;
    color: #315bea;
    font-size: 19px;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #101828;
    font-size: 17px;
    margin-bottom: 9px;
}

.category-card p {
    color: #667085;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.card-link {
    color: #315bea;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   DATA RESIDENCY
========================================================= */

.residency-section {
    background: #f7f9fc;
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.region-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 23px;
    background: #ffffff;
    border: 1px solid #e2e7ee;
    border-radius: 10px;
    transition: all .2s ease;
}

.region-card:hover {
    border-color: #b9c8ed;
    box-shadow: 0 8px 25px rgba(16, 24, 40, .05);
}

.region-name {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #344054;
    font-weight: 600;
    font-size: 13px;
}

.region-arrow {
    color: #98a2b3;
}


/* =========================================================
   SECURITY
========================================================= */

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.security-item {
    padding: 28px;
    border: 1px solid #e6eaf0;
    border-radius: 11px;
}

.security-number {
    font-size: 11px;
    color: #315bea;
    font-weight: 700;
    margin-bottom: 20px;
}

.security-item h3 {
    font-size: 16px;
    color: #101828;
    margin-bottom: 9px;
}

.security-item p {
    font-size: 13px;
    color: #667085;
}


/* =========================================================
   COMPLIANCE TABLE
========================================================= */

.compliance-wrapper {
    border: 1px solid #e2e7ee;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.compliance-table {
    width: 100%;
    border-collapse: collapse;
}

.compliance-table th {
    background: #f8fafc;
    color: #475467;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    text-align: left;
    padding: 17px 22px;
    border-bottom: 1px solid #e5e9ef;
}

.compliance-table td {
    padding: 18px 22px;
    border-bottom: 1px solid #eef1f4;
    font-size: 13px;
    color: #475467;
}

.compliance-table tr:last-child td {
    border-bottom: 0;
}

.framework-name {
    color: #101828;
    font-weight: 600;
}

.status-badge {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}

.status-available {
    color: #087443;
    background: #ecfdf3;
}

.status-progress {
    color: #b54708;
    background: #fffaeb;
}

.status-info {
    color: #175cd3;
    background: #eff8ff;
}


/* =========================================================
   RESOURCES
========================================================= */

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.resource-card {
    border: 1px solid #e3e8ef;
    border-radius: 11px;
    padding: 25px;
    background: #ffffff;
}

.resource-card h3 {
    color: #101828;
    font-size: 15px;
    margin-bottom: 8px;
}

.resource-card p {
    color: #667085;
    font-size: 12px;
    margin-bottom: 16px;
}


/* =========================================================
   CTA
========================================================= */

.contact-section {
    background: #f7f9fc;
    padding: 65px 0;
    border-top: 1px solid #edf0f4;
}

.contact-box {
    background: #ffffff;
    border: 1px solid #dfe5ed;
    border-radius: 14px;
    padding: 42px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 35px rgba(16, 24, 40, .04);
}

.contact-content {
    max-width: 720px;
}

.contact-content h2 {
    font-size: 27px;
    line-height: 1.25;
    color: #101828;
    margin-bottom: 10px;
}

.contact-content p {
    color: #667085;
    font-size: 13px;
}

.contact-action {
    flex-shrink: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e9ef;
    padding: 65px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 45px;
    padding-bottom: 55px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.footer-logo div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo strong {
    color: #101828;
    font-size: 15px;
}

.footer-logo span {
    color: #667085;
    font-size: 10px;
    margin-top: 2px;
}

.footer-brand p {
    color: #667085;
    font-size: 12px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    font-size: 12px;
    color: #101828;
    margin-bottom: 6px;
}

.footer-column a {
    color: #667085;
    font-size: 12px;
}

.footer-column a:hover {
    color: #315bea;
}


/* FOOTER BOTTOM */

.footer-bottom {
    min-height: 70px;
    border-top: 1px solid #e9edf2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #98a2b3;
    font-size: 11px;
}

.footer-bottom-links {
    display: flex;
    gap: 22px;
}

.footer-bottom-links a:hover {
    color: #315bea;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1100px) {

    .main-navigation {
        gap: 17px;
    }

    .main-navigation a {
        font-size: 12px;
    }

    .category-grid,
    .security-grid,
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .main-navigation {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero {
        padding: 70px 0;
    }

    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .top-bar-inner {
        padding: 0 2px;
    }

    .top-bar-inner span {
        display: none;
    }

    .top-bar-inner {
        justify-content: flex-end;
    }

    .header-inner {
        min-height: 68px;
    }

    .header-button {
        display: none;
    }

    .hero {
        padding: 55px 0 65px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions a {
        width: 100%;
    }

    .section {
        padding: 65px 0;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .category-grid,
    .security-grid,
    .resource-grid,
    .region-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 30px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        padding: 20px 0;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

}

/* =========================================================
   DATA RESIDENCY PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.dr-hero {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(49, 91, 234, 0.07),
            transparent 30%
        ),
        #ffffff;

    padding: 35px 0 90px;
    border-bottom: 1px solid #edf0f4;
}

.dr-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    color: #98a2b3;
    margin-bottom: 70px;
}

.dr-breadcrumb a {
    color: #667085;
}

.dr-breadcrumb a:hover {
    color: #315bea;
}

.dr-hero-content {
    max-width: 820px;
}

.dr-hero-content h1 {
    font-size: clamp(46px, 6vw, 70px);
    line-height: 1.06;
    letter-spacing: -0.05em;
    color: #101828;
    margin-bottom: 25px;
    font-weight: 800;
}

.dr-hero-content h1 span {
    color: #315bea;
}

.dr-hero-content p {
    max-width: 700px;
    color: #667085;
    font-size: 18px;
    line-height: 1.8;
}

.dr-updated {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 30px;
    padding: 8px 13px;
    border: 1px solid #e1e6ed;
    border-radius: 7px;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
    background: #ffffff;
}

.dr-status-dot {
    width: 7px;
    height: 7px;
    background: #20a458;
    border-radius: 50%;
}


/* =========================================================
   INTRO
========================================================= */

.dr-intro-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: start;
}

.dr-intro-text {
    color: #667085;
    font-size: 15px;
    line-height: 1.85;
}

.dr-intro-text p + p {
    margin-top: 20px;
}


/* =========================================================
   CONCEPT CARDS
========================================================= */

.dr-concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.dr-concept-card {
    background: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 12px;
    padding: 30px;
}

.dr-concept-number {
    color: #315bea;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 24px;
}

.dr-concept-card h3 {
    color: #101828;
    font-size: 18px;
    margin-bottom: 10px;
}

.dr-concept-card > p {
    color: #667085;
    font-size: 13px;
    line-height: 1.75;
    min-height: 70px;
}

.dr-concept-example {
    margin-top: 25px;
    padding: 15px;
    background: #f7f9fc;
    border-radius: 8px;
    border: 1px solid #edf0f4;
}

.dr-concept-example strong {
    display: block;
    color: #344054;
    font-size: 11px;
    margin-bottom: 4px;
}

.dr-concept-example span {
    display: block;
    color: #667085;
    font-size: 11px;
}


/* =========================================================
   REGION CARDS
========================================================= */

.dr-region-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.dr-region-card {
    display: block;
    background: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 12px;
    padding: 27px;
    transition: all .2s ease;
}

.dr-region-card:hover {
    border-color: #b9c8ed;
    box-shadow: 0 12px 35px rgba(16, 24, 40, .06);
    transform: translateY(-2px);
}

.dr-region-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dr-flag {
    font-size: 26px;
}

.dr-arrow {
    color: #98a2b3;
    font-size: 16px;
}

.dr-region-card h3 {
    color: #101828;
    font-size: 17px;
    margin-bottom: 8px;
}

.dr-region-card p {
    color: #667085;
    font-size: 12px;
    line-height: 1.7;
    min-height: 42px;
}

.dr-region-link {
    display: inline-block;
    margin-top: 18px;
    color: #315bea;
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   DATA FLOW
========================================================= */

.dr-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.dr-flow-item {
    width: 240px;
    background: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 11px;
    padding: 24px;
}

.dr-flow-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    color: #315bea;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 17px;
}

.dr-flow-item h3 {
    color: #101828;
    font-size: 14px;
    margin-bottom: 8px;
}

.dr-flow-item p {
    color: #667085;
    font-size: 11px;
    line-height: 1.7;
}

.dr-flow-line {
    width: 45px;
    height: 1px;
    background: #d8dee7;
    align-self: center;
}

.dr-flow-note {
    max-width: 900px;
    margin: 35px auto 0;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 8px;
    color: #667085;
    font-size: 11px;
    line-height: 1.7;
}

.dr-flow-note strong {
    color: #344054;
}


/* =========================================================
   DATA TABLE
========================================================= */

.dr-data-table-wrapper {
    border: 1px solid #e1e6ed;
    border-radius: 12px;
    overflow-x: auto;
    background: #ffffff;
}

.dr-data-table {
    width: 100%;
    min-width: 750px;
    border-collapse: collapse;
}

.dr-data-table th {
    padding: 17px 22px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e9ef;
    text-align: left;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #475467;
}

.dr-data-table td {
    padding: 18px 22px;
    border-bottom: 1px solid #eef1f4;
    color: #667085;
    font-size: 12px;
    vertical-align: top;
}

.dr-data-table tr:last-child td {
    border-bottom: 0;
}

.dr-data-table td:first-child {
    width: 23%;
    color: #101828;
}


/* =========================================================
   INTERNATIONAL TRANSFERS
========================================================= */

.dr-transfer-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.dr-transfer-grid h2 {
    color: #101828;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.dr-transfer-grid p {
    color: #667085;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.dr-text-link {
    color: #315bea;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   SUBPROCESSOR BOX
========================================================= */

.dr-subprocessor-box {
    border: 1px solid #dfe5ed;
    border-radius: 13px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: #ffffff;
}

.dr-subprocessor-box h2 {
    color: #101828;
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.dr-subprocessor-box p {
    color: #667085;
    font-size: 13px;
    max-width: 650px;
}


/* =========================================================
   COUNTRY CTA
========================================================= */

.dr-country-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 45px;
    border: 1px solid #dfe5ed;
    border-radius: 13px;
    background: #ffffff;
}

.dr-country-cta h2 {
    color: #101828;
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.dr-country-cta p {
    max-width: 650px;
    color: #667085;
    font-size: 13px;
}

.dr-country-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


/* =========================================================
   DATA RESIDENCY RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .dr-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .dr-concept-grid,
    .dr-region-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dr-flow {
        flex-wrap: wrap;
        gap: 15px;
    }

    .dr-flow-line {
        display: none;
    }

    .dr-flow-item {
        width: calc(50% - 8px);
    }

    .dr-transfer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


@media (max-width: 650px) {

    .dr-hero {
        padding: 25px 0 65px;
    }

    .dr-breadcrumb {
        margin-bottom: 50px;
    }

    .dr-hero-content h1 {
        font-size: 43px;
    }

    .dr-hero-content p {
        font-size: 16px;
    }

    .dr-concept-grid,
    .dr-region-grid {
        grid-template-columns: 1fr;
    }

    .dr-flow-item {
        width: 100%;
    }

    .dr-subprocessor-box,
    .dr-country-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .dr-country-actions {
        flex-direction: column;
        width: 100%;
    }

    .dr-country-actions a {
        width: 100%;
    }

}

/* =========================================================
   CANADA DATA RESIDENCY PAGE
========================================================= */

.country-hero {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(49, 91, 234, .07),
            transparent 30%
        ),
        #fff;

    padding: 35px 0 90px;
    border-bottom: 1px solid #edf0f4;
}

.country-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    color: #98a2b3;
    margin-bottom: 65px;
}

.country-breadcrumb a {
    color: #667085;
}

.country-breadcrumb a:hover {
    color: #315bea;
}

.country-hero-content {
    max-width: 850px;
}

.country-flag {
    font-size: 42px;
    margin-bottom: 20px;
}

.country-hero-content h1 {
    font-size: clamp(45px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -.05em;
    color: #101828;
    font-weight: 800;
    margin: 10px 0 25px;
}

.country-hero-content h1 span {
    color: #315bea;
}

.country-hero-content > p {
    color: #667085;
    font-size: 18px;
    line-height: 1.8;
    max-width: 760px;
}

.country-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.country-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    background: #fff;
    border: 1px solid #e1e6ed;
    border-radius: 7px;
    font-size: 11px;
    color: #475467;
    font-weight: 600;
}

.status-check {
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf8f0;
    color: #16834a;
    font-size: 10px;
}


/* OVERVIEW */

.canada-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.canada-overview-card {
    position: relative;
    padding: 30px;
    background: #fff;
    border: 1px solid #e1e6ed;
    border-radius: 12px;
}

.overview-number {
    position: absolute;
    right: 25px;
    top: 25px;
    color: #98a2b3;
    font-size: 10px;
    font-weight: 700;
}

.overview-icon {
    font-size: 27px;
    margin-bottom: 20px;
}

.canada-overview-card h3 {
    color: #101828;
    font-size: 18px;
    margin-bottom: 5px;
}

.overview-location {
    color: #315bea;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
}

.canada-overview-card p {
    color: #667085;
    font-size: 12px;
    line-height: 1.75;
}


/* FLOW */

.canada-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 5px;
}

.canada-flow-card {
    flex: 0 0 180px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e1e6ed;
    border-radius: 10px;
}

.canada-flow-card.botnira-flow {
    border-color: #b9c8ed;
    box-shadow: 0 8px 25px rgba(49,91,234,.06);
}

.flow-step {
    color: #315bea;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 13px;
}

.flow-symbol {
    font-size: 22px;
    margin-bottom: 14px;
}

.canada-flow-card h3 {
    color: #101828;
    font-size: 14px;
    margin-bottom: 7px;
}

.canada-flow-card p {
    color: #667085;
    font-size: 10px;
    line-height: 1.7;
}

.canada-flow-arrow {
    width: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #98a2b3;
    font-size: 15px;
}

.architecture-note {
    max-width: 950px;
    margin: 35px auto 0;
    padding: 17px 20px;
    border: 1px solid #e1e6ed;
    background: #fff;
    border-radius: 8px;
    color: #667085;
    font-size: 11px;
    line-height: 1.7;
}

.architecture-note strong {
    color: #344054;
}

.architecture-note.small {
    margin-top: 25px;
}


/* TWO COLUMN */

.canada-two-column {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: start;
}

.canada-two-column h2 {
    color: #101828;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.canada-copy {
    color: #667085;
    font-size: 14px;
    line-height: 1.85;
}

.canada-copy p + p {
    margin-top: 20px;
}

.canada-copy strong {
    color: #344054;
}


/* PROVIDERS */

.provider-section {
    max-width: 1000px;
    margin: auto;
}

.provider-heading {
    max-width: 700px;
    margin-bottom: 40px;
}

.provider-heading h2 {
    color: #101828;
    font-size: 34px;
    line-height: 1.2;
    margin: 10px 0 12px;
}

.provider-heading p {
    color: #667085;
    font-size: 14px;
    line-height: 1.8;
}

.provider-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e1e6ed;
    border-radius: 12px;
    overflow: hidden;
}

.provider-detail {
    padding: 25px;
    background: #fff;
    border-right: 1px solid #e1e6ed;
}

.provider-detail:last-child {
    border-right: 0;
}

.provider-detail > span {
    display: block;
    color: #98a2b3;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.provider-detail strong {
    display: block;
    color: #101828;
    font-size: 15px;
    margin-bottom: 8px;
}

.provider-detail p {
    color: #667085;
    font-size: 11px;
    line-height: 1.7;
}


/* PROVIDER NOTE */

.provider-note {
    margin-top: 25px;
    padding: 20px;
    border: 1px solid #e1e6ed;
    border-radius: 9px;
    background: #f8fafc;
}

.provider-note strong {
    display: block;
    color: #344054;
    font-size: 12px;
    margin-bottom: 5px;
}

.provider-note p {
    color: #667085;
    font-size: 11px;
    line-height: 1.7;
}


/* PRIVACY LAWS */

.privacy-law-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.privacy-law-card {
    padding: 28px;
    background: #fff;
    border: 1px solid #e1e6ed;
    border-radius: 11px;
}

.law-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f0f4ff;
    color: #315bea;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 20px;
}

.privacy-law-card h3 {
    color: #101828;
    font-size: 16px;
    margin-bottom: 9px;
}

.privacy-law-card p {
    color: #667085;
    font-size: 11px;
    line-height: 1.75;
    min-height: 95px;
}

.law-status {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 8px;
    background: #f7f9fc;
    border: 1px solid #e5e9ef;
    border-radius: 5px;
    color: #667085;
    font-size: 9px;
    font-weight: 600;
}

.legal-disclaimer {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e1e6ed;
    border-radius: 8px;
}

.legal-disclaimer strong {
    display: block;
    color: #344054;
    font-size: 11px;
    margin-bottom: 6px;
}

.legal-disclaimer p {
    color: #667085;
    font-size: 11px;
    line-height: 1.7;
}


/* SECURITY */

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.security-card {
    padding: 25px;
    background: #fff;
    border: 1px solid #e1e6ed;
    border-radius: 10px;
}

.security-card > span {
    color: #315bea;
    font-size: 10px;
    font-weight: 700;
}

.security-card h3 {
    color: #101828;
    font-size: 15px;
    margin: 18px 0 8px;
}

.security-card p {
    color: #667085;
    font-size: 11px;
    line-height: 1.7;
}


/* CERTIFICATES */

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.certificate-card {
    display: flex;
    gap: 17px;
    padding: 25px;
    background: #fff;
    border: 1px solid #e1e6ed;
    border-radius: 10px;
    transition: all .2s ease;
}

.certificate-card:hover {
    border-color: #b9c8ed;
    box-shadow: 0 10px 30px rgba(16,24,40,.05);
    transform: translateY(-2px);
}

.certificate-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f0f4ff;
    color: #315bea;
    font-weight: 700;
}

.certificate-card h3 {
    color: #101828;
    font-size: 14px;
    margin-bottom: 7px;
}

.certificate-card p {
    color: #667085;
    font-size: 10px;
    line-height: 1.7;
}

.certificate-card span {
    display: inline-block;
    margin-top: 10px;
    color: #315bea;
    font-size: 10px;
    font-weight: 600;
}


/* FAQ */

.faq-list {
    max-width: 850px;
    margin: auto;
    border-top: 1px solid #e1e6ed;
}

.faq-list details {
    border-bottom: 1px solid #e1e6ed;
    background: #fff;
}

.faq-list summary {
    position: relative;
    padding: 22px 50px 22px 20px;
    cursor: pointer;
    list-style: none;
    color: #101828;
    font-size: 13px;
    font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 18px;
    color: #98a2b3;
    font-size: 18px;
    font-weight: 400;
}

.faq-list details[open] summary:after {
    content: '−';
}

.faq-list details p {
    padding: 0 50px 22px 20px;
    color: #667085;
    font-size: 11px;
    line-height: 1.8;
}


/* FINAL CTA */

.country-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 45px;
    border: 1px solid #dfe5ed;
    border-radius: 13px;
    background: #fff;
}

.country-final-cta h2 {
    color: #101828;
    font-size: 28px;
    line-height: 1.25;
    margin: 8px 0 10px;
}

.country-final-cta p {
    color: #667085;
    font-size: 13px;
    max-width: 600px;
}

.country-cta-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .canada-overview-grid,
    .privacy-law-grid,
    .certificate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .canada-two-column {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .provider-detail-grid {
        grid-template-columns: 1fr;
    }

    .provider-detail {
        border-right: 0;
        border-bottom: 1px solid #e1e6ed;
    }

    .provider-detail:last-child {
        border-bottom: 0;
    }

    .canada-flow {
        justify-content: flex-start;
    }

}

@media (max-width: 650px) {

    .country-hero {
        padding-bottom: 65px;
    }

    .country-hero-content h1 {
        font-size: 43px;
    }

    .country-hero-content > p {
        font-size: 16px;
    }

    .canada-overview-grid,
    .privacy-law-grid,
    .certificate-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .country-status-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .country-final-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .country-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

}

/* =========================================================
   CHANNEL DATA FLOW
========================================================= */

.channel-flow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.channel-flow-card {
    padding: 27px;
    background: #fff;
    border: 1px solid #e1e6ed;
    border-radius: 12px;
    transition: all .2s ease;
}

.channel-flow-card:hover {
    border-color: #c8d2e4;
    box-shadow: 0 12px 35px rgba(16, 24, 40, .05);
    transform: translateY(-2px);
}

.channel-top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
}

.channel-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    color: #315bea;
    border-radius: 9px;
    font-size: 18px;
    font-weight: 700;
}

.channel-type {
    display: block;
    color: #98a2b3;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    margin-bottom: 3px;
}

.channel-top h3 {
    color: #101828;
    font-size: 17px;
    margin: 0;
}

.channel-path {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 15px;
    background: #f8fafc;
    border: 1px solid #edf0f4;
    border-radius: 8px;
    margin-bottom: 17px;
}

.channel-path span {
    font-size: 9px;
    line-height: 1.3;
}

.path-user,
.path-third-party,
.path-botnira,
.path-ai,
.path-storage {
    padding: 5px 7px;
    border-radius: 4px;
    font-weight: 600;
}

.path-user {
    background: #fff;
    color: #475467;
    border: 1px solid #e1e6ed;
}

.path-third-party {
    background: #fff7ed;
    color: #b54708;
    border: 1px solid #fed7aa;
}

.path-botnira {
    background: #f0f4ff;
    color: #315bea;
    border: 1px solid #d7e0fb;
}

.path-ai {
    background: #f5f3ff;
    color: #6941c6;
    border: 1px solid #e9d7fe;
}

.path-storage {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
}

.path-arrow {
    color: #98a2b3;
    font-size: 10px !important;
}

.channel-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
    margin-bottom: 17px;
}

.channel-data div {
    padding: 13px 8px;
    border-right: 1px solid #edf0f4;
}

.channel-data div:last-child {
    border-right: 0;
}

.channel-data span {
    display: block;
    color: #98a2b3;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .07em;
    margin-bottom: 5px;
}

.channel-data strong {
    color: #344054;
    font-size: 10px;
}

.channel-description {
    color: #667085;
    font-size: 10px;
    line-height: 1.75;
}

.channel-ai-note {
    margin: 25px auto 0;
    max-width: 900px;
    padding: 16px 20px;
    display: flex;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e1e6ed;
    border-radius: 8px;
    color: #667085;
    font-size: 10px;
    line-height: 1.7;
}

.channel-ai-note strong {
    color: #344054;
    white-space: nowrap;
}


/* MOBILE */

@media (max-width: 800px) {

    .channel-flow-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 550px) {

    .channel-data {
        grid-template-columns: 1fr;
    }

    .channel-data div {
        border-right: 0;
        border-bottom: 1px solid #edf0f4;
    }

    .channel-data div:last-child {
        border-bottom: 0;
    }

    .channel-ai-note {
        flex-direction: column;
    }

}