/*@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


:root {
    /* Brand Colors */
    --color-primary: #06284a;
    --color-secondary: #1d90c9;
    /* Neutrals */
    --color-white: #ffffff;
    --color-black: #000000;
    /* Backgrounds & Surfaces */
    --color-bg: #ffffff;
    --color-surface: #f5f7fa;
    --color-border: #e0e0e0;
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    user-select: none;
    border-radius: inherit;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: var(--color-surface);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

/* ================================= */
/* 🔘 Button Styles */
/* ================================= */
.btn {
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 9px 22px;
    border-radius: 6px;
    border: none;
}

/* Solid Buttons */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-hover);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: 1px solid var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-hover);
    box-shadow: var(--shadow-light);
}

/* Outline Buttons */
.btn-outline-primary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-outline-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 1.5px solid var(--color-secondary);
}

.btn-outline-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/* Disabled */
.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ================================= */
/* 🔗 Link Style */
/* ================================= */
.link-secondary {
    color: var(--color-secondary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    font-weight: 500;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.link-secondary:hover {
    color: var(--color-hover);
    border-bottom: 1px solid var(--color-hover);
}

/* Navigation Bar Styles */
.header {
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    /* only applies to home page initially */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    z-index: 1000;
}

.header.scrolled {
    background-color: #ffffff;
    /* home page after scroll OR all other pages */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Links, logo, icons color inside scrolled header */
.header.scrolled .logo-text,
.header.scrolled .nav-link,
.header.scrolled .search-icon,
.header.scrolled .sign-in-btn {
    color: #1e2832;
    /* dark color for all pages and home after scroll */
}

.header.scrolled .search-icon svg {
    stroke: #1e2832;
}

.header.scrolled .sign-in-btn {
    border-color: #1e2832;
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 170px;
}

.logo-container img {
    width: 100%;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #e30613;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #0A1D3A;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 10px 0;
}

.nav-link:hover {
    opacity: 0.8;
}



.nav-link i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item:hover i {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 25px;
    color: #1e2832;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
    font-size: 15px;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}

.dropdown-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.search-icon svg {
    stroke: #0A1D3A;
    transition: stroke 0.3s ease;
}

.search-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header.scrolled .search-icon:hover {
    background-color: rgba(30, 40, 50, 0.1);
}

.sign-in-btn {
    padding: 4px 20px 6px;
    color: #0A1D3A;
    background-color: transparent;
    border: 1px solid #0A1D3A;
    border-radius: 4px;
    font-size: 16px;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.sign-in-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
    .sign-in-btn {
        font-size: 13px;
        padding: 5px 12px;
        height: 34px;
    }
}

/* Search Bar Overlay */
.search-overlay {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    /* bottom: 0; */
    padding: 19px;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 60px 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    outline: none;
}

.close-search {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
}

.close-search:hover {
    color: #e30613;
}

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 60px 60px;
    background: url(/images/man-working-ona-laptopp.png);
    background-size: cover;
    /* background-position: center; */
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -300px;
    left: -170px;
    width: 650px;
    height: 600px;
    background: radial-gradient(circle, rgb(255 255 255) 0%, rgb(255 255 255 / 0%) 35%, rgb(255 255 255 / 0%) 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 40%;
    /* gap: 60px; */
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.hero-title {
    font-size: 60px;
    font-weight: bold;
    color: #0a2540;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title:focus-visible {
    outline: 0 !important;
}


.hero-subtitle {
    font-size: 20px;
    color: #0A1D3A;
    line-height: 1.6;
    margin-bottom: 20px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
}

.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1.2s ease-out;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 82, 0.3) 0%, rgba(42, 84, 112, 0.3) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*        background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=600&h=600&fit=crop');*/
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 168, 255, 0.25) 0%,
            /* Sky Blue */
            rgba(10, 37, 64, 0.25) 100%
            /* Navy Blue */
        );
    /*    background: linear-gradient(135deg, rgba(0, 123, 139, 0.2) 0%, rgba(227, 6, 19, 0.1) 100%);*/
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-toggle span {
    background-color: #1e2832;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
    .header {
        padding: 20px 30px;
    }

    .hero-section {
        padding: 100px 30px 60px 30px;
        background-attachment: scroll;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .logo-container {
        width: 130px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-link {
        color: #1e2832;
        padding: 15px 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 10px 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: #f9f9f9;
        border-radius: 0;
    }

    .nav-item.active .dropdown-menu {
        display: block;
    }

    /* Dropdown visible when active on mobile */
    .nav-item.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        padding: 80px 20px 40px 20px;
        overflow: hidden;
    }

    .hero-section::before {
        left: -245px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }


    .hero-image {
        height: 300px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 16px;
    }

    .search-input {
        font-size: 18px;
        padding: 15px 50px 15px 15px;
    }
}

/* ============================= */
/* FEATURES SECTION STYLING START*/
/* ============================= */
.features-section {
    padding: 30px 60px;
    text-align: center;
}

.features-container {
    /*    max-width: 1200px;*/
    margin: auto;
}

.features-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 50px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e9eef5;
    border-radius: 14px;
    padding: 35px 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 28px;
    color: var(--color-white);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-black);
}

.feature-text {
    font-size: 0.97rem;
    color: #626262;
    line-height: 1.55;
}

.feature-btn {
    display: flex;
    justify-content: center;
}

/* Tablet */
@media (max-width: 992px) {
    .features-section {
        padding: 30px 30px;
    }

    .features-heading {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .features-section {
        padding: 25px 20px;
    }

    .features-heading {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 25px 18px;
        border-radius: 12px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .features-section {
        padding: 20px 15px;
    }

    .features-heading {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        /* Force single column */
    }

    .feature-card {
        padding: 20px 15px;
    }
}

/* ============================= */
/* FEATURES SECTION STYLING END*/
/* ============================= */

/* ============================= */
/* How it Works SECTION STYLING Start*/
/* ============================= */
.ph-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    padding: 60px 60px;
}



.ph-process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

.ph-process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.ph-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ph-step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.ph-step-title {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.ph-step-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ph-container {
        padding: 40px 20px;
    }



    .ph-process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .ph-process-steps::before {
        display: none;
    }

    .ph-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* How it Works SECTION STYLING End*/
/* ============================= */

/* ============================= */
/* TESTIMONIALS SECTION STYLING START*/

.ts-testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}

.ts-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.ts-explore-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #d1d5db;
    border-radius: 50px;
    background: transparent;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ts-explore-button:hover,
.ts-explore-button:focus {
    border-color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    outline: none;
}

.ts-columns-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.ts-scroll-column {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 12px;
}

/* Fade masks at top and bottom */
.ts-scroll-column::before,
.ts-scroll-column::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 10;
}

.ts-scroll-column::before {
    top: 0;
    background: linear-gradient(to bottom, var(--color-surface) 0%, transparent 100%);
}

.ts-scroll-column::after {
    bottom: 0;
    background: linear-gradient(to top, var(--color-surface) 0%, transparent 100%);
}

