﻿/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --primary-blue: #264596;
    --secondary-blue: var(--primary-blue);
    --accent-gold: rgb(250, 241, 123);
    /* --white-yellow:#E5BF20; */
    --white-yellow: rgb(250, 241, 123);

    --text-light: #d7e6fb;
    --text-dark: #334155;
    --white-text: rgb(243, 241, 241);
    --light-blue-bg: rgb(248 250 252);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* color: #e2e8f0; */
    /* background: #0d1838; */
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;

}


.light-blue-bg {
    background-color: var(--light-blue-bg);
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

/* ===== TOP BAR ===== */
.topbar {
    background: var(--primary-blue) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: 14px;
    color: white;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px
}

.topbar-left {
    display: flex;
    gap: 32px;
    align-items: center
}

.topbar-right {
    display: flex;
    gap: 24px;
    align-items: center
}

.topbar-link {
    color: var(--white-text);
    transition: color .2s;
    font-size: 13px
}

.topbar-link:hover {
    color: #fff
}

/* ===== HEADER ===== */
.site-header {
    background: white !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .3)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo-icon {
    width: 40px;
}

.logo-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-blue);
    line-height: 1.2
}

.logo-sub {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px
}

.slogan {
    font-size: 12px;
    color: #E5BF20;
    font-style: italic;
    margin-top: 4px
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    transition: color .2s;
    position: relative;
    padding-bottom: 4px
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    transition: width .3s ease
}

.main-nav a:hover {
    color: #0c1a3d
}

.main-nav a:hover::after {
    width: 100%
}

/* ===== Nav Dropdown ===== */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    padding: 0 0 4px 0;
    position: relative;
    transition: color .2s;
}

.nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    transition: width .3s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus {
    color: #0c1a3d;
    outline: none;
}

.nav-dropdown-toggle:hover::after {
    width: 100%;
}

.nav-dropdown-arrow {
    transition: transform .25s ease;
    flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: #0a1530;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 1000;
    border-top: 2px solid var(--accent-gold);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.nav-dropdown-menu li:last-child a {
    border-bottom: none;
}

.nav-dropdown-menu li a:hover {
    background: rgba(212, 168, 83, .15);
    color: var(--accent-gold);
}

.nav-cta {
    background-color: var(--white-yellow);
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)) !important; */
    color: #0c1a3d !important;
    padding: 5px 22px;
    border-radius: 0;
    font-weight: 500 !important;
    transition: all .3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(212, 168, 83, .25)
}


.nav-cta:hover {
    background: linear-gradient(135deg, var(--white-yellow), var(--accent-gold)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, .4)
}

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 2px;
    transition: .3s
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 0px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    border: none;
    text-align: center
}

.btn-primary {
    background: var(--accent-gold);
    color: #fff
}

.btn-primary:hover {
    background: #1b3068;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, .35)
}

.btn-outline {
    background: transparent;
    color: #e2e8f0;
    border: 1.5px solid rgba(255, 255, 255, .2)
}

.btn-outline:hover {
    border-color: #fff;
    color: #fff
}

.button-primary {
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    border-radius: 0 !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 168, 83, .25);
    position: relative;
    overflow: hidden
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--white-yellow), var(--accent-gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, .4);
    color: #0c1a3d
}

.dark-outline {
    border-color: rgba(255, 255, 255, .25);
    color: #e2e8f0
}

.dark-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold)
}

/* ===== HERO ===== */
.hero {
    padding: 50px 0 80px;
    /* background: #0c1a3d; */
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;

    pointer-events: none;
    z-index: 0
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--primary-blue);
    /* background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%); */
    /* background-image:
        radial-gradient(circle at center,
            var(--primary-blue) 30%,
            var(--primary-blue) 60%,
            rgba(17, 79, 236, 0.274) 100%),
        url("https://eu.chat-img.sintra.ai/3718a7de-b9cc-4e71-8e37-e7affb962ddc/fd6cb677-c64f-4103-b444-47b7450d08af/image.png?w=1184&h=864"); */
    pointer-events: none;
    background-position: right;
    background-size: cover;
    z-index: 0;
    background-color: var(--primary-blue);
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-copy {
    max-width: 600px;
    margin: 0 auto;
}

.hero-member-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, .12);
    color: var(--white-yellow);
    border: 1px solid rgba(212, 168, 83, .35);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInDown .6s ease-out;
    box-shadow: 0 4px 20px rgba(212, 168, 83, .15)
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.gold-dot {
    color: var(--accent-gold);
    font-size: 10px;
    line-height: 1
}

.hero-copy h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.5px;
    animation: fadeInUp .7s ease-out .1s both
}

.highlight {
    color: var(--accent-gold);
    display: block;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    background-clip: text
}

.hero-sub {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 660px;
    /* margin-left: auto; */
    margin-right: auto;
    animation: fadeInUp .7s ease-out .2s both
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
    /* justify-content: center */
    animation: fadeInUp .7s ease-out .3s both
}

.hero-form-wrap {
    display: flex;
    justify-content: flex-end
}

.hero-form-card {
    background: var(--primary-blue);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    animation: fadeInRight .7s ease-out .4s both;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    position: relative;
    overflow: hidden
}

/* .hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow), var(--accent-gold));
    opacity: .8
} */

.hero-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.hero-form-sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.hero-form-group input,
.hero-form-group select,
.hero-form-group textarea {
    width: 100%;
    padding: 8px 16px;
    font-size: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 0;
    color: #fff;
    transition: all .3s ease;
    font-family: inherit
}

.hero-form-group input::placeholder,
.hero-form-group textarea::placeholder {
    color: var(--text-light)
}

.hero-form-group input:focus,
.hero-form-group select:focus,
.hero-form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, .15)
}

.hero-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center
}

.hero-form-group select option {
    background: #0c1a3d;
    color: #fff
}

.btn-hero-submit {
    width: 100%;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold) !important;
    color: #0c1a3d !important;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 168, 83, .3)
}

.btn-hero-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent); */
    transition: left .5s ease
}

.btn-hero-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, .45)
}

.btn-hero-submit:hover::before {
    left: 100%
}

.hero-form-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0
}

.hero-form-row {
    display: flex;
    gap: 12px
}

.hero-form-row .hero-form-group {
    flex: 1
}

.hero-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 6px
}

.hero-char-limit {
    font-weight: 400;
    color: var(--text-light)
}

/* ===== FILE UPLOAD BOX ===== */
.file-upload-box {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 10px 14px;
    transition: all .3s ease
}

.file-upload-box:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, .08)
}

.file-upload-box input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.file-upload-content {
    display: flex;
    align-items: center;
    gap: 10px
}

.file-upload-content svg {
    color: var(--text-light);
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.file-upload-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.file-upload-hint {
    display: none
}

/* File upload - selected files list */
.file-upload-selected {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.file-upload-selected-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    border-radius: 4px;
}

.file-upload-selected-item.has-error {
    color: #fc8181;
    background: rgba(229, 62, 62, 0.12);
}

.file-upload-selected-item .file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70%;
}

.file-upload-selected-item .file-size {
    white-space: nowrap;
    font-size: 11px;
    opacity: .8;
}

/* Other dispute type input */
.other-dispute-row {
    display: none;
}

.other-dispute-row.visible {
    display: flex;
}

.btn-gold {
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    font-weight: 700;
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 168, 83, .3);
    position: relative;
    overflow: hidden;
    z-index: 1
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--white-yellow), var(--accent-gold));
    opacity: 0;
    transition: opacity .3s ease;
    z-index: -1
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, .45);
    color: #0c1a3d
}

.btn-gold:hover::before {
    opacity: 1
}

.btn-outline-hero {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
    font-weight: 600;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all .35s ease
}

.btn-outline-hero:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(212, 168, 83, .08);
    transform: translateY(-2px)
}

.hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* justify-content: center */
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #8b9bb5;
    /*  background:rgba(34, 58, 120, 0.449); */
    /* padding: 8px 14px; */
    /* border-radius: 6px; */
    /* border: 1px solid rgba(255, 255, 255, .08) */
}

.badge-check {
    color: #16a34a;
    font-weight: 700;
    font-size: 14px
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 80px 0
}

.section-label {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111827;
    margin-bottom: 12px;
    /* text-align: center */
}

.section-label.left {
    text-align: left
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    /* text-align: center; */
    margin-bottom: 16px;
    color: var(--primary-blue);
    line-height: 1.2
}

.section-title.left {
    text-align: left
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.7
}

/* ===== WHO WE ARE ===== */
.light-background {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%)
}



.who-content {
    /* background: #fff; */
    border-radius: 24px;
    /* box-shadow: 0 12px 50px rgba(15, 23, 42, .1); */
    /* border: 1px solid #e2e8f0; */
    position: relative;
}


.who-content p {
    font-size: 16px;
    color: #334155;
    margin-bottom: 24px;
}

.who-content p:first-child {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a
}

.who-content p:last-child {
    margin-bottom: 0;
    padding: 20px 24px;
    background: rgba(212, 168, 83, .08);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
    text-align: left;
    font-size: 16px;
    color: #475569;
}

/* ===== HOW IT WORKS ===== */



.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px
}

.step-card {
    border: 1px solid rgb(241 245 249);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    position: relative;
    overflow: hidden;
    background-color: var(--primary-blue);
}


.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(12, 26, 61, .12);
    border-color: rgba(212, 168, 83, .3)
}

.step-card:hover::before {
    transform: scaleX(1)
}



.step-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
}

.step-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    padding-bottom: 7px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-gold)
}

.step-card p {
    font-size: 16px;
    color: white;
    line-height: 1.6;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.steps-cta {
    text-align: center
}

/* ===== WHY CONSUMERS APPROACH CPB ===== */
.approach-section {
    background: #0c1a3d;
    position: relative;
    overflow: hidden
}

.approach-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 83, .08) 0%, transparent 70%);
    pointer-events: none
}

.approach-section .section-label {
    color: var(--accent-gold)
}

.approach-section .section-title {
    color: #fff;
    font-size: 32px
}

.approach-list {
    max-width: 800px;
    margin: 0 auto
}

.approach-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    gap: 16px
}

.approach-bullets li {
    position: relative;
    padding: 22px 26px 22px 64px;
    font-size: 17px;
    line-height: 1.6;
    color: #e2e8f0;
    background: rgba(34, 58, 120, 0.449);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    transition: all .35s cubic-bezier(.25, .46, .45, .94)
}

.approach-bullets li:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(212, 168, 83, .4);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15)
}

.approach-bullets li::before {
    content: '\2713';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 168, 83, .3)
}

.approach-note {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
    text-align: center;
    padding: 0 20px
}

.approach-note:first-of-type {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.approach-note:last-child {
    margin-bottom: 0
}

/* ===== OUR ROLE ===== */
.our-role {
    background: #fff;
    padding: 80px 0
}

.our-role .section-label {
    color: #111827
}

.our-role .section-title {
    color: var(--primary-blue);
    margin-bottom: 40px
}

.role-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center
}

.role-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px
}

.role-content .role-emphasis {
    font-size: 20px;
    font-weight: 600;
    color: #0c1a3d;
    padding: 20px 32px;
    background: #f1f5f9;
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
    margin: 28px 0
}

.role-content p:last-child {
    margin-bottom: 0
}

/* ===== WHY CPB EXISTS ===== */
.why-exists {
    background: linear-gradient(135deg, #0c1a3d 0%, var(--primary-blue) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.why-exists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(212, 168, 83, .15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 168, 83, .1) 0%, transparent 50%);
    pointer-events: none
}

.why-exists .section-label {
    color: var(--accent-gold)
}

.why-exists .section-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 38px
}

.exists-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.exists-intro {
    text-align: center;
    margin-bottom: 56px
}

.exists-intro p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px
}

.exists-intro p:first-child {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px
}

.exists-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(212, 168, 83, .08);
    padding: 24px 40px;
    border-radius: 60px;
    border: 2px solid rgba(212, 168, 83, .3);
    display: inline-block;
    margin-top: 16px
}

.exists-purpose {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 48px 56px;
    margin-bottom: 56px;
    backdrop-filter: blur(10px)
}

.exists-purpose h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 32px;
    text-align: center
}

.exists-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px
}

.exists-list li {
    position: relative;
    padding-left: 40px;
    font-size: 17px;
    line-height: 1.6;
    color: #e2e8f0;
    text-align: left;
}

.exists-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.exists-footer {
    text-align: center
}

.exists-footer p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--white-text);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.exists-footer strong {
    color: var(--accent-gold)
}

.exists-belief {
    font-size: 22px !important;
    font-weight: 600;
    color: #fff !important;
    font-style: italic;
    padding: 28px 40px;
    margin-top: 32px;
    background: linear-gradient(135deg, rgba(212, 168, 83, .12) 0%, rgba(212, 168, 83, .04) 100%);
    border: 1px solid rgba(212, 168, 83, .25);
    border-radius: 16px;
    display: inline-block
}

/* ===== CAMPAIGNS AND PUBLIC INTEREST WORK ===== */
.campaigns-section {
    background: linear-gradient(180deg, var(--primary-blue) 20%, var(--primary-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.campaigns-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(212, 168, 83, .06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 168, 83, .04) 0%, transparent 40%);
    pointer-events: none
}

.campaigns-section .section-label {
    color: var(--accent-gold)
}

.campaigns-section .section-title {
    color: #fff;
    margin-bottom: 32px
}

.campaigns-intro {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center
}

.campaigns-intro p {
    font-size: 18px;
    line-height: 1.7;
    /* color: var(--text-light); */
    color: var(--white-text);
    margin-bottom: 12px
}

.campaigns-intro p:first-child {
    font-size: 20px;
    color: #e2e8f0
}

.campaigns-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1
}

.campaigns-main {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 40px
}

.campaigns-heading {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px
}

.campaign-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px
}

.campaign-card {
    background: rgba(34, 58, 120, 0.449);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 28px;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    position: relative;
    overflow: hidden
}

.campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold), var(--white-yellow));
    transform: scaleY(0);
    transition: transform .3s ease
}

.campaign-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(212, 168, 83, .35);
    transform: translateY(-5px) translateX(4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .2)
}

.campaign-card:hover::before {
    transform: scaleY(1)
}

