@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url('../fonts/figtree.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --primary-blue: #183888;
    --primary-blue-darker: #022B6F;
    --secondary-blue: #095bc6;
    --accent-yellow: #FEC538;
    --btn-yellow-gradient: linear-gradient(135deg, #FFD773 0%, #FEC538 100%);
    --primary-gradient: radial-gradient(circle at top left, #00458C 0%, #002654 70%, #00458C 100%);
    --secondary-gradient: linear-gradient(135deg, #00458C 0%, #002654 50%, #00458C 100%);
    --secondary-header-gradient: linear-gradient(135deg, #00458C 0%, #002654 50%, #00458C 100%);
    --secondary-footer-gradient: linear-gradient(135deg, #0256aa 0%, #002654 100%);
    --cta-green: #679934;
    --purple: #7D59BB;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --bg-light: #F9FAFB;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}



html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* ul {
    list-style: none;
} */

section {
    scroll-margin-top: 100px;
}

.container {
    max-width: var(--container-width);
    /* display: flex; */
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-chevron {
    width: 20px;
    height: auto;
    vertical-align: middle;
    margin-left: 8px;
    filter: brightness(0) invert(1);
}

.btn-yellow {
    background: var(--btn-yellow-gradient);
    color: var(--primary-blue) !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 214, 0, 0.3);
}

.btn-yellow-secondary {
    background: var(--btn-yellow-gradient);
    color: white !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.btn-yellow-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 214, 0, 0.3);
}

.btn-nav {
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-size: 1.125rem !important;
    color: var(--primary-blue) !important;
}

.btn-green {
    background-color: var(--cta-green);
    color: white !important;
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(103, 153, 52, 0.3);
}

.btn-chevron {
    width: 20px;
    height: auto;
    vertical-align: middle;
    margin-left: 8px;
    filter: brightness(0) invert(1);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

header.scrolled {
    /* background: rgba(0, 38, 84, 0.98); */
    background: var(--secondary-header-gradient);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.header-block-new {
    padding-bottom: 13px;
}

/* Admin Bar Adjustment */
body.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar header {
        top: 46px;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
    position: relative;
}


.logo img {
    height: 76px;
    padding: 5px;
    /* filter: drop-shadow(0 0 5px rgba(255, 255, 255, .3)); */
    position: relative;
    z-index: 2;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.125rem;
    transition: var(--transition);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-links li a:hover {
    color: var(--accent-yellow);
    background: rgba(255, 255, 255, 0.1);
}

.nav-links li.current-menu-item a {
    color: var(--accent-yellow);
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: var(--primary-gradient);
    min-height: 100vh;
    padding: 100px 0 0;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-heart {
    width: 60px;
    height: auto;
}

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

.hero-text {
    align-self: center;
    padding-bottom: 60px;
    position: relative;
}

.hero-title {
    font-size: 3.875rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 25px;
    position: relative;
}

.hero-title br {
    display: block;
    content: "";
    margin-top: 5px;
}

.highlight-yellow {
    color: var(--accent-yellow);
    position: relative;
}

.decorative-stroke {
    position: absolute;
    bottom: 20px;
    left: 380px;
    width: 100px;
    height: 8px;
    background: var(--accent-yellow);
    clip-path: polygon(0% 40%, 100% 0%, 95% 100%, 0% 60%);
    transform: rotate(-2deg);
}

.hero-heart-large {
    position: absolute;
    right: 50px;
    bottom: 35px;
    max-width: 180px;
    transform: rotate(-3deg);
    height: auto;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-video {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    transition: var(--transition);
}

.btn-video:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-video img {
    width: 24px;
    height: 24px;
}

.hero-cta-btn {
    font-size: 1.125rem !important;
    padding: 14px 40px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: var(--primary-blue) !important;
}

.hero-cta-arrow {
    width: 20px !important;
    height: auto !important;
}

.hero-trust {
    display: flex;
    gap: 35px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
}

.trust-item img {
    width: 42px;
    height: 42px;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 1.0625rem;
    font-weight: 700;
    display: block;
}

.trust-text span {
    font-size: 0.8125rem;
    opacity: 0.75;
    font-weight: 400;
}

.hero-tagline {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 2.475rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.hero-tagline span {
    color: var(--accent-yellow);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    display: block;
    position: relative;
    z-index: 2;
}

.hero-image .decoration {
    position: absolute;
    z-index: 1;
}

.text-highlight {
    color: var(--purple);
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    header {
        background: #002654 !important;
        padding: 15px 0 !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    nav {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 15px;
    }

    .logo img {
        height: 50px;
    }

    .btn-nav {
        display: block !important;
        padding: 10px 20px !important;
        font-size: 1.05rem !important;
    }

    .hero {
        padding: 160px 0 60px !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .nav-links {
        display: flex !important;
        width: 100%;
        order: 3;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 10px 15px;
        margin-top: 10px;
        padding: 0 5px;
    }

    .nav-links a {
        font-size: 0.97rem;
    }

    .nav-links a[href="#home"] {
        display: none;
    }

    .hero-heart-large {
        right: -10px;
        bottom: 25px;
        max-width: 180px;
        height: auto;
        width: 68px;
    }

    .hero-tagline {
        display: block;
        font-size: 1.73rem;
        margin-top: 30px;
    }

    .hero-image {
        display: none;
    }

    .step-arrow {
        display: none;
    }

    .step {
        border: 2px solid #E5EDFF;
        border-radius: 30px;
        padding: 40px 20px;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        background: white;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.625rem !important;
    color: var(--primary-blue) !important;
    margin-bottom: 20px !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3.125rem;
    margin-bottom: 20px;
}

.feature-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.feature-card p {
    font-size: 0.9375rem;
    color: #666;
}

/* Process Section */
.process {
    padding: 100px 0;
    text-align: center;
    background: #F8FAFC;
}

.process h2 {
    font-size: 2.625rem;
    color: var(--primary-blue);
}

.process h2 span {
    color: #8E7ACF;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Staggered animation for process steps */
.process-steps [data-reveal]:nth-child(1) {
    transition-delay: 0.3s;
}

.process-steps [data-reveal]:nth-child(2) {
    transition-delay: 0.5s;
}

.process-steps [data-reveal]:nth-child(3) {
    transition-delay: 0.7s;
}

.process-steps [data-reveal]:nth-child(4) {
    transition-delay: 0.9s;
}

.process-steps [data-reveal]:nth-child(5) {
    transition-delay: 1.1s;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    min-width: 200px;
}

.step-badge {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    z-index: 10;
}

.badge-1 {
    background: #679934;
}

.badge-2 {
    background: #8E7ACF;
}

.badge-3 {
    background: #FAB005;
}

.step-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin-bottom: 25px;
    position: relative;
}

.step-img-token {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 25px;
    position: relative;
}

.step p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    max-width: 220px;
    margin-top: 10px;
    height: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.step-arrow {
    margin-bottom: 100px;
    flex-shrink: 0;
}

.step-arrow img {
    width: 140px;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
        margin: 20px 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.testimonial-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-photo {
    flex: 0 0 42%;
    background: #f0f0f0;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    width: 40px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.testimonial-card p.quote {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.3;
}

.read-more {
    color: #679934;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
}

.testimonial-card p.author {
    margin-top: auto;
    font-size: 0.875rem;
    color: var(--primary-blue);
    opacity: 0.8;
    font-weight: 500;
}

.testimonial-card p.author strong {
    font-weight: 800;
}

@media (max-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex-direction: column;
    }

    .testimonial-photo {
        flex: 0 0 200px;
    }
}

/* Partner/FAQ Section */
.partner {
    padding: 100px 0;
    background: #F9FAFB;
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.faq-side h2 {
    font-size: 2.625rem;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
    transition: var(--transition);
}

.accordion-header:hover {
    background: #fdfdfd;
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 20px 20px;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.image-side {
    position: relative;
}

.trust-office {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.badge-overlay {
    position: absolute;
    bottom: 15px;
    right: 10px;
    background: var(--primary-blue);
    color: white;
    padding: 20px 25px;
    border-radius: 50px 20px 20px 50px;
    max-width: 60%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-trusted {
    max-width: 100% !important;
}

.badge-icon {
    max-width: 60px !important;
    max-height: 60px !important;
    width: 100% !important;
}

.badge-overlay p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.badge-heart {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 35px;
    height: auto;
    /* filter: invert(82%) sepia(21%) saturate(762%) hue-rotate(341deg) brightness(97%) contrast(92%); */
}

/* Final CTA */
.final-cta {
    padding: 100px 0 0;
    background: white;
}

.final-cta-page {
    background: var(--primary-blue);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}


.final-cta-page {
    padding: 100px 0;
    text-align: center;
    background: var(--primary-blue);
    color: white;
}

.cta-banner {
    /* background: #FFFBEB; */
    background: #FEF8EB;
    padding: 20px 10px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.1);
}

.cta-star {
    width: 140px;
    height: auto;
    flex-shrink: 0;
}

.cta-content {
    flex: 1;
    text-align: left;
}


.cta-banner h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.cta-banner p {
    font-size: 1.125rem;
    color: #4B5563;
    margin: 0;
    max-width: 650px;
    line-height: 1.5;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    width: 280px;
}

.cta-sublinks {
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.cta-sublinks a {
    transition: var(--transition);
}

.cta-sublinks a:hover {
    color: var(--cta-green);
}

.cta-right .btn {
    white-space: nowrap !important;
    padding: 18px 40px !important;
    font-size: 18px !important;
}

/* Benefits Grid */
.trust-benefits {
    background: linear-gradient(to bottom, #FEF8EB 0%, rgba(254, 248, 235, 0) 100%) !important;
    padding: 100px 0 !important;
    text-align: center !important;
}

.trust-benefits .benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 40px !important;
    padding: 60px 0 80px !important;
    text-align: center !important;
}

.trust-benefits .benefit-item img {
    width: 120px !important;
    height: 110px !important;
    margin-bottom: 20px !important;
    object-fit: contain !important;
}

.trust-benefits .benefit-icon {
    font-size: 3.125rem !important;
    margin-bottom: 20px !important;
}

.trust-benefits .benefit-item h3 {
    color: var(--primary-blue) !important;
    margin-bottom: 15px !important;
}

.trust-benefits .benefit-item p {
    font-size: 0.9375rem !important;
    color: #666 !important;
    max-width: 300px !important;
    margin: 0 auto !important;
}

.text-accent-green {
    color: var(--cta-green);
}

.text-accent-blue {
    color: var(--secondary-blue);
}

.star-icon {
    display: inline-block;
    color: var(--accent-yellow);
}

.opportunity-star {
    max-width: 65px !important;
    width: 100% !important;
    height: auto !important;
    vertical-align: middle !important;
    margin-left: 10px !important;
    margin-bottom: 15px !important;
}

/* Footer */
.footer {
    background: var(--secondary-footer-gradient);
    color: white;
    padding: 40px 0 40px;
    position: relative;
}

.footer:before {
    display: none !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    height: 56px;
    margin-bottom: 25px;
    display: block;
}

.bbb-seal {
    border: 0;
    margin-bottom: 25px;
}




.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.footer h4 {
    margin-bottom: 25px !important;
    color: var(--accent-yellow) !important;
    font-size: 1.25rem !important;
}

.footer-links ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.footer-links li {
    list-style: simple;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    display: block !important;
    margin-bottom: 12px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: var(--transition) !important;
    font-size: 1rem !important;
}

.footer-links a:hover {
    color: white !important;
    padding-left: 5px !important;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.footer-social h4 {
    margin-bottom: 25px !important;
}

.footer-cta-btn {
    color: #FEC538 !important;
    font-weight: bold !important;
    display: inline-block !important;
    margin-top: auto !important;
    border: 2px solid #FEC538 !important;
    border-radius: 30px !important;
    padding: 8px 24px !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.footer-cta-btn:hover {
    background: #FEC538 !important;
    color: #002654 !important;
}

@media (max-width: 768px) {
    .footer-cta-btn {
        margin-top: 20px !important;
    }
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.social-icons img {
    width: 20px;
    height: 20px;
    display: block;
}

/* Mobile Navigation Overlay */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-row1 {
    background: #F4F3F0;
    padding: 20px 25px;
    display: flex;
    align-items: center;
}

.mobile-nav-row2 {
    background: #A9A9A9;
    padding: 20px 25px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.mobile-nav-row3 {
    background: #939393;
    padding: 40px 25px 80px 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mobile-nav-links-bottom {
    display: flex;
    gap: 30px;
}

.mobile-nav a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-nav-row2 a,
.mobile-nav-row3 a {
    color: white;
}

.mobile-pill {
    padding: 8px 24px;
    border-radius: 30px;
}

.dark-pill {
    background: #A9A9A9;
    color: white !important;
}

.light-pill {
    background: white;
    color: #A9A9A9 !important;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    font-family: sans-serif;
    margin-top: -10px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cta-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.nav-login {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.nav-login:hover {
    opacity: 1;
}

.nav-welcome {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}




@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .nav-links {
        display: block !important;
        width: 100%;
        order: 3;
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links ul {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-links li a {
        font-size: 0.9rem;
        padding: 5px 10px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .header-actions {
        order: 2;
        flex-shrink: 0;
        margin-left: auto;
    }

    .logo img {
        height: 35px;
        padding: 2px;
    }

    .btn-nav {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .nav-login {
        font-size: 0.8rem;
    }

    .header-cta-group {
        gap: 8px;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-banner p {
        margin: 0 auto;
    }

    .partner-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 20px;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        text-align: center;
    }

    .footer-info {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .footer-branding {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .bbb-seal {
        margin-bottom: 10px;
    }

    .footer-social {
        grid-column: 1 / -1;
        align-items: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }

    .footer h4 {
        margin-bottom: 15px !important;
    }

    .badge-overlay {
        position: absolute;
        bottom: 15px;
        right: 10px;
        background: var(--primary-blue);
        color: white;
        padding: 20px 25px;
        border-radius: 50px 20px 20px 50px;
        max-width: 90%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        gap: 20px;
    }
}


/* added styles */

/* testimonial styles */

/* Testimonial specific overrides or additions can go here */







/* Hero */
.page-hero {
    padding: 100px 0 50px;
    background: radial-gradient(circle at top left, #00458C 0%, #002654 70%);
    text-align: center;
    color: white;

}


.page-hero-two {
    padding: 100px 0 50px;
    background: radial-gradient(circle at top left, #00458C 0%, #002654 70%);
    text-align: center;
    color: white;

}


.page-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    /* max-width: 700px; */
    margin: 0 auto;
}

/* Story Sections */
.story-section {
    padding: 100px 0;
    border-bottom: 1px solid #eee;
}

.story-section:nth-child(even) {
    background-color: #F8FAFC;
}

.story-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-section:nth-child(even) .story-grid {
    flex-direction: row-reverse;
}

.story-image {
    flex: 0 0 320px;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: block;
}

.story-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-yellow);
    border-radius: 30px;
    z-index: -1;
}

.story-section:nth-child(even) .story-image::after {
    left: 15px;
}

.story-content {
    flex: 1;
    position: relative;
}

.quote-icon {
    font-size: 80px;
    color: var(--accent-yellow);
    opacity: 0.3;
    position: absolute;
    top: -50px;
    left: -20px;
    font-family: serif;
}

.pull-quote {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.main-story {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 30px;
}

.main-story p {
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-details h4 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--primary-blue);
}

.author-details p {
    color: #6B7280;
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    padding: 100px 0 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
}



.final-cta-page h2 {
    color: #fff !important;
    font-size: 2.75rem;
    margin-bottom: 30px;
}

/* Footer */
.footer-simple {
    background: #001A3D;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-simple p {
    opacity: 0.7;
    font-size: 0.95rem;
}



.story-content[data-reveal] {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 992px) {
    .story-grid {
        flex-direction: column !important;
        gap: 50px;
        text-align: center;
    }

    .story-image {
        flex: 0 0 auto;
        max-width: 320px;
    }

    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero h1 {
        font-size: 2.75rem;
    }

    .pull-quote {
        font-size: 1.85rem;
    }

    .author-info {
        justify-content: center;
    }

    .quote-icon {
        left: 50%;
        transform: translateX(-50%);
        top: -60px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}



.footer-links li {
    list-style: simple;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Request Info Specific Styles */
.page-template-template-request-info header,
.page-template-template-request-info header.scrolled {
    background: var(--primary-gradient);
    /* 100% opaque primary blue */
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

/* ─── Page Content ─── */
.page-template-template-request-info .page-content {
    padding-top: 150px;
    padding-bottom: 100px;
    /* background: linear-gradient(135deg, #183888 0%, #001A3D 100%); */
    color: white;
    min-height: 80vh;
}

.page-template-template-request-info .page-title h1 {
    color: white;
}

.page-template-template-request-info .page-title p {
    color: rgba(255, 255, 255, 0.8);
}

.page-content .page-title {
    text-align: center;
    margin-bottom: 2rem;
}

.page-content .page-title h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.page-content .page-title p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}


.page-content ol,
.page-content ul {
    margin-left: 2em;
}

.page-content ul li {
    list-style: disc;
}

.page-content h3[id] {
    scroll-margin-top: 120px;
}

input.error,
select.error,
textarea.error {
    color: #dc2626 !important;
    border-color: #dc2626 !important;
    background-color: #fff !important;
}

/* Global high-contrast error override */
.error,
.is-invalid,
.field.error,
input.error,
select.error,
textarea.error {
    color: #dc2626 !important;
    border-color: #dc2626 !important;
    outline-color: #dc2626 !important;
}

/* ─── Modern Intro Page Content ─── */
.page-template-template-modern-intro .page-content {
    padding-top: 40px;
    padding-bottom: 100px;
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Ensure content clears the fixed header on the modern intro template */
.page-template-template-modern-intro .page-hero {
    padding-top: 150px;
    padding-bottom: 40px;
    text-align: left;
}

.page-template-template-modern-intro .page-hero h1 {
    font-size: 3rem;
}

.page-template-template-modern-intro .page-content h1,
.page-template-template-modern-intro .page-content h2,
.page-template-template-modern-intro .page-content h3,
.page-template-template-modern-intro .page-content h4,
.page-template-template-modern-intro .page-content h5,
.page-template-template-modern-intro .page-content h6 {
    color: var(--primary-blue);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-template-template-modern-intro .page-content h1 {
    font-size: 2.5rem;
}

.page-template-template-modern-intro .page-content h2 {
    font-size: 2.25rem;
}

.page-template-template-modern-intro .page-content h3 {
    font-size: 1.75rem;
}

.page-template-template-modern-intro .page-content h4 {
    font-size: 1.5rem;
}

.page-template-template-modern-intro .page-content h5 {
    font-size: 1.25rem;
}

.page-template-template-modern-intro .page-content p {
    margin-bottom: 1.5rem;
}

/* Fix for clumped links in FAQ/Content lists */
.page-template-template-modern-intro .page-content a {
    color: var(--secondary-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
    /* display: inline-block; */
    /* Allows vertical padding/margin to work */
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.page-template-template-modern-intro .page-content a:hover {
    color: var(--accent-yellow);
}

.page-template-template-modern-intro .page-content ul,
.page-template-template-modern-intro .page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-template-template-modern-intro .page-content li {
    margin-bottom: 0.5rem;
}

.page-template-template-modern-intro .page-content blockquote {
    border-left: 4px solid var(--accent-yellow);
    padding: 1.5rem;
    font-style: italic;
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    background: var(--bg-light);
    border-radius: 0 10px 10px 0;
}

.page-template-template-modern-intro .page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

/* Ensure testimonials image always stays on the right and doesn't alternate */
.page-template-template-testimonials .story-section:nth-child(even) .story-grid {
    flex-direction: row;
}