.ts-scroll-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Column A scrolls up */
.ts-column-a .ts-scroll-content {
    animation-name: scrollUp;
    animation-duration: 30s;
}

/* Column B scrolls down */
.ts-column-b .ts-scroll-content {
    animation-name: scrollDown;
    animation-duration: 30s;
}

/* Pause animation on hover or focus-within */
.ts-scroll-column:hover .ts-scroll-content,
.ts-scroll-column:focus-within .ts-scroll-content {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.ts-testimonial-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}


.ts-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ts-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ts-card-info {
    flex: 1;
}

.ts-card-name {
    font-weight: 600;
    font-size: 1rem;
}

.ts-card-title {
    font-size: 0.875rem;
    color: #5b5b5b;
}

.ts-card-testimonial {
    font-size: 0.938rem;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ============================================
           RESPONSIVE DESIGN
           ============================================ */
@media (max-width: 760px) {
    .ts-columns-container {
        grid-template-columns: 1fr;
    }

    .ts-section-header h2 {
        font-size: 1.5rem;
    }

    .ts-scroll-column {
        height: 400px;
    }
}

/* ============================================
           REDUCED MOTION SUPPORT
           ============================================ */
@media (prefers-reduced-motion: reduce) {
    .ts-scroll-content {
        animation: none !important;
    }

    .ts-testimonial-card:hover,
    .ts-testimonial-card:focus,
    .ts-explore-button:hover,
    .ts-explore-button:focus {
        transform: none;
    }
}

/* TESTIMONIALS SECTION STYLING End*/
/* ============================= */


/* ============================= */
/* FOOTER SECTION STYLING START*/

.footer {
    background-color: var(--color-white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-logo img {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-tagline {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.25rem;
    /*text-transform: uppercase;*/
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Subscribe Box Styles */
.subscribe-column .subscribe-text {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.subscribe-box {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.subscribe-input {
    flex: 1;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #374151;
    background-color: var(--color-surface);
}

.subscribe-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.subscribe-btn {
    padding: 0.65rem 1.15rem;
    /* thori balanced spacing */
    background: #1d90c9;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    /* slightly smoother */
    font-size: 0.9rem;
    font-weight: 500;
    /* better readability */
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

/* hover */
.subscribe-btn:hover {
    background: #06284a;
    /* SAME color as you gave */

    box-shadow: 0 6px 14px rgba(6, 30, 50, 0.25);
}

/* click feedback */
.subscribe-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(6, 30, 50, 0.25);
}

/* keyboard / focus accessibility */
.subscribe-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 144, 201, 0.35);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .subscribe-box {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }
}

/* FOOTER SECTION STYLING END*/
/* ============================= */

/* ============================= */
/* MINI BBANNER STYLING START*/
.mb-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.mb-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
}

.mb-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.mb-content-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 35px;
    max-width: 550px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mb-heading {
    font-size: 35px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: 0.1px;
}

.mb-description {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}


/* Responsive styles */
@media (max-width: 768px) {
    .mb-banner {
        min-height: 350px;
        padding: 30px 15px;
    }

    .mb-content-box {
        padding: 30px 25px;
        max-width: 100%;
    }

    .mb-heading {
        font-size: 2rem;
    }

    .mb-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

}

/* MINI BBANNER STYLING END*/
/* ============================= */

/* ============================= */
/* FEATURED PROFILES STYLING START*/
.fp-section {
    /*    max-width: 1400px;*/
    margin: 0 auto;
    padding: 60px 60px 0;
}

.fp-header {
    margin-bottom: 20px;
}

.fp-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.fp-subtitle {
    font-size: 14px;
    color: #00000099;
}

/* Root wrapper */
.fp-root {
    background-color: var(--color-bg);
    padding: 18px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

/* Carousel viewport and nav */
.fp-carousel-wrap {
    display: flex;
    align-items: stretch;
    gap: 12px;
    position: relative;
}

.fp-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 260px);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px;
    -webkit-overflow-scrolling: touch;
}

/* Hide native scrollbar in a tasteful way (keeps accessibility) */
.fp-carousel::-webkit-scrollbar {
    display: none;
}

.fp-carousel::-webkit-scrollbar-thumb {
    display: none;
}

.fp-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    min-width: 210px;
    max-width: 230px;
    scroll-snap-align: start;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Decorative top banner */
.fp-banner {
    height: 70px;
    background: linear-gradient(90deg, rgba(29, 144, 201, 0.10) 0%, rgba(6, 40, 74, 0.04) 100%);
    border-top-left-radius: calc(8px - 1px);
    border-top-right-radius: calc(8px - 1px);
    position: relative;
}


/* Avatar (circular) */
/*.fp-avatar-wrap {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: var(--color-surface);
    border: 6px solid var(--color-white);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(70px - (84px / 2));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
*/
.fp-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card body container (space for avatar overlap) */
.fp-card-body {
    padding-top: calc(84px / 2 + 10px);
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    flex: 1;
}

/* Name, job, meta */
.fp-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fp-verified {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--color-white), rgba(29, 144, 201, 0.06));
    border: 1px solid rgba(29, 144, 201, 0.16);
    box-shadow: none;
}

.fp-role {
    font-size: 13px;
    color: #64748b;
    line-height: 1.2;
    max-height: 2.6em;
    /* approximate 2 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 6px;
}

.fp-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #8898a6;
    margin-top: 6px;
}

.fp-mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--color-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    display: inline-block;
    vertical-align: middle;
}

.fp-mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA button: outlined style similar to image */
.fp-btn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    min-width: 150px;
    border-radius: 28px;
    border: 1px solid var(--color-secondary);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    color: var(--color-secondary);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
}


/* Card footer area (button alignment) */
.fp-card-footer {
    padding: 0 16px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive behavior */
@media (min-width: 980px) {
    .fp-carousel {
        grid-auto-columns: minmax(240px, 1fr);
    }
}

@media (max-width: 560px) {


    .fp-card {
        min-width: 80%;
    }

    .fp-card-body {
        padding-left: 12px;
        padding-right: 12px;
    }

    .fp-btn {
        min-width: 140px;
        padding: 10px 12px;
    }
}

/* Simple nav arrows */
.fp-nav {
    position: absolute;
    top: -60px;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    pointer-events: none;
    width: 100%;
    justify-content: end;
    padding: 0 6px;
}

.fp-nav button {
    pointer-events: auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    cursor: pointer;
}


/* Utility small helper classes (all prefixed) */
.fp--muted {
    color: #7b8899;
    font-size: 13px;
}

.fp-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .fp-section {
        padding: 16px;
    }


}


/* FEATURED PROFILES STYLING END*/
/* ============================= */


/* ============================= */
/* SEARCH STYLING START*/

.srch-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-top: -40px;
    position: relative;
}

.srch-label {
    font-weight: 600;
    font-size: 1rem;
    min-width: 150px;
}

.srch-input-group {
    position: relative;
    flex: 1;
}