.campaign-tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px
}

.campaign-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: white;
}

.btn-campaigns {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    border: 1px solid rgba(212, 168, 83, .5);
    color: var(--accent-gold);
    border-radius: 0;
    transition: all .2s
}

.btn-campaigns:hover {
    background: rgba(212, 168, 83, .1);
    border-color: var(--accent-gold)
}

.campaigns-sidebar {
    position: sticky;
    top: 100px
}

.why-campaigns-box {
    background: linear-gradient(135deg, rgba(212, 168, 83, .08) 0%, rgba(212, 168, 83, .02) 100%);
    border: 1px solid rgba(212, 168, 83, .2);
    border-radius: 20px;
    padding: 36px
}

.why-campaigns-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 28px;
    text-align: center
}

.campaign-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px
}

.flow-item {
    width: 100%;
    padding: 16px 20px;
    background: rgba(34, 58, 120, 0.449);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #e2e8f0;
    text-align: center
}

.flow-item.highlight {
    background: rgba(212, 168, 83, .15);
    border-color: rgba(212, 168, 83, .35);
    color: var(--accent-gold);
    font-weight: 600
}

.flow-arrow {
    font-size: 18px;
    color: var(--text-light)
}

.campaigns-footer {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-text);
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

/* ===== GET HELP FORM ===== */
.get-help-section {
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    padding: 80px 0
}

.get-help-section .section-label {
    color: var(--accent-gold)
}

.get-help-section .section-title {
    color: #fff;
    margin-bottom: 48px
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start
}

.help-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.qualification-box,
.submit-form-box {
    background: rgba(34, 58, 120, 0.449);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 32px;

}

.qualification-box h3,
.submit-form-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px
}

.qualification-box p,
.form-intro {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px
}

.qual-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px
}

.qual-followup-btn,
.qual-btn {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, .15);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all .2s
}

.qual-followup-btn:hover,
.qual-btn:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .25)
}

.qual-followup-btn.active,
.qual-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #0c1a3d
}

.qual-notice {
    display: none;
    padding: 16px 20px;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .25);
    border-radius: 0
}

.qual-notice.show {
    display: block
}

.qual-notice p {
    margin: 0;
    font-size: 14px;
    color: #fca5a5
}

.qual-notice strong {
    color: #f87171
}

.help-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column
}

.form-group.full-width {
    flex: 0 0 100%
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px
}

.char-limit {
    font-weight: 400;
    color: var(--text-light)
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0;
    color: #fff;
    transition: border-color .2s, background .2s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, .08)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light)
}

.form-group select option {
    background: #0c1a3d;
    color: #fff
}

.form-group input[type="file"] {
    padding: 10px 12px
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, .3)
}

.help-sidebar {
    position: sticky;
    top: 100px
}

.next-steps-box {
    background: rgba(34, 58, 120, 0.449);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 32px
}

.next-steps-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px
}

.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px
}

.next-steps-list li {
    position: relative;
    padding-left: 32px;
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 14px
}

.next-steps-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background: rgba(212, 168, 83, .2);
    border: 2px solid var(--accent-gold);
    border-radius: 50%
}

.next-steps-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-style: italic
}

/* Legacy trust grid (keeping for compatibility) */



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

.trust-card {
    background: #F8FAFC;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 2rem;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08)
}

.trust-icon-wrap {
    margin: 0 0 16px;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.trust-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a
}

.trust-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6
}

/* ===== WHAT WE HELP WITH (new) ===== */
.help-with-section {
    background: #fff;
    padding: 80px 0
}

.help-with-section .section-title {
    margin-bottom: 40px
}

.help-with-list {
    max-width: 700px;
    margin: 0 auto
}

.help-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px
}

.help-bullets li {
    position: relative;
    padding-left: 28px;
    font-size: 17px;
    line-height: 1.6;
    color: #334155
}

.help-bullets li::before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 24px;
    font-weight: 700;
    line-height: 1
}

/* ===== OUR ROLE BEYOND INDIVIDUAL CASES ===== */
.beyond-cases-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    padding: 80px 0
}

.beyond-cases-section .section-title {
    margin-bottom: 48px;
    font-size: 28px
}


.beyond-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    position: relative;
    overflow: hidden
}

.beyond-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    opacity: 0;
    transition: opacity .3s ease, width .3s ease
}

.beyond-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
    border-color: rgba(212, 168, 83, .35)
}

.beyond-card:hover::before {
    opacity: 1;
    width: 80px
}

.beyond-icon {
    font-size: 42px;
    margin-bottom: 18px;
    transition: transform .35s ease
}

.beyond-card:hover .beyond-icon {
    transform: scale(1.2) rotate(5deg)
}

.beyond-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0
}

.beyond-card strong {
    color: #0c1a3d;
    font-weight: 700
}

/* ===== INTERNATIONAL ENGAGEMENT ===== */
.international-section {
    background: #0c1a3d;
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.international-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, .1) 0%, transparent 60%);
    pointer-events: none
}

.international-section .section-label {
    color: var(--accent-gold)
}

.international-section .section-title {
    color: #fff;
    margin-bottom: 40px
}

.international-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1
}

.international-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(212, 168, 83, .12) 0%, rgba(212, 168, 83, .05) 100%);
    border: 1px solid rgba(212, 168, 83, .35);
    border-radius: 60px;
    padding: 14px 32px 14px 14px;
    margin-bottom: 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2)
}

.ci-logo {
    width: 52px;
    height: 52px;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #0c1a3d;
    box-shadow: 0 4px 15px rgba(212, 168, 83, .35)
}

.international-badge span {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold)
}

.international-main {
    font-size: 19px;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 20px
}

.international-main strong {
    color: #fff
}

.international-sub {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light)
}

/* ===== SERVICES (legacy) ===== */
.services {
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
}

.services .section-label {
    color: var(--accent-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.service-card {
    background: rgba(34, 58, 120, 0.449);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 10px 24px;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    position: relative;
    overflow: hidden
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity .3s ease
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(12, 26, 61, .12);
    border-color: rgba(212, 168, 83, .25)
}

.service-card:hover::after {
    opacity: 1
}

.service-emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 18px;
    transition: transform .3s ease
}

.service-card:hover .service-emoji {
    transform: scale(1.15)
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6
}

/* ===== OUR IMPACT ===== */
.impact {
    background: #0c1a3d
}

.impact .section-label {
    color: var(--accent-gold)
}

.impact .section-title {
    color: #fff
}

.impact .section-subtitle {
    color: var(--text-light)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.stat-card {
    background: rgba(34, 58, 120, 0.449);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform .25s
}

.stat-card:hover {
    transform: translateY(-3px)
}

.stat-card.accent {
    background: rgba(212, 168, 83, .1);
    border-color: rgba(212, 168, 83, .25)
}

.stat-card.accent .stat-number {
    color: var(--accent-gold)
}

.stat-card.accent .stat-label,
.stat-card.accent .stat-desc {
    color: #e2e8f0
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: #e2e8f0
}

.stat-desc {
    font-size: 12px;
    color: var(--text-light)
}

/* ===== CASE SPOTLIGHT ===== */
.text-gold {
    color: var(--accent-gold) !important;
}


.spotlight-card {
    background: var(--primary-blue);
    border: 1px solid rgba(212, 168, 83, .15);
    border-radius: 24px;
    padding: 48px 56px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}


.spotlight-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, .08) 0%, transparent 60%);
    pointer-events: none
}

.spotlight-inner {
    display: flex;
    align-items: center;
    gap: 48px
}

.spotlight-content {
    flex: 1
}

.spotlight-content .section-label {
    color: var(--accent-gold);
    text-align: left;
    margin-bottom: 14px;
    font-size: 11px
}

.spotlight-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.35;
    color: #fff
}

.spotlight-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0
}

.spotlight-badge-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    align-self: stretch
}

.spotlight-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(212, 168, 83, .08);
    padding: 24px 32px;
    border-radius: 10px;
    border: 1px solid rgba(212, 168, 83, .35);
    text-align: center;
    min-width: 170px;
    height: 100%
}

.spotlight-badge-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-gold)
}

.spotlight-badge-sub {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400
}

/* ===== PARTNER + MISSION + FUNDING (combined) ===== */
.partner-combined {
    background: #f8fafc;
    padding: 80px 0
}

.partner-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07)
}

.partner-left {
    padding: 48px 44px;
    background: #fff;
    display: flex;
    flex-direction: column
}

.partner-tag {
    display: inline-block;
    background: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    color: black;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px
}

.partner-left .section-title {
    text-align: left;
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 14px
}

.partner-desc {
    color: #4b6187;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
    flex: 1
}

.partner-item {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.p-check {
    color: var(--primary-blue);
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

.partner-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1e3a6e;
    margin-bottom: 3px
}

.partner-item p {
    font-size: 14px;
    color: #4b6187;
    margin: 0;
    line-height: 1.5
}

.btn-partner {
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 0;
    display: inline-block;
    align-self: flex-start;
    transition: background .2s
}

.btn-partner:hover {
    background: var(--primary-blue)
}

/* Right dark panel */
.partner-right {
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0
}

.partner-combined .section-label {
    color: var(--accent-gold)
}

.mission-box {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.mission-quote {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0
}

.funding-box .section-label {
    color: var(--accent-gold);
    margin-bottom: 16px
}

.funding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.funding-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 16px 18px;
    text-align: left
}

.funding-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 4px
}

.funding-card p {
    font-size: 12px;
    color: var(--text-light)
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
    background: #0a1530;
    color: #fff;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.bottom-cta-inner {
    max-width: 640px;
    margin: 0 auto
}

.bottom-cta h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff
}

.bottom-cta p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7
}

.bottom-cta .btn-primary {
    background: var(--accent-gold)
}

.bottom-cta .btn-primary:hover {
    background: var(--white-yellow)
}

.bottom-cta .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .2)
}

.bottom-cta .btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold)
}

/* ===== FOOTER ===== */

.site-footer {
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    color: var(--text-light);
    font-size: 14px;
    position: relative;
    overflow: hidden
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow), var(--accent-gold));
    opacity: .8
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding: 70px 24px 50px;
    position: relative;
    z-index: 1
}

.footer-brand p {
    margin: 16px 0 24px;
    line-height: 1.8;
    color: var(--text-light)
}

.footer-logo {
    background-color: white;
    padding: 5px 10px;
    border-radius: 0;
    display: inline-block;
}

.footer-logo .logo-icon {
    width: auto;
    height: 70px;
    margin-right: 10px;

}

.footer-logo .logo-text {
    font-weight: 700;
    font-size: 16px;
    color: #0c1a3d;
    line-height: 1.2
}

.footer-logo .logo-sub {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 12px
}

.footer-member {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 14px
}

.footer-member small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 4px
}

.footer-member strong {
    color: var(--accent-gold);
    font-size: 14px
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent)
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0px;
    margin-left: 0;
}

.footer-col li {
    font-size: 14px;
    color: var(--text-light);
    transition: transform .2s ease
}

.footer-col a {
    color: var(--text-light);
    transition: all .25s ease;
    display: inline-block
}

.footer-col a:hover {
    color: var(--accent-gold);
    transform: translateX(4px)
}

.contact-list a {
    color: var(--text-light)
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 20px
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 0;
    color: var(--text-light);
    transition: all .3s ease
}

.social-links a:hover {
    background: rgba(212, 168, 83, .15);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 20px 0;
    font-size: 12px
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-form-wrap {
        justify-content: center
    }

    .hero-form-card {
        max-width: 500px
    }

    .hero-copy h1 {
        font-size: 38px
    }

    .stats-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .partner-two-col {
        grid-template-columns: 1fr
    }

    .partner-left,
    .partner-right {
        padding: 40px 32px
    }

    .help-grid {
        grid-template-columns: 1fr
    }

    .help-sidebar {
        position: static
    }

    .campaigns-grid {
        grid-template-columns: 1fr
    }

    .campaigns-sidebar {
        position: static
    }

    .campaign-cards {
        grid-template-columns: 1fr 1fr
    }


}

@media(max-width:768px) {
    .topbar-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center
    }

    .topbar-left {
        flex-direction: column;
        gap: 6px
    }

    .topbar-right {
        flex-wrap: wrap;
        justify-content: center
    }

    .hamburger {
        display: flex
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a1530;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
    }

    .main-nav.open {
        display: flex
    }

    .main-nav a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .nav-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-dropdown-toggle {
        color: #cbd5e1;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        font-size: 14px;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        background: rgba(255, 255, 255, .05);
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        border-left: 2px solid var(--accent-gold);
        margin-left: 8px;
    }

    .nav-dropdown-menu li a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px
    }

    .hero-inner {
        text-align: center
    }

    .hero-copy h1 {
        font-size: 32px
    }

    .steps-grid,
    .trust-grid {
        grid-template-columns: 1fr
    }

    .spotlight-card {
        padding: 32px 24px
    }

    .spotlight-inner {
        flex-direction: column;
        text-align: center
    }

    .spotlight-content .section-label {
        text-align: center
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .partner-two-col {
        grid-template-columns: 1fr
    }

    .funding-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:480px) {
    .hero-copy h1 {
        font-size: 26px
    }

    .hero-form-card {
        padding: 24px 20px
    }

    .hero-form-row {
        flex-direction: column;
        gap: 14px
    }

    .section-title {
        font-size: 26px
    }

    .stats-grid,
    .services-grid {
        grid-template-columns: 1fr
    }

    .btn {
        padding: 12px 22px;
        font-size: 14px
    }

    .funding-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        flex-direction: column
    }

    .exists-purpose {
        padding: 28px 24px
    }

    .exists-list {
        grid-template-columns: 1fr
    }

    .exists-highlight {
        padding: 20px 28px;
        font-size: 17px
    }

    .exists-belief {
        padding: 20px 24px;
        font-size: 18px !important
    }

    .qualification-box,
    .submit-form-box,
    .next-steps-box {
        padding: 24px 20px
    }

    .campaign-cards {
        grid-template-columns: 1fr
    }

    .campaigns-main {
        padding: 28px 24px
    }

    .why-campaigns-box {
        padding: 28px 24px
    }

    .help-bullets {
        grid-template-columns: 1fr
    }



    .beyond-card {
        padding: 24px 20px
    }
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.section {
    animation: slideInUp .7s ease-out both
}

/* ===== ADDITIONAL POLISH ===== */
::selection {
    background: rgba(212, 168, 83, .3);
    color: #fff
}


/* Smooth focus states for accessibility */
input:focus,
select:focus,
textarea:focus,
button:focus-visible {
    outline: 2px solid rgba(212, 168, 83, .5);
    outline-offset: 2px
}

/* Loading shimmer for interactive elements */
@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.animate-target {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s cubic-bezier(.25, .46, .45, .94)
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0)
}

/* Stagger animation for grid items */
.step-card.animate-target:nth-child(1) {
    transition-delay: .1s
}

.step-card.animate-target:nth-child(2) {
    transition-delay: .2s
}

.step-card.animate-target:nth-child(3) {
    transition-delay: .3s
}

.service-card.animate-target:nth-child(1) {
    transition-delay: .05s
}

.service-card.animate-target:nth-child(2) {
    transition-delay: .1s
}

.service-card.animate-target:nth-child(3) {
    transition-delay: .15s
}

.service-card.animate-target:nth-child(4) {
    transition-delay: .2s
}

.service-card.animate-target:nth-child(5) {
    transition-delay: .25s
}

.service-card.animate-target:nth-child(6) {
    transition-delay: .3s
}

.service-card.animate-target:nth-child(7) {
    transition-delay: .35s
}

.service-card.animate-target:nth-child(8) {
    transition-delay: .4s
}

.beyond-card.animate-target:nth-child(1) {
    transition-delay: .1s
}

.beyond-card.animate-target:nth-child(2) {
    transition-delay: .2s
}

.beyond-card.animate-target:nth-child(3) {
    transition-delay: .3s
}

.beyond-card.animate-target:nth-child(4) {
    transition-delay: .4s
}

.approach-bullets li.animate-target:nth-child(1) {
    transition-delay: .1s
}

.approach-bullets li.animate-target:nth-child(2) {
    transition-delay: .15s
}

.approach-bullets li.animate-target:nth-child(3) {
    transition-delay: .2s
}

.approach-bullets li.animate-target:nth-child(4) {
    transition-delay: .25s
}

.approach-bullets li.animate-target:nth-child(5) {
    transition-delay: .3s
}

/* Header scroll state */
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, .15)
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero - Matches home page hero style */
/* .about-hero {
    padding: 80px 0 100px;
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    background-image: 
        radial-gradient(circle at center, 
            rgba(34, 58, 120, 0.973) 30%, 
            rgba(34, 58, 120, 0.766) 60%, 
            rgba(10, 21, 48, 0.115) 100%
        );
    pointer-events: none;
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.5px;
    animation: fadeInUp .7s ease-out .1s both;
}

.about-hero h1 span {
    display: block;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp .7s ease-out .2s both;
}

.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, .12);
    color: var(--white-yellow);
    border: 1px solid rgba(212, 168, 83, .35);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    animation: fadeInDown .6s ease-out;
    box-shadow: 0 4px 20px rgba(212, 168, 83, .15);
    backdrop-filter: blur(10px);
}

.who-we-are-section {
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.who-we-are-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.who-we-are-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    border-radius: 2px;
}

.who-we-are-section .row {
    text-align: left;
}

.who-we-are-section p {
    color:var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
} */

/* At a Glance Card - Glass morphism style like home page cards */
.at-glance-card {
    background: var(--light-blue-bg);
    backdrop-filter: blur(24px);
    padding: 35px;
    border: 1px solid rgb(241 245 249);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}



.at-glance-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.glance-item:hover {
    padding-left: 10px;
    background: rgba(212, 168, 83, .06);
    margin: 0 -15px;
    padding-right: 25px;
    padding-left: 25px;
}

.glance-item:last-child {
    border-bottom: none;
}

.glance-item .label {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.glance-item .value {
    color: var(--primary-blue);
    font-weight: 700;
    text-align: right;
    font-size: 0.95rem;
}

.glance-item .value.gold {
    color: var(--accent-gold);
    font-weight: 700;
}

/* What We Do Section - Dark gradient background with glass cards */
.what-we-do-section {
    padding: 100px 0;
    background: #0c1a3d;
    position: relative;
    overflow: hidden;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    pointer-events: none;
}

.what-we-do-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 83, .08) 0%, transparent 70%);
    pointer-events: none;
}

.what-we-do-section .container {
    position: relative;
    z-index: 1;
}

.what-we-do-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.what-we-do-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.what-we-do-card {
    background: rgba(34, 58, 120, 0.449);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    padding: 36px 28px;
    text-align: center;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.what-we-do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.what-we-do-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(212, 168, 83, .4);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

.what-we-do-card:hover::before {
    transform: scaleX(1);
}

.what-we-do-card .icon-box {
    width: 70px;
    height: 70px;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 168, 83, .3);
    transition: all 0.3s ease;
}

.what-we-do-card:hover .icon-box {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(212, 168, 83, .4);
}

.what-we-do-card .icon-box svg {
    width: 32px;
    height: 32px;
    color: #0c1a3d;
}

.what-we-do-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.what-we-do-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Our Advocacy Section - Enhanced layout matching home page */
.advocacy-section {
    padding: 100px 0;
    /* background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%); */
    position: relative;
    text-align: center;
}

.advocacy-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.advocacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    border-radius: 2px;
}

.advocacy-section .row {
    text-align: left;
}

.advocacy-section p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advocacy-section strong {
    color: var(--accent-gold);
}

/* International Section - Dark theme like home page approach section */
.international-section {
    padding: 100px 0;
    background: var(--primary-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.international-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 83, .08) 0%, transparent 70%);
    pointer-events: none;
}

.international-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    pointer-events: none;
    z-index: 0;
}

.international-section .container {
    position: relative;
    z-index: 1;
}

.international-section .section-label {
    color: var(--accent-gold);
}

.international-section .section-title {
    color: #fff;
}

.international-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.international-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 168, 83, .12);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 168, 83, .35);
    padding: 16px 28px;
    border-radius: 30px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(212, 168, 83, .15);
}

.international-badge .ci-logo {
    width: 45px;
    height: 45px;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #0c1a3d;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(212, 168, 83, .3);
}

.international-badge span {
    color: var(--white-yellow);
    font-weight: 600;
    font-size: 1rem;
}

.international-main {
    color: #e2e8f0;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.international-main strong {
    color: var(--accent-gold);
}

.international-sub {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Our Role Section - Matching home page style */
.our-role {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.role-content {
    max-width: 700px;
    margin: 0 auto;
}

.role-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.role-emphasis {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #0c1a3d !important;
    padding: 22px 26px;
    background: rgba(212, 168, 83, .08);
    border: 1px solid rgba(212, 168, 83, .2);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0;
    margin: 1.5rem 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* Why CPB Exists Section - Dark theme matching home page */
.why-exists {
    padding: 100px 0;
    background: #0c1a3d;
    position: relative;
    overflow: hidden;
}

.why-exists::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    pointer-events: none;
}

.why-exists::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 83, .08) 0%, transparent 70%);
    pointer-events: none;
}

.why-exists .container {
    position: relative;
    z-index: 1;
}

.exists-content {
    margin: 0 auto;
    text-align: center;
}

.exists-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.exists-intro p:first-child {
    font-size: 1.4rem;
    color: #e2e8f0;
    font-weight: 500;
}

.exists-highlight {
    font-size: 1.15rem !important;
    font-weight: 600;
    color: var(--white-yellow) !important;
    padding: 22px 32px;
    background: rgba(212, 168, 83, .12);
    border: 1px solid rgba(212, 168, 83, .35);
    border-radius: 30px;
    margin: 2rem auto !important;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(212, 168, 83, .15);
}

.exists-purpose {
    margin: 3rem 0;
    padding: 40px;
    background: rgba(34, 58, 120, 0.449);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    backdrop-filter: blur(10px);
}

.exists-purpose h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.exists-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.exists-list li {
    position: relative;
    padding: 18px 22px 18px 56px;
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
    background: rgba(34, 58, 120, 0.449);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
}

.exists-list li:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(212, 168, 83, .4);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}

.exists-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 168, 83, .3);
}

.exists-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 2rem;
}

.exists-footer p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.exists-footer strong {
    color: var(--accent-gold);
}

.exists-belief {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #fff !important;
    text-align: center;
    padding: 24px 32px;
    margin-top: 1.5rem !important;
    background: linear-gradient(135deg, rgba(212, 168, 83, .12) 0%, rgba(212, 168, 83, .04) 100%);
    border: 1px solid rgba(212, 168, 83, .25);
    border-radius: 0;
    display: inline-block;
    font-style: italic;
}

/* Beyond Cases Section - Matching home page card styles */
.beyond-cases-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    text-align: center;
}

.beyond-cases-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}


.beyond-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 0;
    text-align: start;
    border: 1px solid rgb(241 245 249);
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    position: relative;
    overflow: hidden;
}

.beyond-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.beyond-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(12, 26, 61, .12);
    border-color: rgba(212, 168, 83, .3);
}

.beyond-card:hover::before {
    transform: scaleX(1);
}

.beyond-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
    filter: grayscale(0);
}

.beyond-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.beyond-card strong {
    color: var(--accent-gold);
}

/* Need Help CTA Section - Dark theme matching home page */
.need-help-cta {
    background: #0c1a3d;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.need-help-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    pointer-events: none;
}

.need-help-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 50%);
}

.need-help-cta .container {
    position: relative;
    z-index: 1;
}

.need-help-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    animation: fadeInUp .7s ease-out .1s both;
}

.need-help-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.15rem;
    animation: fadeInUp .7s ease-out .2s both;
}



/* Responsive adjustments for about page */
@media (max-width: 991px) {
    .about-hero h1 {
        font-size: 38px;
    }

    .who-we-are-section h2,
    .what-we-do-section h2,
    .advocacy-section h2 {
        font-size: 2rem;
    }

    .at-glance-card {
        margin-top: 3rem;
    }

    .exists-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 50px 0 70px;
    }

    .about-hero h1 {
        font-size: 30px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .who-we-are-section,
    .what-we-do-section,
    .advocacy-section,
    .why-exists,
    .beyond-cases-section {
        padding: 60px 0;
    }

    .who-we-are-section p:first-of-type::first-letter {
        font-size: 2.5rem;
    }

    .international-badge {
        flex-direction: column;
        padding: 20px;
    }

    .beyond-grid {
        grid-template-columns: 1fr 1fr;
    }

    .exists-highlight {
        padding: 18px 24px;
        font-size: 1rem !important;
    }

    .exists-purpose {
        padding: 28px 24px;
    }

    .exists-belief {
        padding: 20px 24px;
        font-size: 1.1rem !important;
    }
}

/* ===== PRICING PAGE STYLES ===== */

/* Pricing Hero - Matching home/about hero style */
.pricing-hero {
    padding: 80px 0 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.pricing-hero .container {
    position: relative;
    z-index: 1;
}

.pricing-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.12;
    letter-spacing: -0.5px;
    animation: fadeInUp .7s ease-out .1s both;
}

.pricing-hero h1 em {
    font-style: italic;
    font-weight: 700;
    color: var(--primary-blue);
}