.srch-input-group input,
.srch-input-group select {
    width: 100%;
    padding: 10px 30px 10px 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    -webkit-appearance: none;
}

.srch-input-group i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.srch-input-group .srch-icon-left {
    left: 10px;
}

.srch-input-group .srch-icon-right {
    right: 10px;
    pointer-events: none;
}


/* Responsive */
@media (max-width: 768px) {
    .srch-container {
        flex-direction: column;
        align-items: stretch;
    }

    .srch-label {
        min-width: auto;
    }

    .srch-button {
        width: 100%;
    }
}

/* SEARCH STYLING END*/
/* ============================= */

/* ============================= */
/* REAL IMPACT STYLING START*/
.imp-section {
    /*    max-width: 1400px;*/
    margin: 0 auto;
    padding: 60px;
}


.imp-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.imp-card {
    background: linear-gradient(135deg, #0092ca24 0%, #0092ca6b 100%);
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imp-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.imp-metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.imp-metric-label {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.4;
}

.imp-icon-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.imp-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.imp-quote-text {
    font-size: 1rem;
    color: var(--color-primary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
}

.imp-author {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .imp-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .imp-heading {
        font-size: 2rem;
    }

    .imp-metric-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .imp-heading {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .imp-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .imp-card {
        padding: 30px 25px;
    }

    .imp-metric-number {
        font-size: 3rem;
    }

    .imp-metric-label {
        font-size: 1.1rem;
    }
}

/* REAL IMPACT STYLING END*/
/* ============================= */

/* =====talent section */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

.pk-talent-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.pk-talent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pk-talent-header {
    text-align: center;
    margin-bottom: 50px;
}

.pk-talent-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 14px;
    text-align: center;
}

.pk-talent-header p {
    font-size: 19px;
    color: #64748b;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

.pk-talent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.pk-talent-card {
    padding: 50px 40px;
    border: 0.5px solid #f1f5f9;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    text-decoration: none;
}

.pk-talent-card:hover {
    background-color: #f8fafc;
    z-index: 2;
    transform: scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.pk-talent-icon-wrap {
    min-width: 50px;
    height: 50px;
    background: #f1f5fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pk-talent-card:hover .pk-talent-icon-wrap {
    transform: rotate(-5deg) scale(1.1);
    background: #3b82f6;
}

.pk-talent-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: #3b82f6;
    fill: none;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.pk-talent-card:hover .pk-talent-icon-wrap svg {
    stroke: #ffffff;
}

.pk-talent-info h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    margin-top: 5px;
}

.pk-talent-info p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}


.pk-wide-card {
    grid-column: span 2;
    background: #fbfcfe;
}

.pk-wide-card .pk-talent-info {
    max-width: 80%;
}

@media (max-width: 1024px) {
    .pk-talent-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pk-wide-card {
        grid-column: span 1;
    }

    .pk-wide-card .pk-talent-info {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pk-talent-grid {
        grid-template-columns: 1fr;
        border: none;
        gap: 24px;
    }

    .pk-talent-card {
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 40px;
    }
}





/* Logo-Section */
.pk-trusted-final-bar {
    background: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #f1f5f9;
    font-family: 'Outfit', sans-serif;
}

.pk-trusted-final-flex {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 80px;
}

.pk-side-label {
    flex: 0 0 160px;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
    border-right: 2px solid #f1f5f9;
    padding-right: 30px;
}

.pk-logos-grid-final {
    flex-grow: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.pk-logo-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 200px;
}

.pk-logo-img-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.pk-logo-img-box img {
    max-height: 100%;
    max-width: 200px;
    width: auto;
    /*filter: grayscale(100%) opacity(0.4);*/
    /* Subtle startup look */
    transition: all 0.5s ease;
    cursor: pointer;
}

.pk-logo-unit:hover .pk-logo-img-box img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.pk-logo-unit:hover .pk-logo-img-box {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.15));
}


.pk-logo-unit:hover {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .pk-trusted-final-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .pk-side-label {
        border-right: none;
        border-bottom: 2px solid #f1f5f9;
        padding: 0 0 20px 0;
    }

    .pk-logos-grid-final {
        flex-wrap: wrap;
        gap: 50px;
    }
}


.pk-hero {
    --pk-blue: #1D90C9;
    --pk-white: #ffffff;
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
    color: var(--pk-white);
    background: #0a1628;
}

.pk-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.pk-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(5deg, rgba(5, 10, 30, 0.85) 0%, rgba(5, 10, 30, 0.65) 55%, rgba(5, 10, 30, 0.30) 100%);
    z-index: 1;
}

.pk-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 120px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
}

/* ── LEFT TEXT ── */
.pk-hero__left {
    max-width: 520px;
}

.pk-hero__heading {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--pk-white);
    margin-bottom: 0;
}

.pk-hero__heading--accent {
    color: var(--pk-blue);
}

.pk-hero__sub-heading {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--pk-white);
    margin-bottom: 28px;
}

.pk-hero__desc {
    font-size: clamp(14px, 1.6vw, 17px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
}

.pk-hero__cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pk-btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pk-blue);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.pk-btn--primary:hover {
    background: #06284A;
    transform: translateY(-2px);
}

.pk-btn--primary svg {
    width: 16px;
    height: 16px;
}

.pk-btn--secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.pk-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* ══════════════════════════════════════════
   HERO STAT CARDS — all names prefixed with
   "pk-hsc-" (hero stat card) to avoid conflicts
══════════════════════════════════════════ */
.pk-hsc-wrapper {
    position: relative;
    /* 
      3 cards stacked with no overlap:
      Card1 height ~155px  +  Card2 height ~175px  +  Card3 height ~210px
      plus 15px gaps = ~570px 
    */
    height: 520px;
    width: 100%;
}

/* ── BASE CARD ── */
.pk-hsc-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 20px 22px;
    color: #fff;
    width: 250px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.20);
    animation: pk-hsc-fadeUp 0.65s cubic-bezier(.22, .68, 0, 1.1) both;
}

/* 
  LAYOUT:
  Card 1 (Efficiency)  → top,    RIGHT-aligned,  z:3
  Card 2 (Savings)     → middle, shifted LEFT,   z:2
  Card 3 (Vetting 1%)  → bottom, RIGHT-aligned,  z:3

  No overlap between cards — 15px gap
*/
.pk-hsc-card--efficiency {
    top: -52px;
    right: 100px;
    z-index: 3;
    animation-delay: 0.08s;
}

.pk-hsc-card--savings {
    top: 110px;
    /* efficiency ends ~95px + 25px gap */
    right: 62px;
    /* shifted left */
    z-index: 2;
    width: 250px;
    animation-delay: 0.20s;
}

.pk-hsc-card--vetting {
    top: 273px;
    /* savings ends ~295px + 25px gap */
    right: 0px;
    z-index: 3;
    animation-delay: 0.34s;
}

@keyframes pk-hsc-fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── CARD: LABEL ROW ── */
.pk-hsc-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2px;
}