.pricing-hero h1 span {
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero p {
    font-size: 18px;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp .7s ease-out .2s both;
    color: var(--text-dark);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0 0 0;
    /* background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); */
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

/* Pricing Card - Matching home page card styles */
.pricing-card {
    background: #f8fafc;
    border-radius: 0;
    padding: 30px 25px;
    border: 1px solid rgb(241 245 249);
    position: relative;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(12, 26, 61, .12);
    border-color: rgba(212, 168, 83, .3);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

/* Featured Card (Silver) - Dark theme like home page dark sections */
.pricing-card.featured {
    background: #0c1a3d;
    border: 1px solid rgba(212, 168, 83, .35);
    transform: scale(1.02);
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    pointer-events: none;
    z-index: 0;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    transform: scaleX(1);
    z-index: 1;
}

.pricing-card.featured>* {
    position: relative;
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.pricing-card.featured .plan-name,
.pricing-card.featured .plan-price,
.pricing-card.featured .plan-description,
.pricing-card.featured .plan-features li {
    color: var(--text-light);
}

.pricing-card.featured .plan-price .price {
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.featured .check-icon {
    color: var(--accent-gold);
}

/* Featured Badge - Matching home page member badge style */
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    padding: 6px 20px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 168, 83, .3);
    z-index: 2;
}

/* Tailored Badge */
.tailored-badge {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: #fff;
    padding: 6px 20px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Plan Header */
.pricing-card-header {
    margin-bottom: 1.2rem;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.plan-name.gold-text {
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.plan-price .period {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pricing-card.featured .plan-price .period {
    color: var(--text-light);
}

/* Plan Description */
.plan-description {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

/* Plan Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.plan-features li:last-child {
    border-bottom: none;
}

.pricing-card.featured .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing Button - Matching home page buttons */
.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--secondary-blue);
    color: #fff;
    text-align: center;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
}

.btn-pricing:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 58, 120, .25);
}

.btn-pricing-featured {
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    box-shadow: 0 4px 15px rgba(212, 168, 83, .3);
}

.btn-pricing-featured:hover {
    background: linear-gradient(135deg, var(--white-yellow), var(--accent-gold));
    color: #0c1a3d;
    box-shadow: 0 8px 25px rgba(212, 168, 83, .4);
}

/* Success Fee Section */
.success-fee-section {
    padding: 60px 0;
    background: #fff;
}

.success-fee-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(212, 168, 83, .06);
    border: 1px solid rgba(212, 168, 83, .2);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.success-fee-icon {
    width: 50px;
    height: 50px;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0c1a3d;
    box-shadow: 0 4px 15px rgba(212, 168, 83, .3);
}

.success-fee-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.success-fee-content p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.success-fee-content strong {
    color: var(--primary-blue);
}

/* Discounts Section */
.discounts-section {
    padding: 60px 0;
    background: var(--light-blue-bg);
}

.discounts-box {
    background: #fff;
    border-radius: 0;
    padding: 40px;
    border: 1px solid rgb(241 245 249);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.discounts-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

.discounts-box>p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.discount-item {
    background: var(--light-blue-bg);
    border-radius: 0;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgb(241 245 249);
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
}

.discount-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(12, 26, 61, .08);
}

.discount-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.discount-label.bronze-label {
    color: #cd7f32;
}

.discount-label.silver-label {
    color: #6b7280;
}

.discount-label.gold-label {
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discount-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.discount-price {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
}

/* Not Sure Section - Dark theme */
.not-sure-section {
    padding: 80px 0;
    background: #0c1a3d;
    position: relative;
    overflow: hidden;
}

.not-sure-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    pointer-events: none;
}

.not-sure-section .container {
    position: relative;
    z-index: 1;
}

.not-sure-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.not-sure-section p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.not-sure-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-get-help {
    padding: 14px 32px;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    box-shadow: 0 4px 15px rgba(212, 168, 83, .3);
}

.btn-get-help:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, .4);
    color: #0c1a3d;
}

.btn-call {
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all .35s ease;
}

.btn-call:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(212, 168, 83, .08);
}

/* Pricing Page Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 30px;
    }

    .pricing-hero p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .success-fee-box {
        flex-direction: column;
        text-align: center;
    }

    .success-fee-icon {
        margin: 0 auto;
    }

    .discounts-grid {
        grid-template-columns: 1fr;
    }

    .discounts-box {
        padding: 30px 20px;
    }

    .not-sure-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-get-help,
    .btn-call {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero - Dark theme matching other pages */
.contact-hero {
    padding: 80px 0 100px;
    background: #0c1a3d;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    background-image:
        radial-gradient(circle at center,
            rgba(34, 58, 120, 0.973) 30%,
            rgba(34, 58, 120, 0.766) 60%,
            rgba(10, 21, 48, 0.115) 100%);
    pointer-events: none;
    z-index: 0;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.5px;
    animation: fadeInUp .7s ease-out .1s both;
}

.contact-hero h1 span {
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp .7s ease-out .2s both;
}

/* Contact Section */
.contact-section {
    padding: 80px 0 100px;
    background: #fff;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    padding-right: 20px;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

a.contact-value {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: var(--accent-gold);
}

.contact-email {
    word-break: break-all;
}

.contact-social {
    display: flex;
    gap: 16px;
}

.contact-social a {
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-social a:hover {
    color: var(--accent-gold);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--light-blue-bg);
    padding: 40px;
    border: 1px solid rgb(241 245 249);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-form label .required {
    color: var(--accent-gold);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    color: #1e293b;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, .15);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* Contact Submit Button */
.btn-contact-submit {
    display: block;
    width: 100%;
    padding: 16px 32px;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    box-shadow: 0 4px 20px rgba(212, 168, 83, .3);
    position: relative;
    overflow: hidden;
}

.btn-contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transition: left .5s ease;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, .45);
}

.btn-contact-submit:hover::before {
    left: 100%;
}

/* Contact Page Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .contact-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 80px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ===== GET HELP PAGE STYLES ===== */

/* Get Help Hero */
.gethelp-hero {
    padding: 80px 0 100px;
    background: #0c1a3d;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.gethelp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.gethelp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
    background-image:
        radial-gradient(circle at center,
            rgba(34, 58, 120, 0.973) 30%,
            rgba(34, 58, 120, 0.766) 60%,
            rgba(10, 21, 48, 0.115) 100%);
    pointer-events: none;
    z-index: 0;
}

.gethelp-hero .container {
    position: relative;
    z-index: 1;
}

.gethelp-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.5px;
    animation: fadeInUp .7s ease-out .1s both;
}

.gethelp-hero h1 span {
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gethelp-hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp .7s ease-out .2s both;
}

/* Get Help Intro Section */
.gethelp-intro {
    padding: 80px 0;
    background: #fff;
}

.gethelp-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.gethelp-intro-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.gethelp-intro-content h2 span {
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gethelp-intro-content>p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.gethelp-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gethelp-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-light);
}

.gethelp-features li svg {
    flex-shrink: 0;
    color: var(--accent-gold);
    margin-top: 2px;
}

.intro-image-card {
    background: linear-gradient(135deg, #0c1a3d 0%, var(--primary-blue) 100%);
    padding: 40px;
    display: grid;
    gap: 30px;
}

/* Light variant for intro image card */
.intro-image-card.intro-image-card--light {
    background: var(--light-blue-bg);
    border: 1px solid rgb(226 232 240);
}

.intro-image-card--light .intro-stat {
    background: #fff;
    border: 1px solid rgb(226 232 240);
}

.intro-image-card--light .stat-number {
    background: linear-gradient(135deg, var(--primary-blue) 20%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-image-card--light .stat-label {
    color: var(--text-light);
}

.intro-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Get Help Form Section */
.gethelp-form-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);

}

.gethelp-form-section .section-header {
    margin-bottom: 50px;
}

.gethelp-form-section .section-label {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.gethelp-form-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.gethelp-form-section .section-title span {
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gethelp-form-section .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

.gethelp-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Get Help Form Wrap */
.gethelp-form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.gethelp-form-wrap .qualification-box {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.gethelp-form-wrap .qualification-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.gethelp-form-wrap .qualification-box p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.gethelp-form-wrap .qual-buttons {
    display: flex;
    gap: 12px;
}

.gethelp-form-wrap .qual-btn,
.gethelp-form-wrap .qual-followup-btn {
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gethelp-form-wrap .qual-btn:hover,
.gethelp-form-wrap .qual-followup-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
}

.gethelp-form-wrap .qual-btn.active,
.gethelp-form-wrap .qual-followup-btn.active {
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #0c1a3d;
}

.gethelp-form-wrap .qual-thanks p,
.gethelp-form-wrap .qual-submit-message p {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Submit Form Box in Get Help */
.gethelp-form-wrap .submit-form-box {
    background: transparent;
    padding: 0;
}

.gethelp-form-wrap .submit-form-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gethelp-form-wrap .submit-form-box .form-intro {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.gethelp-form-wrap .help-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.gethelp-form-wrap .help-form .form-group {
    margin-bottom: 20px;
}

.gethelp-form-wrap .help-form .form-group.full-width {
    grid-column: 1 / -1;
}

.gethelp-form-wrap .help-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.gethelp-form-wrap .help-form label .required {
    color: var(--accent-gold);
}

.gethelp-form-wrap .help-form label .char-limit {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85rem;
}

.gethelp-form-wrap .help-form input,
.gethelp-form-wrap .help-form select,
.gethelp-form-wrap .help-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.gethelp-form-wrap .help-form input::placeholder,
.gethelp-form-wrap .help-form textarea::placeholder {
    color: var(--text-light);
}

.gethelp-form-wrap .help-form input:focus,
.gethelp-form-wrap .help-form select:focus,
.gethelp-form-wrap .help-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.gethelp-form-wrap .help-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.gethelp-form-wrap .help-form select option {
    background: #0c1a3d;
    color: #fff;
}

.gethelp-form-wrap .help-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* File Upload in Get Help */
.gethelp-form-wrap .file-upload-box {
    display: block;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.gethelp-form-wrap .file-upload-box:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
}

.gethelp-form-wrap .file-upload-box input[type="file"] {
    display: none;
}

.gethelp-form-wrap .file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.gethelp-form-wrap .file-upload-content svg {
    color: var(--accent-gold);
}

.gethelp-form-wrap .file-upload-text {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
}

.gethelp-form-wrap .file-upload-hint {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Checkbox in Get Help */
.gethelp-form-wrap .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.gethelp-form-wrap .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--accent-gold);
}

.gethelp-form-wrap .checkbox-label a {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Submit Button in Get Help */
.gethelp-form-wrap .btn-submit {
    display: block;
    width: 100%;
    padding: 16px 32px;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    box-shadow: 0 4px 20px rgba(212, 168, 83, .3);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.gethelp-form-wrap .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transition: left .5s ease;
}

.gethelp-form-wrap .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, .45);
}

.gethelp-form-wrap .btn-submit:hover::before {
    left: 100%;
}

/* Get Help Sidebar */
.gethelp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gethelp-sidebar .next-steps-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
}

.gethelp-sidebar .next-steps-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.gethelp-sidebar .next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.gethelp-sidebar .next-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.gethelp-sidebar .next-steps-list .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    /* background: linear-gradient(135deg, var(--accent-gold), var(--white-yellow)); */
    background-color: var(--accent-gold);
    color: #0c1a3d;
    font-weight: 700;
    font-size: 0.85rem;
}

.gethelp-sidebar .next-steps-list .step-text {
    padding-top: 3px;
}

.gethelp-sidebar .disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
}

/* Contact Box in Sidebar */
.gethelp-sidebar .contact-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
}

.gethelp-sidebar .contact-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gethelp-sidebar .contact-box>p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.gethelp-sidebar .contact-phone,
.gethelp-sidebar .contact-email-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.gethelp-sidebar .contact-phone:hover,
.gethelp-sidebar .contact-email-link:hover {
    color: var(--accent-gold);
}

.gethelp-sidebar .contact-phone svg,
.gethelp-sidebar .contact-email-link svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Issues Section */
.gethelp-issues {
    padding: 80px 0 100px;
    background: #fff;
}

.gethelp-issues .section-header {
    margin-bottom: 50px;
}

.gethelp-issues .section-label {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.gethelp-issues .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.gethelp-issues .section-title span {
    background: linear-gradient(90deg, var(--accent-gold), var(--white-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.issue-card {
    background: var(--light-blue-bg);
    border: 1px solid rgb(241 245 249);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 58, 120, 0.1);
    border-color: var(--accent-gold);
}

.issue-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 20%, var(--secondary-blue) 100%);
    margin-bottom: 1rem;
}

.issue-icon svg {
    color: var(--accent-gold);
}

.issue-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.issue-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Get Help CTA Section */
.gethelp-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0c1a3d 0%, var(--primary-blue) 100%);
    background: linear-gradient(180deg, var(--primary-blue) 50%, var(--secondary-blue) 90%);
}

.gethelp-cta .cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.gethelp-cta .cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.gethelp-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


.gethelp-cta .btn-outline-light {
    padding: 14px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gethelp-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Get Help Page Responsive */
@media (max-width: 1200px) {
    .issues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .gethelp-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image-card {
        grid-template-columns: repeat(3, 1fr);
    }

    .gethelp-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gethelp-sidebar {
        flex-direction: row;
    }

    .gethelp-sidebar>div {
        flex: 1;
    }

    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gethelp-hero {
        padding: 60px 0 80px;
    }

    .gethelp-hero h1 {
        font-size: 32px;
    }

    .gethelp-hero p {
        font-size: 16px;
    }

    .gethelp-intro {
        padding: 60px 0;
    }

    .gethelp-intro-content h2 {
        font-size: 1.8rem;
    }

    .intro-image-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .gethelp-form-section {
        padding: 60px 0;
    }

    .gethelp-form-wrap {
        padding: 25px 20px;
    }

    .gethelp-form-wrap .help-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .gethelp-sidebar {
        flex-direction: column;
    }

    .gethelp-issues {
        padding: 60px 0;
    }

    .issues-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .issue-card {
        padding: 25px 20px;
    }

    .gethelp-cta {
        padding: 60px 0;
    }

    .gethelp-cta .cta-content h2 {
        font-size: 1.6rem;
    }

    .gethelp-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */


.about-hero-new {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-new::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-new .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.about-hero-new h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-hero-new h1 span {
    color: rgb(250, 241, 123);
}

.about-hero-new .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.8;
    margin: 0 auto 32px;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.about-hero-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: rgb(250, 241, 123);
    display: block;
    line-height: 1;
}

.about-hero-stat .lbl {
    font-size: 12px;
    color: #94afd0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-split {
    padding: 80px 0;
    background: #fff;
}

.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-split-grid {
        grid-template-columns: 1fr;
    }
}

.about-split-text .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 12px;
}

.about-split-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-split-text p {
    color: #475569;
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-split-text .join-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 8px;
    transition: background .2s;
}

.about-split-text .join-link:hover {
    background: #e5bf20;
}

.ceo-card {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}

.ceo-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgb(250, 241, 123);
    margin-bottom: 20px;
}

.ceo-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ceo-card .role {
    color: rgb(250, 241, 123);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

.ceo-card .ceo-bio {
    color: #94afd0;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.about-values {
    background: rgb(248 250 252);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(38, 69, 150, .1);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(250, 241, 123);
    font-size: 20px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0c1a3d;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.leadership-section {
    background-color: var(--primary-blue);
    padding: 80px 0;
}

.leadership-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 860px) {
    .leadership-inner {
        grid-template-columns: 1fr;
    }
}

.leadership-photo-block {
    position: sticky;
    top: 100px;
}

.leadership-photo-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}

.leadership-photo-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgb(250, 241, 123);
    margin-bottom: 20px;
}

.leadership-photo-card h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.leadership-photo-card .role-tag {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.leadership-photo-card p {
    color: #94afd0;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.leadership-content .section-label {
    color: rgb(250, 241, 123);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.leadership-content h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.achievement-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: background .2s;
}

.achievement-card:hover {
    background: rgba(255, 255, 255, .09);
}

.achievement-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.achievement-icon {
    width: 44px;
    height: 44px;
    background: rgb(250, 241, 123);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c1a3d;
    font-size: 18px;
    flex-shrink: 0;
}

.achievement-card h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.achievement-card .score-tag {
    display: inline-block;
    background: rgba(250, 241, 123, .15);
    border: 1px solid rgba(250, 241, 123, .3);
    color: rgb(250, 241, 123);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
}


.achievement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgb(250, 241, 123);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap .2s;
}

.achievement-link:hover {
    gap: 10px;
    color: rgb(250, 241, 123);
}

.testimonials-section {
    background: #fff;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgb(248 250 252);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(38, 69, 150, .1);
}

.testimonial-card .quote-mark {
    font-size: 48px;
    line-height: 1;
    color: rgb(250, 241, 123);
    font-family: Georgia, serif;
    margin-bottom: 8px;
    display: block;
}

.testimonial-card p {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(250, 241, 123);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #0c1a3d;
}

.author-location {
    font-size: 12px;
    color: #94a3b8;
}

.stars {
    color: rgb(250, 241, 123);
    font-size: 12px;
    margin-bottom: 4px;
}

.about-cta {
    background: rgb(248 250 252);
    padding: 80px 0;
}