/* Circular icon — used in card 1 & card 3 */
.pk-hsc-icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── CARD: VALUE ── */
.pk-hsc-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 8px 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── CARD: DESCRIPTION ── */
.pk-hsc-desc {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
}

/* ── CARD: HEADING (card 3 has a heading above desc) ── */
.pk-hsc-heading {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 4px;
}

/* ── PROGRESS BAR ── */
.pk-hsc-bar {
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
    margin-top: 12px;
    overflow: hidden;
}

.pk-hsc-bar__fill {
    height: 100%;
    border-radius: 2px;
    background: var(--pk-blue);
    animation: pk-hsc-grow 1.2s ease 0.7s both;
}

@keyframes pk-hsc-grow {
    from {
        width: 0 !important;
    }
}

/* ── STARS ── */
.pk-hsc-stars {
    display: flex;
    gap: 3px;
    margin-top: 10px;
}

.pk-hsc-stars svg {
    width: 13px;
    height: 13px;
}

.pk-hsc-stars .pk-hsc-star-fill {
    fill: #1D90C9;
    color: #1D90C9;
}

.pk-hsc-stars .pk-hsc-star-empty {
    fill: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.22);
}

/* ── SAVINGS TREND ICON ── */
.pk-hsc-trend {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 144, 201, 0.20);
    border-radius: 6px;
    padding: 5px;
}

.pk-hsc-trend svg {
    width: 12px;
    height: 12px;
    color: #1D90C9;
}

/* ── FOOTER NOTE ── */
.pk-hero__footer-note {
    position: absolute;
    bottom: 28px;
    right: 40px;
    z-index: 2;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 960px) {
    .pk-hero__inner {
        grid-template-columns: 1fr;
        padding: 100px 40px 130px;
    }

    .pk-hsc-wrapper {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 36px;
    }

    .pk-hsc-card,
    .pk-hsc-card--efficiency,
    .pk-hsc-card--savings,
    .pk-hsc-card--vetting {
        position: static !important;
        top: auto !important;
        right: auto !important;
        width: calc(50% - 6px) !important;
        z-index: 1 !important;
        animation-delay: 0s !important;
    }

    .pk-hsc-card--vetting {
        width: 100% !important;
    }
}

@media (max-width: 580px) {
    .pk-hero__inner {
        padding: 90px 20px 110px;
    }

    .pk-hsc-card,
    .pk-hsc-card--efficiency,
    .pk-hsc-card--savings,
    .pk-hsc-card--vetting {
        width: 100% !important;
    }

    .pk-hero__cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .pk-btn--primary,
    .pk-btn--secondary {
        width: 100%;
        justify-content: center;
    }

    .pk-hero__footer-note {
        right: 20px;
        bottom: 16px;
        font-size: 11px;
    }
}

:root {
    --wwh-primary: #1D90C9;
    --wwh-primary-light: #e8f5fd;
    --wwh-primary-mid: #b3ddf2;
    --wwh-bg: #f0f4f8;
    --wwh-white: #ffffff;
    --wwh-text-dark: #111827;
    --wwh-text-mid: #4b5563;
    --wwh-text-light: #9ca3af;
    --wwh-tag-bg: #f1f5f9;
    --wwh-tag-text: #64748b;
    --wwh-shadow: 0 2px 16px rgba(29, 144, 201, 0.07);
    --wwh-shadow-hover: 0 8px 32px rgba(29, 144, 201, 0.15);
    --wwh-radius: 16px;
    --wwh-radius-sm: 8px;
}

.wwh-section {
    background: var(--wwh-bg);
    padding: 80px 24px;
    font-family: 'Manrope', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Badge ── */
.wwh-badge {
    display: inline-block;
    background: var(--wwh-primary-light);
    border: 1px solid var(--wwh-primary-mid);
    color: var(--wwh-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}

/* ── Heading ── */
.wwh-heading {
    font-size: clamp(28px, 5vw, 45px);
    font-weight: 700;
    color: var(--wwh-text-dark);
    text-align: center;
    line-height: 1.18;
    max-width: 700px;
    margin-bottom: 20px;
}

.wwh-heading .wwh-accent {
    color: var(--wwh-primary);
}

/* ── Subheading ── */
.wwh-subtext {
    font-size: clamp(14px, 1.8vw, 16px);
    color: var(--wwh-text-mid);
    text-align: center;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 56px;
}

/* ── Cards Grid ── */
.wwh-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1060px;
    margin-bottom: 52px;
}

.wwh-card {
    background: var(--wwh-white);
    border-radius: var(--wwh-radius);
    padding: 28px 24px 24px;
    box-shadow: var(--wwh-shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* ── Icon ── */
.wwh-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--wwh-radius-sm);
    background: var(--wwh-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wwh-icon-wrap i {
    font-size: 22px;
    color: var(--wwh-primary);
}

/* ── Card Title ── */
.wwh-card-title {
    font-size: 16px;
    font-weight: 750;
    color: var(--wwh-text-dark);
    line-height: 1.35;
}

/* ── Card Body ── */
.wwh-card-body {
    font-size: 13.5px;
    color: var(--wwh-text-mid);
    line-height: 1.65;
    flex: 1;
}

/* ── Tags ── */
.wwh-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.wwh-tag {
    background: var(--wwh-tag-bg);
    color: var(--wwh-tag-text);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}

/* ── Buttons ── */
.wwh-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

.wwh-btn-primary {
    background: var(--wwh-primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.wwh-btn-primary:hover {
    background: #1678a8;
}

.wwh-btn-secondary {
    background: var(--wwh-white);
    color: var(--wwh-text-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1.5px solid #e2e8f0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s ease, transform 0.15s ease;
}

.wwh-btn-secondary:hover {
    border-color: var(--wwh-primary);
}

/* ── Footer Trust Bar ── */
.wwh-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.wwh-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--wwh-text-light);
    font-size: 13px;
    font-weight: 600;
}

.wwh-trust-item i {
    font-size: 17px;
    color: var(--wwh-primary);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .wwh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .wwh-section {
        padding: 56px 16px;
    }

    .wwh-grid {
        grid-template-columns: 1fr;
    }

    .wwh-trust-bar {
        gap: 24px;
    }

    .wwh-actions {
        flex-direction: column;
        width: 100%;
    }

    .wwh-btn-primary,
    .wwh-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

:root {
    --pk-primary: #1D90C9;
    --pk-primary-light: #e8f5fd;
    --pk-primary-mid: #b3ddf2;
    --pk-danger: #ef4444;
    --pk-danger-light: #fef2f2;
    --pk-bg: #f0f4f8;
    --pk-white: #ffffff;
    --pk-text-dark: #111827;
    --pk-text-mid: #4b5563;
    --pk-text-light: #9ca3af;
    --pk-border: #e5e7eb;
    --pk-radius: 16px;
}



.pk-section {
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Badge ── */
.pk-badge {
    display: inline-block;
    background: var(--pk-primary-light);
    border: 1px solid var(--pk-primary-mid);
    color: var(--pk-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
}

/* ── Heading ── */
.pk-heading {
    font-size: clamp(32px, 5.5vw, 54px);
    font-weight: 800;
    color: var(--pk-text-dark);
    text-align: center;
    line-height: 1.12;
    margin-bottom: 18px;
}

.pk-subtext {
    font-size: clamp(13px, 1.6vw, 15px);
    color: var(--pk-text-mid);
    text-align: center;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 52px;
}

/* ── Comparison Row ── */
.pk-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 980px;
    margin-bottom: 28px;
}

/* ── Card Base ── */
.pk-card {
    background: var(--pk-white);
    border-radius: var(--pk-radius);
    padding: 32px 28px;
    border: 1.5px solid var(--pk-border);
    position: relative;
}

.pk-card--after {
    border-color: var(--pk-primary);
    box-shadow: 0 0 0 1px var(--pk-primary), 0 8px 28px rgba(29, 144, 201, 0.10);
}

/* ── Recommended pill ── */
.pk-recommended {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--pk-primary);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
}

/* ── Card Header ── */
.pk-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.pk-card-header i {
    font-size: 24px;
}

.pk-card--before .pk-card-header i {
    color: var(--pk-danger);
}

.pk-card--after .pk-card-header i {
    color: var(--pk-primary);
}

.pk-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--pk-text-dark);
}

/* ── List ── */
.pk-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.pk-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pk-item-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.pk-item-icon i {
    font-size: 18px;
}

.pk-card--before .pk-item-icon i {
    color: var(--pk-danger);
}

.pk-card--after .pk-item-icon i {
    color: var(--pk-primary);
}

.pk-item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--pk-text-dark);
    margin-bottom: 3px;
}

.pk-item-desc {
    font-size: 13px;
    color: var(--pk-text-mid);
    line-height: 1.6;
}

/* ── Stats Row ── */
.pk-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 980px;
    margin-bottom: 52px;
}

.pk-stat-card {
    background: var(--pk-white);
    border-radius: var(--pk-radius);
    padding: 32px 20px;
    border: 1.5px solid var(--pk-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.pk-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--pk-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.pk-stat-icon i {
    font-size: 22px;
    color: var(--pk-primary);
}

.pk-stat-value {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: var(--pk-text-dark);
    line-height: 1;
}

.pk-stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pk-primary);
}

.pk-stat-sub {
    font-size: 12.5px;
    color: var(--pk-text-light);
}

/* ── Buttons ── */
.pk-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.pk-btn-primary {
    background: var(--pk-primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}

.pk-btn-primary:hover {
    background: #1678a8;
    transform: translateY(-1px);
}

.pk-btn-secondary {
    background: var(--pk-white);
    color: var(--pk-text-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1.5px solid var(--pk-border);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, transform 0.15s;
}

.pk-btn-secondary:hover {
    border-color: var(--pk-primary);
    transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .pk-compare-row {
        grid-template-columns: 1fr;
    }

    .pk-stats-row {
        grid-template-columns: 1fr;
    }

    .pk-recommended {
        right: 16px;
    }
}

@media (max-width: 560px) {
    .pk-section {
        padding: 56px 16px;
    }

    .pk-actions {
        flex-direction: column;
        width: 100%;
    }

    .pk-btn-primary,
    .pk-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

:root {
    --st-primary: #1D90C9;
    --st-primary-light: #e8f5fd;
    --st-primary-mid: #b3ddf2;
    --st-primary-dark: #1678a8;
    --st-bg: #f0f4f8;
    --st-white: #ffffff;
    --st-text-dark: #111827;
    --st-text-mid: #4b5563;
    --st-text-light: #9ca3af;
    --st-border: #e5e7eb;
}



.st-section {
    padding: 80px 24px 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Heading ── */
.st-heading {
    font-size: clamp(26px, 4.5vw, 44px);
    font-weight: 800;
    color: var(--st-text-dark);
    text-align: center;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 700px;
}

.st-subtext {
    font-size: clamp(13px, 1.6vw, 15px);
    color: var(--st-text-mid);
    text-align: center;
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 64px;
}

/* ── Steps Row ── */
.st-steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    max-width: 980px;
    position: relative;
    margin-bottom: 64px;
}

/* Horizontal connector line behind bubbles */
.st-steps-row::before {
    content: '';
    position: absolute;
    top: 44px;
    /* vertically center with circles */
    left: calc(12.5% + 4px);
    right: calc(12.5% + 4px);
    height: 1.5px;
    background: linear-gradient(to right, var(--st-primary-mid), var(--st-primary-mid));
    z-index: 0;
}

/* ── Single Step ── */
.st-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

/* ── Circle wrapper (number + icon badge) ── */
.st-circle-wrap {
    position: relative;
    margin-bottom: 28px;
}

.st-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3aa8db 0%, var(--st-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 6px 24px rgba(29, 144, 201, 0.30);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.st-step:hover .st-circle {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(29, 144, 201, 0.38);
}

/* Small icon badge top-right of circle */
.st-icon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--st-white);
    border: 2px solid var(--st-primary-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(29, 144, 201, 0.15);
}

.st-icon-badge i {
    font-size: 13px;
    color: var(--st-primary);
}

/* ── Step Title ── */
.st-step-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--st-text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

/* ── Step Desc ── */
.st-step-desc {
    font-size: 13px;
    color: var(--st-text-mid);
    line-height: 1.65;
    max-width: 200px;
}

/* ── CTA Button ── */
.st-btn {
    background: var(--st-primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s;
}

.st-btn:hover {
    background: var(--st-primary-dark);
    transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .st-steps-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    /* Remove the horizontal line on smaller screens */
    .st-steps-row::before {
        display: none;
    }

    /* Add vertical connector between rows on mobile-ish */
}

@media (max-width: 500px) {
    .st-section {
        padding: 56px 16px 64px;
    }

    .st-steps-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .st-step-desc {
        max-width: 280px;
    }
}

:root {
    --fp-primary: #1D90C9;
    --fp-primary-light: #e8f5fd;
    --fp-primary-mid: #b3ddf2;
    --fp-primary-dark: #1678a8;
    --fp-bg: #ffffff;
    --fp-text-dark: #111827;
    --fp-text-mid: #4b5563;
    --fp-text-light: #9ca3af;
    --fp-border: #e5e7eb;
    --fp-tag-bg: #f1f5f9;
    --fp-tag-text: #64748b;
    --fp-radius: 16px;
}


/* ══════════════════════════════
       SECTION
    ══════════════════════════════ */
.fp-section {
    padding: 80px 24px 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}

/* ── Badge ── */
.fp-badge {
    display: inline-block;
    background: var(--fp-primary-light);
    border: 1px solid var(--fp-primary-mid);
    color: var(--fp-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
}

/* ── Heading ── */
.fp-heading {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--fp-text-dark);
    text-align: center;
    line-height: 1.13;
    margin-bottom: 18px;
    max-width: 720px;
}

.fp-subtext {
    font-size: clamp(13px, 1.6vw, 15px);
    color: var(--fp-text-mid);
    text-align: center;
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 56px;
}

/* ══════════════════════════════
       CARDS GRID
    ══════════════════════════════ */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1020px;
    margin-bottom: 52px;
}

/* ── Single Card ── */
.fp-card {
    background: #fff;
    border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius);
    padding: 30px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}



/* ── Avatar ── */
.fp-avatar-wrap {
    position: relative;
    margin-bottom: 18px;
}

.fp-avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--fp-primary-light);
    display: block;
    background: #f3e8da;
}