.about-cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .about-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.about-cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.about-cta-inner p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.about-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .about-cta-btns {
        align-items: center;
    }
}

.about-cta-btns a.primary {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.about-cta-btns a.primary:hover {
    background: #e5bf20;
}

.about-cta-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.about-cta-btns a.secondary:hover {
    color: #fff;
}

.section-center {
    text-align: center;
}

.section-center .sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #264596;
    margin-bottom: 12px;
}

.section-center h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0c1a3d;
    margin-bottom: 16px;
}

.section-center p.sub {
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
    font-size: 0.97rem;
    line-height: 1.75;
}


/* ============================================================
   FAQ PAGE STYLES
   ============================================================ */

/* -- FAQ Hero -- */
.faq-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.faq-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.faq-hero h1 span {
    color: rgb(250, 241, 123);
}

.faq-hero p {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.faq-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.faq-hero-stat {
    text-align: center;
}

.faq-hero-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: rgb(250, 241, 123);
    display: block;
}

.faq-hero-stat .lbl {
    font-size: 12px;
    color: #94afd0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -- FAQ Categories bar -- */
.faq-cats {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 18px 0;
    position: sticky;
    top: 64px;
    z-index: 50;
}

.faq-cats-inner {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-cat-btn {
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
    background: #264596;
    color: #fff;
    border-color: #264596;
}

/* -- FAQ Section -- */
.faq-section {
    padding: 72px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        display: none;
    }
}

/* Sidebar */
.faq-sidebar {
    position: sticky;
    top: 120px;
}

.faq-sidebar-box {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 24px;
}

.faq-sidebar-box h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #264596;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(250, 241, 123);
}

.faq-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    transition: color .2s;
}

.faq-sidebar-nav a:last-child {
    border-bottom: none;
}

.faq-sidebar-nav a:hover {
    color: #264596;
}

.faq-sidebar-nav a .q-num {
    width: 22px;
    height: 22px;
    background: #264596;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-cta-box {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
    text-align: center;
}

.faq-cta-box p {
    color: #c9d9ee;
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.faq-cta-box a {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
}

.faq-cta-box a:hover {
    background: #e5bf20;
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow .2s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(38, 69, 150, .08);
}

.faq-item.open {
    border-color: #264596;
    box-shadow: 0 4px 20px rgba(38, 69, 150, .12);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-q-num {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    color: #264596;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    transition: all .2s;
}

.faq-item.open .faq-q-num {
    background: #264596;
    color: #fff;
}

.faq-q-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border: 1.5px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s;
    color: #264596;
}

.faq-item.open .faq-toggle {
    background: rgb(250, 241, 123);
    border-color: rgb(250, 241, 123);
    color: #0c1a3d;
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px 72px;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 12px;
}

.faq-answer ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 8px;
}

.faq-answer ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: rgb(250, 241, 123);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.faq-answer ol {
    padding-left: 0;
    counter-reset: faq-ol;
    margin: 8px 0 12px;
}

.faq-answer ol li {
    counter-increment: faq-ol;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-answer ol li::before {
    content: counter(faq-ol);
    width: 24px;
    height: 24px;
    background: #264596;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer .sub-list {
    list-style: none;
    padding-left: 20px;
    margin: 6px 0 8px;
}

.faq-answer .sub-list li {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.faq-answer .sub-list li::before {
    content: 'ï¿½';
    color: #264596;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0;
    flex-shrink: 0;
}

.faq-answer .law-item {
    background: #f8fafc;
    border-left: 3px solid #264596;
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.65;
}

.faq-answer .law-item strong {
    color: #264596;
    display: block;
    margin-bottom: 2px;
}

.faq-answer .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin: 12px 0;
}

.faq-answer .price-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
}

.faq-answer .price-card .price-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.faq-answer .price-card .price-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #264596;
    line-height: 1;
}

.faq-answer .price-card .price-period {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}

.faq-answer .highlight-box {
    background: linear-gradient(135deg, rgba(38, 69, 150, .06), rgba(38, 69, 150, .03));
    border: 1px solid rgba(38, 69, 150, .15);
    border-radius: 8px;
    padding: 14px 16px;
    margin: 12px 0;
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.7;
}

.faq-answer .highlight-box strong {
    color: #264596;
}

/* -- Pricing callout -- */
.faq-pricing-section {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    padding: 72px 0;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-intro .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.pricing-intro h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
}

.pricing-intro p {
    color: #94afd0;
    margin-top: 12px;
    max-width: 540px;
    margin-inline: auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.pricing-card-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: transform .2s, background .2s;
}

.pricing-card-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .1);
}

.pricing-card-item.featured {
    border-color: rgb(250, 241, 123);
    background: rgba(250, 241, 123, .08);
}

.pricing-card-item .p-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94afd0;
    margin-bottom: 10px;
}

.pricing-card-item .p-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgb(250, 241, 123);
    line-height: 1;
}

.pricing-card-item .p-period {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.pricing-card-item.featured .p-label {
    color: rgb(250, 241, 123);
}

.pricing-note {
    text-align: center;
    color: #94afd0;
    font-size: 0.9rem;
    max-width: 560px;
    margin: 0 auto 32px;
}

.pricing-note strong {
    color: rgb(250, 241, 123);
}

.pricing-cta {
    text-align: center;
}

.pricing-cta a {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s;
}

.pricing-cta a:hover {
    background: #e5bf20;
}

/* -- CTA Banner -- */
.faq-cta-banner {
    background: #fff;
    padding: 72px 0;
}

.cta-banner-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .cta-banner-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-banner-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-banner-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.cta-banner-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .cta-banner-btns {
        align-items: center;
    }
}

.cta-banner-btns a.primary {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.cta-banner-btns a.primary:hover {
    background: #e5bf20;
}

.cta-banner-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.cta-banner-btns a.secondary:hover {
    color: #fff;
}


/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

/*  Contact Hero  */
.contact-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-hero h1 span {
    color: rgb(250, 241, 123);
}

.contact-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 580px;
    line-height: 1.8;
    margin: 0 auto;
}

/*  Contact cards row  */
.contact-info-section {
    background: #fff;
    padding: 0;
    position: relative;
    z-index: 2;
}

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: -48px;
}

@media (max-width: 768px) {
    .contact-cards-row {
        grid-template-columns: 1fr;
        margin-top: 0;
    }
}

.contact-info-card {
    background: #fff;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}

.contact-info-card:first-child {
    border-radius: 12px 0 0 12px;
}

.contact-info-card:last-child {
    border-radius: 0 12px 12px 0;
}

@media (max-width: 768px) {
    .contact-info-card:first-child {
        border-radius: 12px 12px 0 0;
    }

    .contact-info-card:last-child {
        border-radius: 0 0 12px 12px;
    }
}

.contact-info-card:hover {
    box-shadow: 0 8px 32px rgba(38, 69, 150, .12);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(250, 241, 123);
    font-size: 22px;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #264596;
    margin-bottom: 8px;
}

.contact-info-card a,
.contact-info-card p {
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a:hover {
    color: #264596;
}

.contact-info-card .hours-note {
    display: inline-block;
    background: rgb(248 250 252);
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    margin-top: 8px;
}

/*  Form + Sidebar layout  */
.contact-main {
    padding: 72px 0;
    background: rgb(248 250 252);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Form card */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
}

.contact-form-card .form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c1a3d;
    margin-bottom: 6px;
}

.contact-form-card .form-sub {
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 560px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

.form-group-new {
    margin-bottom: 18px;
}

.form-group-new label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-group-new label span {
    color: #e53e3e;
}

.form-group-new input,
.form-group-new textarea,
.form-group-new select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    color: #334155;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    font-family: inherit;
}

.form-group-new input:focus,
.form-group-new textarea:focus,
.form-group-new select:focus {
    border-color: #264596;
    box-shadow: 0 0 0 3px rgba(38, 69, 150, .1);
}

.form-group-new textarea {
    resize: vertical;
    min-height: 120px;
}

.phone-input-wrap {
    display: flex;
    align-items: stretch;
}

.phone-prefix {
    background: rgb(248 250 252);
    border: 1.5px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 11px 12px;
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.phone-input-wrap input {
    border-radius: 0 6px 6px 0 !important;
}

.submit-btn-new {
    width: 100%;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    margin-top: 6px;
    font-family: inherit;
}

.submit-btn-new:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.form-note {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-top: 12px;
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 28px 24px;
}

.sidebar-box h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #264596;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(250, 241, 123);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
    color: #334155;
}

.hours-list .open {
    color: #16a34a;
    font-weight: 600;
}

.hours-list .closed {
    color: #dc2626;
    font-weight: 600;
}

.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    text-decoration: none;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: color .2s;
}

.quick-links-list li:last-child a {
    border-bottom: none;
}

.quick-links-list li a:hover {
    color: #264596;
}

.quick-links-list li a i {
    color: #264596;
    font-size: 12px;
}

.sidebar-cta-box {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
}

.sidebar-cta-box .cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(250, 241, 123, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(250, 241, 123);
    font-size: 20px;
    margin: 0 auto 14px;
}

.sidebar-cta-box h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    border: none;
    padding: 0;
}

.sidebar-cta-box p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.sidebar-cta-box a {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s;
}

.sidebar-cta-box a:hover {
    background: #e5bf20;
}

/* Map */
.contact-map {
    background: #fff;
}

.contact-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* Success / error messages */
.form-msg {
    display: none;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 14px;
    margin-bottom: 16px;
}

.form-msg.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    display: block;
}

.form-msg.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    display: block;
}


/* ============================================================
   PRICING PAGE STYLES
   ============================================================ */


/* Hero */
.pricing-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.pricing-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.pricing-hero h1 span {
    color: var(--accent-gold);
}

.pricing-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Plans section */
.plans-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.sec-center {
    text-align: center;
    margin-bottom: 52px;
}

.sec-center .sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.sec-center h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 14px;
}

.sec-center p.sub {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.97rem;
    line-height: 1.75;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}



/* Success fee */
.success-section {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    padding: 72px 0;
}

.success-box {
    max-width: 780px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 40px 48px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

@media (max-width: 640px) {
    .success-box {
        flex-direction: column;
        padding: 28px 24px;
    }
}

.success-icon {
    width: 56px;
    height: 56px;
    background: rgba(250, 241, 123, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 22px;
    flex-shrink: 0;
}

.success-box h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.success-box p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

.success-box strong {
    color: var(--accent-gold);
}

/* Discounts */
.discounts-section {
    background: #fff;
    padding: 80px 0;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 640px) {
    .discounts-grid {
        grid-template-columns: 1fr;
    }
}

.discount-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
}

.discount-tier {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.tier-bronze {
    background: rgba(205, 127, 50, .12);
    color: #8B5E3C;
}

.tier-silver {
    background: rgba(192, 192, 192, .2);
    color: #475569;
}

.tier-gold {
    background: rgba(250, 241, 123, .2);
    color: #7a6910;
}

.discount-pct {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1;
    margin-bottom: 4px;
}

.discount-price {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA */
.pricing-cta {
    background: var(--light-bg);
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .cta-btns {
        align-items: center;
    }
}

.cta-btns a.primary {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-navy);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.cta-btns a.primary:hover {
    background: var(--accent-gold-hover);
    color: var(--dark-navy);
}

.cta-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.cta-btns a.secondary:hover {
    color: #fff;
}


/* ============================================================
   WHY-CHOOSE-US PAGE STYLES
   ============================================================ */


/* Hero */
.wcu-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.wcu-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
}

.wcu-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.wcu-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.wcu-hero h1 span {
    color: var(--accent-gold);
}

.wcu-hero .hero-sub {
    font-size: 1.05rem;
    color: #c9d9ee;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Stats bar */
.stat-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-lbl {
    font-size: .8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    height: 40px;
    margin: auto;
}

/* Pillars */
.pillars-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header .sec-label {
    display: inline-block;
    color: var(--primary-blue);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 4px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--secondary-blue);
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-mid);
    max-width: 620px;
    margin: 0 auto;
    font-size: .97rem;
    line-height: 1.7;
}

.pillar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    transition: transform .22s ease, box-shadow .22s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(22, 42, 92, .1);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--accent-gold);
}

.pillar-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

/* Action strip */
.action-strip {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    padding: 60px 0;
}

.action-strip p {
    color: #c9d9ee;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.action-strip h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.action-strip h2 span {
    color: var(--accent-gold);
}

/* Services list */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
    background: #fff;
    transition: box-shadow .2s;
}

.service-item:hover {
    box-shadow: 0 6px 20px rgba(22, 42, 92, .08);
}

.service-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.service-item h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 4px;
}

.service-item p {
    font-size: .85rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
}

.testi-card::before {
    content: '\201C';
    font-size: 5rem;
    line-height: 1;
    color: rgba(38, 69, 150, .1);
    position: absolute;
    top: 12px;
    left: 20px;
    font-family: Georgia, serif;
}

.testi-card blockquote {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 0 0 20px;
    padding-top: 30px;
}

.testi-card .testi-name {
    font-weight: 700;
    color: var(--secondary-blue);
    font-size: .88rem;
}

.testi-card .testi-location {
    font-size: .78rem;
    color: var(--text-light);
}

.testi-stars {
    color: #f59e0b;
    font-size: .85rem;
    margin-bottom: 8px;
}

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    padding: 72px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.cta-banner p {
    color: #b8cde6;
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}


.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 11px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: border-color .2s, background .2s;
    display: inline-block;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .07);
    color: #fff;
}


/* ============================================================
   JURISDICTION-GUIDES PAGE STYLES
   ============================================================ */


/* Hero */
.jurisdictions-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jurisdictions-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.jurisdictions-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.jurisdictions-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.jurisdictions-hero h1 span {
    color: var(--accent-gold);
}

.jurisdictions-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 680px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Tab nav */
.jur-tabs-bar {
    background: #fff;
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 64px;
    z-index: 50;
}

.jur-tabs-bar .nav-tabs {
    border: none;
    justify-content: center;
    gap: 4px;
}

.jur-tabs-bar .nav-link {
    border: none;
    border-radius: 0;
    padding: 16px 28px;
    color: var(--text-mid);
    font-size: 0.93rem;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all .2s;
}