.fp-avatar-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--fp-primary);
    border: 2.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-avatar-badge i {
    font-size: 11px;
    color: #fff;
}

/* ── Name ── */
.fp-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--fp-text-dark);
    margin-bottom: 4px;
}

/* ── Role ── */
.fp-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--fp-primary);
    margin-bottom: 8px;
}

/* ── Experience ── */
.fp-exp {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--fp-text-light);
    font-weight: 600;
    margin-bottom: 18px;
}

.fp-exp i {
    font-size: 13px;
}

/* ── Tags ── */
.fp-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.fp-tag {
    background: var(--fp-tag-bg);
    color: var(--fp-tag-text);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}

/* ══════════════════════════════
       CTA BUTTON
    ══════════════════════════════ */
.fp-cta {
    background: var(--fp-primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s;
}

.fp-cta:hover {
    background: var(--fp-primary-dark);
    transform: translateY(-1px);
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 900px) {
    .fp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 520px) {
    .fp-section {
        padding: 56px 16px 64px;
    }

    .fp-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

:root {
    --wp-primary: #1D90C9;
    --wp-primary-light: #e8f5fd;
    --wp-primary-mid: #b3ddf2;
    --wp-primary-dark: #1678a8;
    --wp-bg: #eef2f7;
    --wp-white: #ffffff;
    --wp-card-bg: #f5f8fb;
    --wp-text-dark: #111827;
    --wp-text-mid: #4b5563;
    --wp-text-light: #9ca3af;
    --wp-border: #e2e8f0;
    --wp-radius: 18px;
    --wp-radius-sm: 10px;
}


/* ══════════════════════════════
       SECTION WRAPPER
    ══════════════════════════════ */
.wp-section {
    padding: 80px 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--wp-bg);
}

/* ── Badge ── */
.wp-badge {
    display: inline-block;
    background: var(--wp-primary-light);
    border: 1px solid var(--wp-primary-mid);
    color: var(--wp-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
}

/* ── Heading ── */
.wp-heading {
    font-size: clamp(30px, 5.5vw, 52px);
    font-weight: 800;
    color: var(--wp-text-dark);
    text-align: center;
    line-height: 1.12;
    margin-bottom: 6px;
}

.wp-heading-accent {
    color: var(--wp-primary);
    display: block;
}

.wp-subtext {
    font-size: clamp(13px, 1.6vw, 15px);
    color: var(--wp-text-mid);
    text-align: center;
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 60px;
    margin-top: 16px;
}

/* ══════════════════════════════
       TWO-COLUMN CONTENT ROW
    ══════════════════════════════ */
.wp-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    width: 100%;
    max-width: 980px;
    margin-bottom: 28px;
    align-items: start;
}

/* ── LEFT: Stats Card ── */
.wp-stats-card {
    background: var(--wp-white);
    border: 1.5px solid var(--wp-border);
    border-radius: var(--wp-radius);
    padding: 36px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
}

.wp-stat-item {}

.wp-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--wp-radius-sm);
    background: var(--wp-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.wp-stat-icon i {
    font-size: 20px;
    color: var(--wp-primary);
}

.wp-stat-value {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--wp-text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.wp-stat-label {
    font-size: 12.5px;
    color: var(--wp-text-light);
    font-weight: 600;
}

/* ── RIGHT: Features List ── */
.wp-features-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wp-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--wp-border);
}

.wp-feature-item:last-of-type {
    border-bottom: none;
}

.wp-feature-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--wp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.wp-feature-check i {
    font-size: 14px;
    color: #fff;
}

.wp-feature-title {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--wp-text-dark);
    margin-bottom: 4px;
}

.wp-feature-desc {
    font-size: 13px;
    color: var(--wp-text-mid);
    line-height: 1.6;
}

/* ── Trust note ── */
.wp-trust-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0 0;
    font-size: 12.5px;
    color: var(--wp-text-light);
    font-weight: 600;
}

.wp-trust-note i {
    font-size: 16px;
    color: var(--wp-primary-mid);
}

/* ══════════════════════════════
       BOTTOM MAP BANNER
    ══════════════════════════════ */
.wp-map-banner {
    width: 100%;
    max-width: 980px;
    background: var(--wp-card-bg);
    border: 1.5px solid var(--wp-border);
    border-radius: var(--wp-radius) var(--wp-radius) 0 0;
    padding: 44px 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
}

.wp-map-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--wp-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-map-icon i {
    font-size: 28px;
    color: var(--wp-primary);
}

.wp-map-text {
    font-size: 14px;
    color: var(--wp-text-mid);
    text-align: center;
    font-weight: 500;
    max-width: 420px;
    line-height: 1.6;
}

/* ── Company Logos Row ── */
.wp-logos-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.wp-logo-chip {
    background: var(--wp-border);
    border-radius: 8px;
    width: 44px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-logo-chip i {
    font-size: 16px;
    color: var(--wp-text-light);
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 760px) {
    .wp-content-row {
        grid-template-columns: 1fr;
    }

    .wp-stats-card {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .wp-section {
        padding: 56px 16px 0;
    }

    .wp-stats-card {
        padding: 24px 20px;
        gap: 24px 16px;
    }

    .wp-map-banner {
        padding: 32px 20px 28px;
    }
}

:root {
    --ct-primary: #1D90C9;
    --ct-primary-light: #e8f5fd;
    --ct-primary-mid: #b3ddf2;
    --ct-primary-dark: #1678a8;
    --ct-bg: #f0f4f8;
    --ct-white: #ffffff;
    --ct-text-dark: #111827;
    --ct-text-mid: #4b5563;
    --ct-text-light: #9ca3af;
    --ct-border: #e5e7eb;
    --ct-star: #1D90C9;
    --ct-radius: 16px;
}



/* ══════════════════════════════
       SECTION
    ══════════════════════════════ */
.ct-section {
    padding: 80px 24px 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--ct-bg);
}

/* ── Badge ── */
.ct-badge {
    display: inline-block;
    background: var(--ct-primary-light);
    border: 1px solid var(--ct-primary-mid);
    color: var(--ct-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
}

/* ── Heading ── */
.ct-heading {
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 800;
    color: var(--ct-text-dark);
    text-align: center;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 620px;
}

.ct-subtext {
    font-size: clamp(13px, 1.6vw, 15px);
    color: var(--ct-text-mid);
    text-align: center;
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 56px;
}

/* ══════════════════════════════
       CARDS GRID
    ══════════════════════════════ */
.ct-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 980px;
    margin-bottom: 40px;
}

/* ── Card ── */
.ct-card {
    background: var(--ct-white);
    border: 1.5px solid var(--ct-border);
    border-radius: var(--ct-radius);
    padding: 30px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ct-card:hover {
    box-shadow: 0 10px 36px rgba(29, 144, 201, 0.12);
    transform: translateY(-4px);
    border-color: var(--ct-primary-mid);
}

/* Quote icon */
.ct-quote-icon {
    font-size: 28px;
    color: var(--ct-primary-mid);
    line-height: 1;
    margin-bottom: 14px;
    font-family: Georgia, serif;
    font-weight: 900;
    letter-spacing: -2px;
}

/* Stars */
.ct-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.ct-stars i {
    font-size: 16px;
    color: var(--ct-star);
}

/* Quote text */
.ct-quote-text {
    font-size: 13.5px;
    color: var(--ct-text-mid);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
}

/* Reviewer */
.ct-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--ct-border);
}