.jur-tabs-bar .nav-link:hover {
    color: var(--primary-blue);
}

.jur-tabs-bar .nav-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    background: transparent;
}

.jur-tabs-bar .nav-link i {
    margin-right: 7px;
}

/* Tab content */
.jur-content {
    padding: 72px 0;
    background: var(--light-bg);
}

.jur-content .tab-content {
    min-height: 400px;
}

/* Intro box */
.jur-intro {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 28px 32px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.jur-intro-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.jur-intro h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.jur-intro p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

/* Section heading */
.jur-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

/* Principle cards */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.principle-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow .2s, transform .2s;
}

.principle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(38, 69, 150, .08);
}

.principle-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    background: rgba(38, 69, 150, .1);
    color: var(--primary-blue);
}

.principle-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.principle-card p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

/* Legislation boxes */
.legislation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.leg-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    border-top: 3px solid var(--primary-blue);
    transition: box-shadow .2s;
}

.leg-box:hover {
    box-shadow: 0 6px 24px rgba(38, 69, 150, .08);
}

.leg-box-year {
    display: inline-block;
    background: rgba(38, 69, 150, .08);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.leg-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.leg-box p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 12px;
}

.leg-box ul {
    padding-left: 16px;
    margin: 0;
}

.leg-box ul li {
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 4px;
}

/* EU hierarchy */
.eu-hierarchy {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 32px;
}

.eu-hierarchy h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.hierarchy-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.hierarchy-row:last-child {
    border-bottom: none;
}

.hierarchy-level {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hierarchy-row strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-navy);
    display: block;
    margin-bottom: 2px;
}

.hierarchy-row span {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.5;
}

/* UN principles grid */
.un-principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.un-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    transition: box-shadow .2s, transform .2s;
}

.un-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(38, 69, 150, .08);
}

.un-card-num {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(38, 69, 150, .12);
    line-height: 1;
    margin-bottom: 8px;
}

.un-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.un-card p {
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.jur-cta {
    background: #fff;
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .cta-btns {
        align-items: center;
    }
}

.cta-btns a.primary {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-navy);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.cta-btns a.primary:hover {
    background: var(--accent-gold-hover);
}

.cta-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.cta-btns a.secondary:hover {
    color: #fff;
}


/* ============================================================
   RESEARCH-POLICY PAGE STYLES
   ============================================================ */


/* Hero */
.research-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.research-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.research-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.research-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.research-hero h1 span {
    color: var(--accent-gold);
}

.research-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 680px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Filter bar */
.filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 64px;
    z-index: 50;
}

.filter-bar-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.search-wrap {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
}

.search-wrap input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--light-bg);
    outline: none;
    transition: border-color .2s;
    font-family: inherit;
}

.search-wrap input:focus {
    border-color: var(--primary-blue);
    background: #fff;
}

.search-wrap i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 14px;
}

.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    color: var(--text-mid);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

/* Documents */
.docs-section {
    padding: 72px 0;
    background: var(--light-bg);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.doc-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(38, 69, 150, .1);
}

.doc-type-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.badge-position {
    background: rgba(38, 69, 150, .1);
    color: var(--primary-blue);
}

.badge-regulatory {
    background: rgba(220, 38, 38, .08);
    color: #dc2626;
}

.badge-evidence {
    background: rgba(16, 163, 74, .08);
    color: #15803d;
}

.badge-report {
    background: rgba(234, 88, 12, .08);
    color: #c2410c;
}

.doc-card h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.doc-card p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 14px;
}

.doc-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.topic-tag {
    background: var(--light-bg);
    color: var(--text-mid);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
}

.doc-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.doc-meta i {
    margin-right: 4px;
}

.doc-finding {
    background: var(--light-bg);
    border-left: 3px solid var(--primary-blue);
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    font-size: 0.84rem;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.doc-finding.regulatory {
    border-color: #dc2626;
}

.doc-finding.recommendation {
    border-color: #15803d;
}

.doc-finding strong {
    display: block;
    margin-bottom: 3px;
    color: var(--primary-blue);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.doc-finding.regulatory strong {
    color: #dc2626;
}

.doc-finding.recommendation strong {
    color: #15803d;
}

.doc-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.doc-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity .2s;
}

.doc-download:hover {
    opacity: .88;
    color: #fff;
}

.doc-details-link {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    transition: color .2s;
}

.doc-details-link:hover {
    color: var(--primary-blue);
}

/* No results */
.no-results {
    display: none;
    text-align: center;
    padding: 60px 0;
}

.no-results i {
    font-size: 48px;
    color: var(--border);
    margin-bottom: 16px;
    display: block;
}

.no-results h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.no-results p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* CTA */
.research-cta {
    background: #fff;
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .cta-btns {
        align-items: center;
    }
}

.cta-btns a.primary {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-navy);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.cta-btns a.primary:hover {
    background: var(--accent-gold-hover);
}

.cta-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.cta-btns a.secondary:hover {
    color: #fff;
}


/* ============================================================
   CONSUMER-ISSUES PAGE STYLES
   ============================================================ */

/* Hero */
.issues-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.issues-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.issues-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.issues-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.issues-hero h1 span {
    color: var(--accent-gold);
}

.issues-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Issue index strip */
.issues-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 64px;
    z-index: 50;
}

.issues-nav-inner {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.issues-nav-inner a {
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    color: var(--text-mid);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

.issues-nav-inner a:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

/* Main issues section */
.issues-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.issue-block {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 40px;
    margin-bottom: 32px;
    scroll-margin-top: 120px;
}

.issue-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.issue-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 22px;
    flex-shrink: 0;
}

.issue-block-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0;
}

.issue-block p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.issue-block p:last-child {
    margin-bottom: 0;
}

.issue-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.issue-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-mid);
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
    line-height: 1.65;
}

.issue-list li:last-child {
    border-bottom: none;
}

.issue-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.issue-list li strong {
    color: var(--text-dark);
}

.sub-tag {
    display: inline-block;
    background: rgba(38, 69, 150, .07);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* CTA */
.issues-cta {
    background: #fff;
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .cta-btns {
        align-items: center;
    }
}

.cta-btns a.primary {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-navy);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.cta-btns a.primary:hover {
    background: var(--accent-gold-hover);
}

.cta-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.cta-btns a.secondary:hover {
    color: #fff;
}


/* ============================================================
   OUR-TEAM PAGE STYLES
   ============================================================ */

/* Hero */
.team-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.team-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.team-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.team-hero h1 span {
    color: var(--accent-gold);
}

.team-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Team members section */
.team-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.sec-center {
    text-align: center;
    margin-bottom: 52px;
}

.sec-center .sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.sec-center h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 14px;
}

.sec-center p.sub {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.97rem;
    line-height: 1.75;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(38, 69, 150, .12);
}

.team-card-header {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    padding: 36px 28px 28px;
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
    object-fit: cover;
    margin-bottom: 16px;
}

.team-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
    background: rgba(250, 241, 123, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent-gold);
    font-size: 36px;
    font-weight: 700;
}

.team-card-header h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    background: rgba(250, 241, 123, .15);
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 999px;
}

.team-card-body {
    padding: 24px 28px;
}

.team-card-body p {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* Services */
.services-section {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.service-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: background .2s;
}

.service-item:hover {
    background: rgba(255, 255, 255, .1);
}

.service-num {
    width: 36px;
    height: 36px;
    background: var(--accent-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.service-item h3 {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-item p {
    color: #94afd0;
    font-size: 0.84rem;
    line-height: 1.65;
    margin: 0;
}

/* CTA */
.team-cta {
    background: var(--light-bg);
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .cta-btns {
        align-items: center;
    }
}

.cta-btns a.primary {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-navy);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.cta-btns a.primary:hover {
    background: var(--accent-gold-hover);
}

.cta-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.cta-btns a.secondary:hover {
    color: #fff;
}


/* ============================================================
   ADVOCACY PAGE STYLES
   ============================================================ */


/* Hero */
.adv-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.adv-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.adv-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.adv-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.adv-hero h1 span {
    color: rgb(250, 241, 123);
}

.adv-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 620px;
    line-height: 1.8;
    margin: 0 auto;
}

/* What we advocate grid */
.adv-pillars {
    background: rgb(248 250 252);
    padding: 72px 0;
}

.sec-center {
    text-align: center;
}

.sec-center .sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #264596;
    margin-bottom: 12px;
}

.sec-center h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #0c1a3d;
    margin-bottom: 14px;
}

.sec-center p.sub {
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.96rem;
    line-height: 1.75;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.pillar-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 28px 22px;
    transition: box-shadow .2s, transform .2s;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(38, 69, 150, .1);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(250, 241, 123);
    font-size: 20px;
    margin-bottom: 16px;
}

.pillar-card h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #0c1a3d;
    margin-bottom: 8px;
}

.pillar-card p {
    font-size: 0.87rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Laws highlight */
.adv-laws {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    padding: 72px 0;
}

.laws-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

@media (max-width: 700px) {
    .laws-grid {
        grid-template-columns: 1fr;
    }
}

.law-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background .2s;
}

.law-card:hover {
    background: rgba(255, 255, 255, .1);
}

.law-num {
    width: 36px;
    height: 36px;
    background: rgb(250, 241, 123);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c1a3d;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.law-card h3 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.law-card p {
    color: #94afd0;
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 0;
}

.adv-laws .sec-label {
    color: rgb(250, 241, 123);
}

.adv-laws h2 {
    color: #fff;
}

.adv-laws p.sub {
    color: #94afd0;
}

/* Resource / PDF section */
.adv-resources {
    background: #fff;
    padding: 72px 0;
}

.resource-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 48px;
}

@media (max-width: 860px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }
}

.resource-meta-card {
    background: rgb(248 250 252);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 24px;
    position: sticky;
    top: 100px;
}

.resource-meta-card .doc-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(250, 241, 123);
    font-size: 24px;
    margin-bottom: 16px;
}

.resource-meta-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0c1a3d;
    margin-bottom: 8px;
}

.resource-meta-card .source-tag {
    display: inline-block;
    background: rgba(38, 69, 150, .08);
    color: #264596;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.resource-meta-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.resource-meta-card a.dl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 6px;
    text-decoration: none;
    width: 100%;
    transition: opacity .2s;
}

.resource-meta-card a.dl-btn:hover {
    opacity: .88;
}

.resource-meta-card .key-topics {
    margin-top: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.resource-meta-card .key-topics h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.resource-meta-card .topic-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    margin: 3px 2px;
}

.pdf-viewer-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(38, 69, 150, .07);
}

.pdf-viewer-wrap iframe {
    display: block;
    width: 100%;
    height: 680px;
    border: 0;
}

/* CTA */
.adv-cta {
    background: rgb(248 250 252);
    padding: 72px 0;
}

.adv-cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .adv-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.adv-cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.adv-cta-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.adv-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .adv-cta-btns {
        align-items: center;
    }
}

.adv-cta-btns a.primary {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.adv-cta-btns a.primary:hover {
    background: #e5bf20;
}

.adv-cta-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.adv-cta-btns a.secondary:hover {
    color: #fff;
}


/* ============================================================
   ARCHIVE PAGE STYLES
   ============================================================ */

/* Hero */
.arch-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.arch-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.arch-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.arch-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.arch-hero h1 span {
    color: rgb(250, 241, 123);
}

.arch-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Issue grid */
.arch-section {
    background: rgb(248 250 252);
    padding: 72px 0;
}

.sec-center {
    text-align: center;
}

.sec-center .sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #264596;
    margin-bottom: 12px;
}

.sec-center h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #0c1a3d;
    margin-bottom: 12px;
}

.sec-center p.sub {
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.96rem;
    line-height: 1.75;
}

.issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.issue-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.issue-card:hover {
    box-shadow: 0 8px 32px rgba(38, 69, 150, .12);
    transform: translateY(-4px);
}

.issue-card-header {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.issue-badge {
    width: 44px;
    height: 44px;
    background: rgb(250, 241, 123);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c1a3d;
    font-size: 20px;
    flex-shrink: 0;
}

.issue-card-header h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.issue-card-header .issue-num {
    color: rgb(250, 241, 123);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.issue-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.btn-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: 1.5px solid #264596;
    color: #264596;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}

.btn-preview:hover,
.btn-preview.open {
    background: #264596;
    color: #fff;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

.btn-download:hover {
    background: #e5bf20;
    color: #0c1a3d;
}

.issue-pdf-wrap {
    display: none;
    padding: 16px;
    background: #f8fafc;
}

.issue-pdf-wrap.open {
    display: block;
}

.issue-pdf-wrap iframe {
    width: 100%;
    height: 480px;
    border: 0;
    border-radius: 6px;
    display: block;
}

/* CTA */
.arch-cta {
    background: #fff;
    padding: 72px 0;
}

.arch-cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .arch-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.arch-cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.arch-cta-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.arch-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .arch-cta-btns {
        align-items: center;
    }
}

.arch-cta-btns a.primary {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.arch-cta-btns a.primary:hover {
    background: #e5bf20;
}

.arch-cta-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.arch-cta-btns a.secondary:hover {
    color: #fff;
}




/* ============================================================= */
/*  PAGE-SPECIFIC STYLES (extracted from inline <style> blocks)   */
/* ============================================================= */

/* ----- ABOUT ----- */
.about-hero-new {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-new::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-new .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.about-hero-new h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-hero-new h1 span {
    color: rgb(250, 241, 123);
}

.about-hero-new .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.8;
    margin: 0 auto 32px;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.about-hero-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: rgb(250, 241, 123);
    display: block;
    line-height: 1;
}

.about-hero-stat .lbl {
    font-size: 12px;
    color: #94afd0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-split {
    padding: 80px 0;
    background: #fff;
}

.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-split-grid {
        grid-template-columns: 1fr;
    }
}

.about-split-text .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 12px;
}

.about-split-text p {
    color: #475569;
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-split-text .join-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 8px;
    transition: background .2s;
}

.about-split-text .join-link:hover {
    background: #e5bf20;
}

.ceo-card {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}

.ceo-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgb(250, 241, 123);
    margin-bottom: 20px;
}

.ceo-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ceo-card .role {
    color: rgb(250, 241, 123);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

.ceo-card .ceo-bio {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.about-values {
    background: rgb(248 250 252);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(38, 69, 150, .1);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(250, 241, 123);
    font-size: 20px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0c1a3d;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}



.leadership-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 860px) {
    .leadership-inner {
        grid-template-columns: 1fr;
    }
}

.leadership-photo-block {
    position: sticky;
    top: 100px;
}

.leadership-photo-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}

.leadership-photo-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgb(250, 241, 123);
    margin-bottom: 20px;
}

.leadership-photo-card h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.leadership-photo-card .role-tag {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.leadership-photo-card p {
    color: #94afd0;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.leadership-content .section-label {
    color: rgb(250, 241, 123);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.leadership-content h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.leadership-content .lead-bio {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.achievement-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: background .2s;
}

.achievement-card:hover {
    background: rgba(255, 255, 255, .09);
}

.achievement-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.achievement-icon {
    width: 44px;
    height: 44px;
    background: rgb(250, 241, 123);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c1a3d;
    font-size: 18px;
    flex-shrink: 0;
}

.achievement-card h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.achievement-card .score-tag {
    display: inline-block;
    background: rgba(250, 241, 123, .15);
    border: 1px solid rgba(250, 241, 123, .3);
    color: rgb(250, 241, 123);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.achievement-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.achievement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgb(250, 241, 123);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap .2s;
}

.achievement-link:hover {
    gap: 10px;
    color: rgb(250, 241, 123);
}

.testimonials-section {
    background: #fff;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgb(248 250 252);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(38, 69, 150, .1);
}

.testimonial-card .quote-mark {
    font-size: 48px;
    line-height: 1;
    color: rgb(250, 241, 123);
    font-family: Georgia, serif;
    margin-bottom: 8px;
    display: block;
}

.testimonial-card p {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(250, 241, 123);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #0c1a3d;
}

.author-location {
    font-size: 12px;
    color: #94a3b8;
}

.stars {
    color: rgb(250, 241, 123);
    font-size: 12px;
    margin-bottom: 4px;
}

.about-cta {
    background: rgb(248 250 252);
    padding: 80px 0;
}

.about-cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .about-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.about-cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}


.about-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .about-cta-btns {
        align-items: center;
    }
}

.about-cta-btns a.primary {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.about-cta-btns a.primary:hover {
    background: #e5bf20;
}

.about-cta-btns a.secondary {
    color: var(--text-light);
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.about-cta-btns a.secondary:hover {
    color: #fff;
}

.section-center {
    text-align: center;
}

.section-center .sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 12px;
}

.section-center h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-center p.sub {
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
    font-size: 0.97rem;
    line-height: 1.75;
}

/* ----- ADVOCACY ----- */
/* Hero */
.adv-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.adv-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.adv-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.adv-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.adv-hero h1 span {
    color: rgb(250, 241, 123);
}

.adv-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 620px;
    line-height: 1.8;
    margin: 0 auto;
}

/* What we advocate grid */
.adv-pillars {
    background: rgb(248 250 252);
    padding: 72px 0;
}

.sec-center {
    text-align: center;
}

.sec-center .sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 12px;
}

.sec-center h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 14px;
}

.sec-center p.sub {
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.96rem;
    line-height: 1.75;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.pillar-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 28px 22px;
    transition: box-shadow .2s, transform .2s;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(38, 69, 150, .1);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(250, 241, 123);
    font-size: 20px;
    margin-bottom: 16px;
}

.pillar-card h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #0c1a3d;
    margin-bottom: 8px;
}

.pillar-card p {
    font-size: 0.87rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Laws highlight */
.adv-laws {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    padding: 72px 0;
}

.laws-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

@media (max-width: 700px) {
    .laws-grid {
        grid-template-columns: 1fr;
    }
}

.law-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background .2s;
}

.law-card:hover {
    background: rgba(255, 255, 255, .1);
}

.law-num {
    width: 36px;
    height: 36px;
    background: rgb(250, 241, 123);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c1a3d;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.law-card h3 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.law-card p {
    color: #94afd0;
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 0;
}

.adv-laws .sec-label {
    color: rgb(250, 241, 123);
}

.adv-laws h2 {
    color: #fff;
}

.adv-laws p.sub {
    color: #94afd0;
}

/* Resource / PDF section */
.adv-resources {
    background: #fff;
    padding: 72px 0;
}

.resource-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 48px;
}

@media (max-width: 860px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }
}

.resource-meta-card {
    background: rgb(248 250 252);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 24px;
    position: sticky;
    top: 100px;
}

.resource-meta-card .doc-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(250, 241, 123);
    font-size: 24px;
    margin-bottom: 16px;
}

.resource-meta-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0c1a3d;
    margin-bottom: 8px;
}

.resource-meta-card .source-tag {
    display: inline-block;
    background: rgba(38, 69, 150, .08);
    color: #264596;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.resource-meta-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.resource-meta-card a.dl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 6px;
    text-decoration: none;
    width: 100%;
    transition: opacity .2s;
}

.resource-meta-card a.dl-btn:hover {
    opacity: .88;
}

.resource-meta-card .key-topics {
    margin-top: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.resource-meta-card .key-topics h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.resource-meta-card .topic-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    margin: 3px 2px;
}

.pdf-viewer-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(38, 69, 150, .07);
}

.pdf-viewer-wrap iframe {
    display: block;
    width: 100%;
    height: 680px;
    border: 0;
}

/* CTA */
.adv-cta {
    background: rgb(248 250 252);
    padding: 72px 0;
}

.adv-cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .adv-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.adv-cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.adv-cta-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.adv-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .adv-cta-btns {
        align-items: center;
    }
}

.adv-cta-btns a.primary {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.adv-cta-btns a.primary:hover {
    background: #e5bf20;
}

.adv-cta-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.adv-cta-btns a.secondary:hover {
    color: #fff;
}

/* ----- ARCHIVE ----- */
/* Hero */
.arch-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.arch-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.arch-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.arch-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.arch-hero h1 span {
    color: rgb(250, 241, 123);
}

.arch-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Issue grid */
.arch-section {
    background: rgb(248 250 252);
    padding: 72px 0;
}





.issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.issue-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.issue-card:hover {
    box-shadow: 0 8px 32px rgba(38, 69, 150, .12);
    transform: translateY(-4px);
}

.issue-card-header {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.issue-badge {
    width: 44px;
    height: 44px;
    background: rgb(250, 241, 123);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c1a3d;
    font-size: 20px;
    flex-shrink: 0;
}

.issue-card-header h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.issue-card-header .issue-num {
    color: rgb(250, 241, 123);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.issue-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.btn-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: 1.5px solid #264596;
    color: #264596;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}

.btn-preview:hover,
.btn-preview.open {
    background: #264596;
    color: #fff;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

.btn-download:hover {
    background: #e5bf20;
    color: #0c1a3d;
}

.issue-pdf-wrap {
    display: none;
    padding: 16px;
    background: #f8fafc;
}

.issue-pdf-wrap.open {
    display: block;
}

.issue-pdf-wrap iframe {
    width: 100%;
    height: 480px;
    border: 0;
    border-radius: 6px;
    display: block;
}

/* CTA */
.arch-cta {
    background: #fff;
    padding: 72px 0;
}

.arch-cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .arch-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.arch-cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.arch-cta-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.arch-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .arch-cta-btns {
        align-items: center;
    }
}

.arch-cta-btns a.primary {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.arch-cta-btns a.primary:hover {
    background: #e5bf20;
}

.arch-cta-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.arch-cta-btns a.secondary:hover {
    color: #fff;
}

/* ----- CONSUMER-ISSUES ----- */
/* Hero */
.issues-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.issues-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.issues-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.issues-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.issues-hero h1 span {
    color: var(--accent-gold);
}

.issues-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Issue index strip */
.issues-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 64px;
    z-index: 50;
}

.issues-nav-inner {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.issues-nav-inner a {
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    color: var(--text-mid);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

.issues-nav-inner a:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

/* Main issues section */
.issues-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.issue-block {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 40px;
    margin-bottom: 32px;
    scroll-margin-top: 120px;
}

.issue-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.issue-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 22px;
    flex-shrink: 0;
}

.issue-block-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0;
}

.issue-block p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.issue-block p:last-child {
    margin-bottom: 0;
}

.issue-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.issue-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-mid);
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
    line-height: 1.65;
}

.issue-list li:last-child {
    border-bottom: none;
}

.issue-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.issue-list li strong {
    color: var(--text-dark);
}

.sub-tag {
    display: inline-block;
    background: rgba(38, 69, 150, .07);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* CTA */
.issues-cta {
    background: #fff;
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .cta-btns {
        align-items: center;
    }
}

.cta-btns a.primary {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-navy);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.cta-btns a.primary:hover {
    background: var(--accent-gold-hover);
}

.cta-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.cta-btns a.secondary:hover {
    color: #fff;
}


/* ----- FAQ ----- */
/* â”€â”€ FAQ Hero â”€â”€ */
.faq-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.faq-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.faq-hero h1 span {
    color: rgb(250, 241, 123);
}

.faq-hero p {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.faq-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.faq-hero-stat {
    text-align: center;
}

.faq-hero-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: rgb(250, 241, 123);
    display: block;
}

.faq-hero-stat .lbl {
    font-size: 12px;
    color: #94afd0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* â”€â”€ FAQ Categories bar â”€â”€ */
.faq-cats {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 18px 0;
    position: sticky;
    top: 64px;
    z-index: 50;
}

.faq-cats-inner {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-cat-btn {
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
    background: #264596;
    color: #fff;
    border-color: #264596;
}

/* â”€â”€ FAQ Section â”€â”€ */
.faq-section {
    padding: 72px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        display: none;
    }
}

/* Sidebar */
.faq-sidebar {
    position: sticky;
    top: 120px;
}

.faq-sidebar-box {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 24px;
}

.faq-sidebar-box h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #264596;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(250, 241, 123);
}

.faq-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    transition: color .2s;
}

.faq-sidebar-nav a:last-child {
    border-bottom: none;
}

.faq-sidebar-nav a:hover {
    color: #264596;
}

.faq-sidebar-nav a .q-num {
    width: 22px;
    height: 22px;
    background: #264596;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-cta-box {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
    text-align: center;
}

.faq-cta-box p {
    color: #c9d9ee;
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.faq-cta-box a {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
}

.faq-cta-box a:hover {
    background: #e5bf20;
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow .2s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(38, 69, 150, .08);
}

.faq-item.open {
    border-color: #264596;
    box-shadow: 0 4px 20px rgba(38, 69, 150, .12);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-q-num {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    color: #264596;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    transition: all .2s;
}

.faq-item.open .faq-q-num {
    background: #264596;
    color: #fff;
}

.faq-q-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border: 1.5px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s;
    color: #264596;
}

.faq-item.open .faq-toggle {
    background: rgb(250, 241, 123);
    border-color: rgb(250, 241, 123);
    color: #0c1a3d;
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px 72px;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 12px;
}

.faq-answer ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 8px;
}

.faq-answer ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: rgb(250, 241, 123);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.faq-answer ol {
    padding-left: 0;
    counter-reset: faq-ol;
    margin: 8px 0 12px;
}

.faq-answer ol li {
    counter-increment: faq-ol;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-answer ol li::before {
    content: counter(faq-ol);
    width: 24px;
    height: 24px;
    background: #264596;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer .sub-list {
    list-style: none;
    padding-left: 20px;
    margin: 6px 0 8px;
}

.faq-answer .sub-list li {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.faq-answer .sub-list li::before {
    content: 'â€º';
    color: #264596;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0;
    flex-shrink: 0;
}

.faq-answer .law-item {
    background: #f8fafc;
    border-left: 3px solid #264596;
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.65;
}

.faq-answer .law-item strong {
    color: #264596;
    display: block;
    margin-bottom: 2px;
}

.faq-answer .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin: 12px 0;
}

.faq-answer .price-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
}

.faq-answer .price-card .price-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.faq-answer .price-card .price-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #264596;
    line-height: 1;
}

.faq-answer .price-card .price-period {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}

.faq-answer .highlight-box {
    background: linear-gradient(135deg, rgba(38, 69, 150, .06), rgba(38, 69, 150, .03));
    border: 1px solid rgba(38, 69, 150, .15);
    border-radius: 8px;
    padding: 14px 16px;
    margin: 12px 0;
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.7;
}

.faq-answer .highlight-box strong {
    color: #264596;
}

/* â”€â”€ Pricing callout â”€â”€ */
.faq-pricing-section {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    padding: 72px 0;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-intro .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.pricing-intro h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
}

.pricing-intro p {
    color: #94afd0;
    margin-top: 12px;
    max-width: 540px;
    margin-inline: auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.pricing-card-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: transform .2s, background .2s;
}

.pricing-card-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .1);
}

.pricing-card-item.featured {
    border-color: rgb(250, 241, 123);
    background: rgba(250, 241, 123, .08);
}

.pricing-card-item .p-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94afd0;
    margin-bottom: 10px;
}

.pricing-card-item .p-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgb(250, 241, 123);
    line-height: 1;
}

.pricing-card-item .p-period {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.pricing-card-item.featured .p-label {
    color: rgb(250, 241, 123);
}

.pricing-note {
    text-align: center;
    color: #94afd0;
    font-size: 0.9rem;
    max-width: 560px;
    margin: 0 auto 32px;
}

.pricing-note strong {
    color: rgb(250, 241, 123);
}

.pricing-cta {
    text-align: center;
}

.pricing-cta a {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s;
}

.pricing-cta a:hover {
    background: #e5bf20;
}

/* â”€â”€ CTA Banner â”€â”€ */
.faq-cta-banner {
    background: #fff;
    padding: 72px 0;
}

.cta-banner-inner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    border-radius: 16px;
    padding: 56px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 640px) {
    .cta-banner-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-banner-inner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-banner-inner p {
    color: #94afd0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.cta-banner-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 640px) {
    .cta-banner-btns {
        align-items: center;
    }
}

.cta-banner-btns a.primary {
    display: inline-block;
    background: rgb(250, 241, 123);
    color: #0c1a3d;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s;
}

.cta-banner-btns a.primary:hover {
    background: #e5bf20;
}

.cta-banner-btns a.secondary {
    color: #94afd0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: color .2s;
}

.cta-banner-btns a.secondary:hover {
    color: #fff;
}

/* ----- JURISDICTION-GUIDES ----- */
/* Hero */
.jurisdictions-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jurisdictions-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.jurisdictions-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.jurisdictions-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.jurisdictions-hero h1 span {
    color: var(--accent-gold);
}

.jurisdictions-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 680px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Tab nav */
.jur-tabs-bar {
    background: #fff;
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 64px;
    z-index: 50;
}

.jur-tabs-bar .nav-tabs {
    border: none;
    justify-content: center;
    gap: 4px;
}

.jur-tabs-bar .nav-link {
    border: none;
    border-radius: 0;
    padding: 16px 28px;
    color: var(--text-mid);
    font-size: 0.93rem;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all .2s;
}

.jur-tabs-bar .nav-link:hover {
    color: var(--primary-blue);
}

.jur-tabs-bar .nav-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    background: transparent;
}