.ct-reviewer-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ct-primary-light);
    flex-shrink: 0;
    background: #d4e8f5;
}

.ct-reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ct-text-dark);
    margin-bottom: 2px;
}

.ct-reviewer-role {
    font-size: 12px;
    color: var(--ct-text-light);
    font-weight: 500;
}

/* ══════════════════════════════
       DIVIDER
    ══════════════════════════════ */
.ct-divider {
    width: 100%;
    max-width: 980px;
    height: 1px;
    background: var(--ct-border);
    margin-bottom: 32px;
}

/* ══════════════════════════════
       TRUST BAR
    ══════════════════════════════ */
.ct-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ct-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ct-text-mid);
}

.ct-trust-item i {
    font-size: 18px;
    color: var(--ct-primary);
}

/* ══════════════════════════════
       CTA BUTTON
    ══════════════════════════════ */
.ct-btn {
    background: var(--ct-primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s;
}

.ct-btn:hover {
    background: var(--ct-primary-dark);
    transform: translateY(-1px);
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 840px) {
    .ct-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .ct-trust-bar {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    .ct-section {
        padding: 56px 16px 64px;
    }
}

:root {
    --tb-primary: #1D90C9;
    --tb-primary-dark: #1678a8;
}



/* ══════════════════════════════
       SECTION
    ══════════════════════════════ */
.tb-section {
    background: var(--tb-primary);
    padding: 52px 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ── Label ── */
.tb-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* ── Logos Row ── */
.tb-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* ── Logo Pill ── */
.tb-logo-pill {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-width: 140px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tb-logo-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tb-logo-pill img {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ── Tagline ── */
.tb-tagline {
    font-size: clamp(13px, 1.6vw, 15px);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 460px;
    line-height: 1.7;
    font-weight: 500;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 560px) {
    .tb-section {
        padding: 40px 16px 36px;
    }

    .tb-logos-row {
        gap: 12px;
    }

    .tb-logo-pill {
        min-width: 120px;
        height: 46px;
        padding: 8px 18px;
    }

    .tb-logo-pill img {
        height: 24px;
    }
}

:root {
    --fq-primary: #1D90C9;
    --fq-primary-light: #e8f5fd;
    --fq-primary-mid: #b3ddf2;
    --fq-primary-dark: #1678a8;
    --fq-bg: #f0f4f8;
    --fq-white: #ffffff;
    --fq-dark: #111827;
    --fq-navy: #0f172a;
    --fq-text-mid: #4b5563;
    --fq-text-light: #9ca3af;
    --fq-border: #e5e7eb;
    --fq-star: #f59e0b;
    --fq-radius: 14px;
}


/* ══════════════════════════════
       SECTION
    ══════════════════════════════ */
.fq-section {
    padding: 80px 24px 90px;
    display: flex;
    justify-content: center;
    background: var(--fq-bg);
}

.fq-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 56px;
    width: 100%;
    max-width: 980px;
    align-items: start;
}

/* ══════════════════════════════
       LEFT COLUMN
    ══════════════════════════════ */
.fq-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: sticky;
    top: 40px;
}

/* Badge */
.fq-badge {
    display: inline-block;
    background: var(--fq-primary-light);
    border: 1px solid var(--fq-primary-mid);
    color: var(--fq-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

/* Heading */
.fq-heading {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: var(--fq-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.fq-heading .fq-accent {
    color: var(--fq-primary);
}

/* Subtext */
.fq-subtext {
    font-size: 14px;
    color: var(--fq-text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
}

/* CTA Button */
.fq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fq-primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 10px;
}

.fq-cta-btn:hover {
    background: var(--fq-primary-dark);
    transform: translateY(-1px);
}

.fq-cta-btn i {
    font-size: 16px;
}

/* Response note */
.fq-response-note {
    font-size: 12px;
    color: var(--fq-text-light);
    margin-bottom: 28px;
}

/* Trust Row */
.fq-trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fq-avatars {
    display: flex;
}

.fq-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--fq-bg);
    object-fit: cover;
    margin-right: -10px;
    background: #c8d8e8;
}

.fq-avatar-img:last-child {
    margin-right: 0;
}

.fq-trust-info {}

.fq-stars-row {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

.fq-stars-row i {
    font-size: 13px;
    color: var(--fq-star);
}

.fq-trust-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--fq-text-mid);
}

/* ══════════════════════════════
       RIGHT COLUMN
    ══════════════════════════════ */
.fq-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Accordion Item ── */
.fq-item {
    background: var(--fq-white);
    border: 1.5px solid var(--fq-border);
    border-radius: var(--fq-radius);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.fq-item.fq-open {
    border-color: var(--fq-primary-mid);
    box-shadow: 0 4px 20px rgba(29, 144, 201, 0.08);
}

/* Question Row */
.fq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    user-select: none;
}

.fq-question-text {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--fq-dark);
    flex: 1;
    transition: color 0.2s;
}

.fq-item.fq-open .fq-question-text {
    color: var(--fq-dark);
}

/* Toggle Button */
.fq-toggle {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    background: var(--fq-primary-light);
}

.fq-toggle i {
    font-size: 16px;
    color: var(--fq-primary);
    transition: opacity 0.2s;
}

.fq-item.fq-open .fq-toggle {
    background: var(--fq-primary);
}

.fq-item.fq-open .fq-toggle i {
    color: #fff;
}

/* Answer Panel */
.fq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 22px;
}

.fq-item.fq-open .fq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
}

.fq-answer-text {
    font-size: 13.5px;
    color: var(--fq-text-mid);
    line-height: 1.75;
    border-top: 1px solid var(--fq-border);
    padding-top: 16px;
}

/* ── Still Have Questions Card ── */
.fq-still-card {
    background: var(--fq-navy);
    border-radius: var(--fq-radius);
    padding: 28px 26px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.fq-still-card::after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 90px;
    height: 90px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'/%3E%3Cpath d='M45.42,176.3A96,96,0,1,1,79.7,210.58h0L45.09,220.28a8,8,0,0,1-9.37-9.37Z' fill='none' stroke='rgba(255,255,255,0.07)' stroke-linecap='round' stroke-linejoin='round' stroke-width='16'/%3E%3Cline x1='96' y1='112' x2='160' y2='112' fill='none' stroke='rgba(255,255,255,0.07)' stroke-linecap='round' stroke-linejoin='round' stroke-width='16'/%3E%3Cline x1='96' y1='144' x2='136' y2='144' fill='none' stroke='rgba(255,255,255,0.07)' stroke-linecap='round' stroke-linejoin='round' stroke-width='16'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.4;
    pointer-events: none;
}

.fq-still-content {}

.fq-still-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.fq-still-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 360px;
}