.jur-tabs-bar .nav-link i {
    margin-right: 7px;
}

/* Tab content */
.jur-content {
    padding: 72px 0;
    background: var(--light-bg);
}

.jur-content .tab-content {
    min-height: 400px;
}

/* Intro box */
.jur-intro {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 28px 32px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.jur-intro-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.jur-intro h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.jur-intro p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

/* Section heading */
.jur-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

/* Principle cards */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.principle-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow .2s, transform .2s;
}

.principle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(38, 69, 150, .08);
}

.principle-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    background: rgba(38, 69, 150, .1);
    color: var(--primary-blue);
}

.principle-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.principle-card p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

/* Legislation boxes */
.legislation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.leg-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    border-top: 3px solid var(--primary-blue);
    transition: box-shadow .2s;
}

.leg-box:hover {
    box-shadow: 0 6px 24px rgba(38, 69, 150, .08);
}

.leg-box-year {
    display: inline-block;
    background: rgba(38, 69, 150, .08);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.leg-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.leg-box p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 12px;
}

.leg-box ul {
    padding-left: 16px;
    margin: 0;
}

.leg-box ul li {
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 4px;
}

/* EU hierarchy */
.eu-hierarchy {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 32px;
}

.eu-hierarchy h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.hierarchy-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.hierarchy-row:last-child {
    border-bottom: none;
}

.hierarchy-level {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hierarchy-row strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-navy);
    display: block;
    margin-bottom: 2px;
}

.hierarchy-row span {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.5;
}

/* UN principles grid */
.un-principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.un-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    transition: box-shadow .2s, transform .2s;
}

.un-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(38, 69, 150, .08);
}

.un-card-num {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(38, 69, 150, .12);
    line-height: 1;
    margin-bottom: 8px;
}

.un-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.un-card p {
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.jur-cta {
    background: #fff;
    padding: 80px 0;
}


@media (max-width: 640px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}




@media (max-width: 640px) {
    .cta-btns {
        align-items: center;
    }
}





/* ----- OUR-TEAM ----- */
/* Hero */
.team-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.team-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.team-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.team-hero h1 span {
    color: var(--accent-gold);
}

.team-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Team members section */
.team-section {
    background: var(--light-bg);
    padding: 80px 0;
}





.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(38, 69, 150, .12);
}

.team-card-header {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    padding: 36px 28px 28px;
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
    object-fit: cover;
    margin-bottom: 16px;
}

.team-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
    background: rgba(250, 241, 123, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent-gold);
    font-size: 36px;
    font-weight: 700;
}

.team-card-header h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    background: rgba(250, 241, 123, .15);
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 999px;
}

.team-card-body {
    padding: 24px 28px;
}

.team-card-body p {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* Services */
.services-section {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.service-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: background .2s;
}

.service-item:hover {
    background: rgba(255, 255, 255, .1);
}

.service-num {
    width: 36px;
    height: 36px;
    background: var(--accent-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.service-item h3 {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-item p {
    color: #94afd0;
    font-size: 0.84rem;
    line-height: 1.65;
    margin: 0;
}

/* CTA */
.team-cta {
    background: var(--light-bg);
    padding: 80px 0;
}


@media (max-width: 640px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}




@media (max-width: 640px) {
    .cta-btns {
        align-items: center;
    }
}





/* ----- PRICING ----- */
/* Hero */
.pricing-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.pricing-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.pricing-hero h1 span {
    color: var(--accent-gold);
}

.pricing-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Plans section */
.plans-section {
    background: var(--light-bg);
    padding: 80px 0;
}





.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.plan-card {
    background: rgb(248 250 252);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(38, 69, 150, .12);
}

.plan-card.featured {
    background-color: var(--primary-blue) !important;
    box-shadow: 0 8px 32px rgba(38, 69, 150, .14);
}

.plan-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: black;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 999px;
}

.plan-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.plan-card.featured .plan-name {
    color: white;
}

.plan-price-row {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.plan-card.featured .plan-price {
    color: var(--accent-gold);
}

.plan-price.poa {
    font-size: 2rem;
}

.plan-period {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.plan-card.featured .plan-period {
    color: #fff;
}

.plan-desc {
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--text-light);
}

.plan-card.featured .plan-desc {
    color: #fff;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-mid);
    padding: 7px 0;
    border-bottom: 1px solid #f8fafc;
}

.plan-card.featured .plan-features li {
    color: #e0e7ff;
    border-color: rgba(224, 231, 255, .3);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #16a34a;
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

.plan-card.featured .plan-features li i {
    color: #86efac;
}

.plan-btn {
    display: block;
    text-align: center;
    background: var(--primary-blue);
    border: 1.5px solid var(--border);
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all .2s;
}

.plan-card.featured .plan-btn {
    background: var(--accent-gold) !important;
    color: var(--primary-blue);
    border-color: #fff;
}

.plan-btn:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}




/* Success fee */
.success-section {
    background: transparent;
    padding: 72px 0;
}

.success-box {
    max-width: 1080px;
    margin: 0 auto;
    background: var(--primary-blue);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 40px 48px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    color: var(--text-light);
}

@media (max-width: 640px) {
    .success-box {
        flex-direction: column;
        padding: 28px 24px;
    }
}

.success-icon {
    width: 56px;
    height: 56px;
    background: rgba(250, 241, 123, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 22px;
    flex-shrink: 0;
}

.success-box h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.success-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

.success-box strong {
    color: var(--accent-gold);
}

/* Discounts */
.discounts-section {
    background: #fff;
    padding: 80px 0;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 640px) {
    .discounts-grid {
        grid-template-columns: 1fr;
    }
}

.discount-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
}

.discount-tier {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.tier-bronze {
    background: rgba(205, 127, 50, .12);
    color: #8B5E3C;
}

.tier-silver {
    background: rgba(192, 192, 192, .2);
    color: #475569;
}

.tier-gold {
    background: rgba(250, 241, 123, .2);
    color: #7a6910;
}

.discount-pct {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1;
    margin-bottom: 4px;
}

.discount-price {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA */
.pricing-cta {
    background: var(--light-bg);
    padding: 80px 0;
}


@media (max-width: 640px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}




@media (max-width: 640px) {
    .cta-btns {
        align-items: center;
    }
}





/* ----- RESEARCH-POLICY ----- */
/* Hero */
.research-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.research-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.research-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.research-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.research-hero h1 span {
    color: var(--accent-gold);
}

.research-hero .hero-sub {
    color: #c9d9ee;
    font-size: 1.05rem;
    max-width: 680px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Filter bar */
.filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 64px;
    z-index: 50;
}

.filter-bar-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.search-wrap {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
}

.search-wrap input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--light-bg);
    outline: none;
    transition: border-color .2s;
    font-family: inherit;
}

.search-wrap input:focus {
    border-color: var(--primary-blue);
    background: #fff;
}

.search-wrap i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 14px;
}

.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    color: var(--text-mid);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

/* Documents */
.docs-section {
    padding: 72px 0;
    background: var(--light-bg);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.doc-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(38, 69, 150, .1);
}

.doc-type-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.badge-position {
    background: rgba(38, 69, 150, .1);
    color: var(--primary-blue);
}

.badge-regulatory {
    background: rgba(220, 38, 38, .08);
    color: #dc2626;
}

.badge-evidence {
    background: rgba(16, 163, 74, .08);
    color: #15803d;
}

.badge-report {
    background: rgba(234, 88, 12, .08);
    color: #c2410c;
}

.doc-card h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.doc-card p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 14px;
}

.doc-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.topic-tag {
    background: var(--light-bg);
    color: var(--text-mid);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
}

.doc-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.doc-meta i {
    margin-right: 4px;
}

.doc-finding {
    background: var(--light-bg);
    border-left: 3px solid var(--primary-blue);
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    font-size: 0.84rem;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.doc-finding.regulatory {
    border-color: #dc2626;
}

.doc-finding.recommendation {
    border-color: #15803d;
}

.doc-finding strong {
    display: block;
    margin-bottom: 3px;
    color: var(--primary-blue);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.doc-finding.regulatory strong {
    color: #dc2626;
}

.doc-finding.recommendation strong {
    color: #15803d;
}

.doc-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.doc-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity .2s;
}

.doc-download:hover {
    opacity: .88;
    color: #fff;
}

.doc-details-link {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    transition: color .2s;
}

.doc-details-link:hover {
    color: var(--primary-blue);
}

/* No results */
.no-results {
    display: none;
    text-align: center;
    padding: 60px 0;
}

.no-results i {
    font-size: 48px;
    color: var(--border);
    margin-bottom: 16px;
    display: block;
}

.no-results h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.no-results p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* CTA */
.research-cta {
    background: #fff;
    padding: 80px 0;
}


@media (max-width: 640px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}




@media (max-width: 640px) {
    .cta-btns {
        align-items: center;
    }
}





/* ----- WHY-CHOOSE-US ----- */
/* Hero */
.wcu-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.wcu-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
}

.wcu-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.wcu-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.wcu-hero h1 span {
    color: var(--accent-gold);
}

.wcu-hero .hero-sub {
    font-size: 1.05rem;
    color: #c9d9ee;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Stats bar */
.stat-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-lbl {
    font-size: .8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    height: 40px;
    margin: auto;
}

/* Pillars */
.pillars-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header .sec-label {
    display: inline-block;
    color: #111827;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 4px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--secondary-blue);
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-mid);
    max-width: 620px;
    margin: 0 auto;
    font-size: .97rem;
    line-height: 1.7;
}






/* Action strip */
.action-strip {
    background: linear-gradient(135deg, #0c1a3d, var(--primary-blue));
    padding: 60px 0;
}

.action-strip p {
    color: #c9d9ee;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.action-strip h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.action-strip h2 span {
    color: var(--accent-gold);
}

/* Services list */
.services-section {
    padding: 80px 0;
    background: #fff;
}




.service-item h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 4px;
}


/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
}

.testi-card::before {
    content: '\201C';
    font-size: 5rem;
    line-height: 1;
    color: rgba(38, 69, 150, .1);
    position: absolute;
    top: 12px;
    left: 20px;
    font-family: Georgia, serif;
}

.testi-card blockquote {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 0 0 20px;
    padding-top: 30px;
}

.testi-card .testi-name {
    font-weight: 700;
    color: var(--secondary-blue);
    font-size: .88rem;
}

.testi-card .testi-location {
    font-size: .78rem;
    color: var(--text-light);
}

.testi-stars {
    color: #f59e0b;
    font-size: .85rem;
    margin-bottom: 8px;
}

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, #264596, var(--primary-blue));
    padding: 72px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.cta-banner p {
    color: #b8cde6;
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}



.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 11px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: border-color .2s, background .2s;
    display: inline-block;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .07);
    color: #fff;
}


/* ----- BLOG/INDEX ----- */
/* Hero */
.blog-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
}

.blog-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.blog-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.blog-hero h1 span {
    color: var(--accent-gold);
}

.blog-hero .hero-sub {
    font-size: 1.05rem;
    color: #c9d9ee;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Posts grid */
.posts-section {
    padding: 72px 0;
    background: var(--light-bg);
}




.post-card {
    background-color: rgb(248 250 252) !important;
    border: 1px solid rgb(248 250 252);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(22, 42, 92, .11);
}

.post-img {
    width: 100%;
    height: 200px;
    background: #000032;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.post-img .post-icon {
    font-size: 3rem;
    color: rgba(250, 241, 123, 0.6);
}

.post-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-date {
    font-size: .75rem;
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-blue);
    line-height: 1.45;
    margin-bottom: 12px;
}

.post-card p {
    font-size: .85rem;
    color: var(--text-mid);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-blue);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    align-self: flex-start;
    transition: background .2s, transform .15s;
}

.post-card .read-more:hover {
    background: var(--secondary-blue);
    transform: translateX(2px);
    color: #fff;
}

/* Category badge */
.cat-pill {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: none;
}

.cat-travel {
    background: rgba(38, 69, 150, .1);
    color: var(--primary-blue);
}

.cat-finance {
    background: rgba(245, 158, 11, .12);
    color: #92400e;
}

.cat-tech {
    background: rgba(16, 185, 129, .1);
    color: #065f46;
}

.cat-water {
    background: rgba(14, 165, 233, .1);
    color: #0369a1;
}

.cat-health {
    background: rgba(239, 68, 68, .1);
    color: #991b1b;
}

.cat-consumer {
    background: rgba(139, 92, 246, .1);
    color: #6d28d9;
}

.cat-scam {
    background: rgba(249, 115, 22, .12);
    color: #9a3412;
}







/* ----- NEWS/INDEX ----- */
/* Hero */
.news-hero {
    background-color: var(--primary-blue);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(38, 69, 150, 0.35) 0%, transparent 70%);
    border-radius: 50%;
}

.news-hero .sec-label {
    display: inline-block;
    background: rgba(250, 241, 123, 0.15);
    color: var(--accent-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(250, 241, 123, 0.3);
    margin-bottom: 20px;
}

.news-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.news-hero h1 span {
    color: var(--accent-gold);
}

.news-hero .hero-sub {
    font-size: 1.05rem;
    color: #c9d9ee;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}













}






.cat-alert {
    background: rgba(239, 68, 68, .1);
    color: #991b1b;
}

.cat-global {
    background: rgba(16, 185, 129, .1);
    color: #065f46;
}