.fq-still-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--fq-primary);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s;
}

.fq-still-link:hover {
    gap: 10px;
}

.fq-still-link i {
    font-size: 15px;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 820px) {
    .fq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fq-left {
        position: static;
    }
}

@media (max-width: 480px) {
    .fq-section {
        padding: 56px 16px 64px;
    }

    .fq-question {
        padding: 18px 18px;
    }

    .fq-item.fq-open .fq-answer {
        padding: 0 18px 18px;
    }
}

:root {
    --cta-primary: #1D90C9;
    --cta-primary-light: #e8f5fd;
    --cta-primary-mid: #b3ddf2;
    --cta-primary-dark: #1678a8;
    --cta-text-dark: #111827;
    --cta-text-mid: #4b5563;
    --cta-text-light: #9ca3af;
    --cta-border: #e5e7eb;
    --cta-success: #10b981;
    --cta-radius: 20px;
}


/* ══════════════════════════════
       SECTION — full-bleed bg image
    ══════════════════════════════ */
.cta-section {
    position: relative;
    width: 100%;
    min-height: 480px;
    background: url('/images/footer-image.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

/* Dark overlay so the card pops */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
}

/* ══════════════════════════════
       WHITE CARD
    ══════════════════════════════ */
.cta-card {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: var(--cta-radius);
    padding: 52px 48px 44px;
    max-width: 620px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

/* ── Badge ── */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cta-primary-light);
    border: 1px solid var(--cta-primary-mid);
    color: var(--cta-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.cta-badge i {
    font-size: 12px;
}

/* ── Heading ── */
.cta-heading {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--cta-text-dark);
    line-height: 1.15;
    margin-bottom: 14px;
}

/* ── Subtext ── */
.cta-subtext {
    font-size: 15px;
    color: var(--cta-text-mid);
    line-height: 1.65;
    margin-bottom: 6px;
}

/* ── Note ── */
.cta-note {
    font-size: 12.5px;
    color: var(--cta-text-light);
    margin-bottom: 32px;
}

/* ── Buttons Row ── */
.cta-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.cta-btn-primary {
    background: var(--cta-primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}

.cta-btn-primary:hover {
    background: var(--cta-primary-dark);
    transform: translateY(-1px);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--cta-text-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 12px;
    border: 1.5px solid var(--cta-border);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, transform 0.15s;
}

.cta-btn-secondary:hover {
    border-color: var(--cta-primary);
    color: var(--cta-primary);
    transform: translateY(-1px);
}

/* ── Divider ── */
.cta-divider {
    width: 100%;
    height: 1px;
    background: var(--cta-border);
    margin-bottom: 24px;
}

/* ── Trust Bar ── */
.cta-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    width: 100%;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cta-text-mid);
}

.cta-trust-item i {
    font-size: 16px;
    color: var(--cta-success);
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 600px) {
    .cta-card {
        padding: 36px 24px 32px;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-trust-bar {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
}

:root {
    --ft-primary: #1D90C9;
    --ft-primary-light: #e8f5fd;
    --ft-primary-mid: #b3ddf2;
    --ft-primary-dark: #1678a8;
    --ft-bg: #d6eaf5;
    --ft-white: #ffffff;
    --ft-text-dark: #111827;
    --ft-text-mid: #4b5563;
    --ft-text-light: #6b7280;
    --ft-radius: 45px;
}



/* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
.ft-footer {
    background: var(--ft-bg);
    border-radius: var(--ft-radius) var(--ft-radius) 0 0;
    padding: 56px 48px 0;
    margin-top: 25px;
}

/* ══════════════════════════════
       MAIN GRID
    ══════════════════════════════ */
.ft-main-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(29, 144, 201, 0.18);
}

/* ── Brand Col ── */
.ft-brand-col {}

.ft-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 4px;
}

.ft-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.ft-tagline-sub {
    font-size: 11px;
    color: var(--ft-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.ft-brand-desc {
    font-size: 13px;
    color: var(--ft-text-mid);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 260px;
}

.ft-socials {
    display: flex;
    gap: 8px;
}

.ft-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(29, 144, 201, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--ft-text-mid);
    font-size: 17px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.ft-social-btn:hover {
    background: var(--ft-primary);
    color: #fff;
    transform: translateY(-2px);
    border-color: var(--ft-primary);
}

/* ── Nav Cols ── */
.ft-nav-col {}

.ft-nav-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--ft-text-dark);
    margin-bottom: 18px;
}

.ft-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ft-nav-list li a {
    font-size: 13.5px;
    color: var(--ft-text-mid);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.ft-nav-list li a:hover {
    color: var(--ft-primary);
}

/* ── Newsletter Col ── */
.ft-nl-col {}

.ft-nl-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--ft-text-dark);
    margin-bottom: 8px;
}

.ft-nl-desc {
    font-size: 13px;
    color: var(--ft-text-mid);
    line-height: 1.65;
    margin-bottom: 18px;
}

.ft-nl-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(29, 144, 201, 0.2);
    background: var(--ft-white);
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    color: var(--ft-text-dark);
    outline: none;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}

.ft-nl-input::placeholder {
    color: #aab4be;
}

.ft-nl-input:focus {
    border-color: var(--ft-primary);
}

.ft-nl-btn {
    width: 100%;
    padding: 13px 20px;
    border-radius: 10px;
    background: var(--ft-primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}

.ft-nl-btn:hover {
    background: var(--ft-primary-dark);
    transform: translateY(-1px);
}

/* ══════════════════════════════
       BOTTOM BAR
    ══════════════════════════════ */
.ft-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 16px;
    flex-wrap: wrap;
}

.ft-bottom-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.ft-copyright {
    font-size: 12.5px;
    color: var(--ft-text-light);
    font-weight: 500;
}

.ft-policy-links {
    display: flex;
    gap: 18px;
}

.ft-policy-links a {
    font-size: 12.5px;
    color: var(--ft-text-light);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.ft-policy-links a:hover {
    color: var(--ft-primary);
}

.ft-join-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ft-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: gap 0.2s;
}

.ft-join-link:hover {
    gap: 10px;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 900px) {
    .ft-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .ft-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 560px) {
    .ft-footer {
        padding: 40px 20px 0;
        border-radius: 20px 20px 0 0;
    }

    .ft-main-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ft-brand-col {
        grid-column: span 1;
    }

    .ft-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}